diff --git a/.gitattributes b/.gitattributes index 49c0bd2f2..4dc3fad6b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,3 @@ data/united-states-commutes/census_tracts_2010.csv filter=lfs diff=lfs merge=lfs -text data/united-states-commutes/commute_data.csv filter=lfs diff=lfs merge=lfs -text +packrat/lib/x86_64-pc-linux-gnu/3.6.3/arrow/libs/arrow.so filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/aws.yaml b/.github/workflows/aws.yaml index 2eb7a489e..d2b38fda6 100644 --- a/.github/workflows/aws.yaml +++ b/.github/workflows/aws.yaml @@ -17,6 +17,8 @@ on: - 'local_install.R' - 'Dockerfile' - 'R/pkgs/**' + - '.Rprofile' + - 'packrat/**' name: Deploy to Amazon ECR diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bb7f2106..d117bbe7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,11 +16,17 @@ jobs: unit-tests: runs-on: ubuntu-18.04 container: - image: docker://hopkinsidd/covidscenariopipeline:latest-dataseed + image: docker://hopkinsidd/covidscenariopipeline:latest-dev options: --user root steps: - name: Checkout uses: actions/checkout@v2 + - name: Set up Rprofile + run: cp Docker.Rprofile $HOME/.Rprofile + shell: bash + - name: Install SEIR package + run: /home/app/python_venv/bin/python setup.py install + shell: bash - name: Run pytest SEIR run: | /home/app/python_venv/bin/pytest SEIR/ @@ -35,15 +41,16 @@ jobs: setwd("R/pkgs/hospitalization") devtools::test(stop_on_failure=TRUE) shell: Rscript {0} - - name: Run report_generation tests + - name: Run report.generation tests run: | - setwd("R/pkgs/report_generation") + setwd("R/pkgs/report.generation") devtools::test(stop_on_failure=TRUE) shell: Rscript {0} - name: Run integration tests env: CENSUS_API_KEY: ${{ secrets.CENSUS_API_KEY }} run: | + git lfs pull Rscript local_install.R cd test /home/app/python_venv/bin/pytest run_tests.py diff --git a/.github/workflows/dockerhub.yaml b/.github/workflows/dockerhub.yaml index 6c7dac9e7..2df58ad8c 100644 --- a/.github/workflows/dockerhub.yaml +++ b/.github/workflows/dockerhub.yaml @@ -15,6 +15,8 @@ on: - 'local_install.R' - 'Dockerfile' - 'R/pkgs/**' + - '.Rprofile' + - 'packrat/**' name: Deploy to DockerHub diff --git a/.gitignore b/.gitignore index 46ce9c10a..c1f898e2e 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,9 @@ vignettes/*.pdf # R Environment Variables .Renviron +packrat/lib*/ + +# Python build dirs +build/ +dist/ +SEIR.egg-info/ diff --git a/Docker.Rprofile b/Docker.Rprofile new file mode 100644 index 000000000..1a521a314 --- /dev/null +++ b/Docker.Rprofile @@ -0,0 +1,6 @@ +#### -- Packrat Autoloader (version 0.5.0) -- #### +working_directory <- getwd() +setwd("/home/app/") +source("/home/app/packrat/init.R") +setwd(working_directory) +#### -- End Packrat Autoloader -- #### diff --git a/Dockerfile b/Dockerfile index 43ad05613..e35bf12f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:18.04 USER root -ENV TERM dumb +ENV TERM linux # set locale info RUN apt-get update && apt-get install -y locales && locale-gen en_US.UTF-8 @@ -31,6 +31,7 @@ RUN apt-get update && \ less \ build-essential \ git-core \ + git-lfs \ curl \ pandoc \ pandoc-citeproc \ @@ -87,13 +88,14 @@ ENV HOME /home/app ##### # TODO: use packrat (or something else) for R package management -COPY packages.R $HOME -RUN Rscript packages.R - -# install custom packages from R/pkgs/** -COPY local_install.R $HOME -COPY R/pkgs $HOME/R/pkgs -RUN Rscript local_install.R +RUN Rscript -e "install.packages('packrat',repos='https://cloud.r-project.org/')" \ + && Rscript -e "install.packages('arrow',repos='https://cloud.r-project.org/')" \ + && Rscript -e 'arrow::install_arrow()' +COPY --chown=app:app packrat $HOME/packrat +COPY --chown=app:app Docker.Rprofile $HOME/.Rprofile +COPY --chown=app:app R/pkgs $HOME/R/pkgs +RUN Rscript -e 'packrat::restore()' +RUN Rscript -e 'install.packages(list.files("R/pkgs",full.names=TRUE),type="source",repos=NULL)' ##### @@ -105,9 +107,10 @@ ENV PYTHON_VERSION 3.7.6 ENV PYTHON_VENV_DIR $HOME/python_venv ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH + RUN git clone git://github.com/yyuu/pyenv.git $HOME/.pyenv \ && rm -rf $HOME/.pyenv/.git \ - && pyenv install -s $PYTHON_VERSION --verbose \ + && env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install -s $PYTHON_VERSION --verbose \ && pyenv rehash \ && echo 'eval "$(pyenv init -)"' >> ~/.bashrc \ && echo "PS1=\"\[\e]0;\u@\h: \w\a\] \h:\w\$ \"" >> ~/.bashrc diff --git a/R/pkgs/covidcommon/R/config.R b/R/pkgs/covidcommon/R/config.R index 2e2468118..713cd7649 100644 --- a/R/pkgs/covidcommon/R/config.R +++ b/R/pkgs/covidcommon/R/config.R @@ -27,8 +27,15 @@ load_config <- function(fname) { fname <- Sys.getenv("CONFIG_PATH") } if (!missing(fname)) { - handlers <- list(map=function(x) { class(x) <- "config"; return(x) }) - return(tryCatch(yaml.load_file(fname, handlers=handlers), error = function(e) { stop(paste("Could not find file: ", fname)) })) + + if(!file.exists(fname)){ + stop(paste("Could not find file:", fname)) + } else{ + handlers <- list(map=function(x) { class(x) <- "config"; return(x) }) + return(tryCatch(yaml.load_file(fname, handlers=handlers), error = function(e) { stop(paste("The config", fname, "has an error. Run `yaml::read_yaml(", fname, ")` to identify the line where the error exists.")) })) + } + + } else { return(NA) } diff --git a/R/pkgs/covidcommon/tests/testthat/test-load_config.R b/R/pkgs/covidcommon/tests/testthat/test-load_config.R index 820ec9373..c68a0c303 100644 --- a/R/pkgs/covidcommon/tests/testthat/test-load_config.R +++ b/R/pkgs/covidcommon/tests/testthat/test-load_config.R @@ -1,6 +1,8 @@ test_that("load_config works", { fname <- tempfile() cat("yaml: TRUE\n",file=fname) + fname_bad <- tempfile() + cat("yaml: TRUE\n yaml2: FALSE\n",file=fname_bad) expect_equal( load_config(fname)$yaml, @@ -9,7 +11,7 @@ test_that("load_config works", { expect_error( load_config(";lkdjaoijdsfjoasidjfaoiwerfj q2fu8ja8erfasdiofj aewr;fj aff409a urfa8rf a';j 38i a0fuadf "), - "file" + "Could not find" ) expect_error( @@ -21,6 +23,11 @@ test_that("load_config works", { load_config(fname)$missing$badkey, "missing" ) + + expect_error( + load_config(fname_bad), + "yaml::read_yaml" + ) }) test_that("as_evaled_expression works", { diff --git a/R/pkgs/hospitalization/DESCRIPTION b/R/pkgs/hospitalization/DESCRIPTION index 6ce9629d1..75fbd295b 100644 --- a/R/pkgs/hospitalization/DESCRIPTION +++ b/R/pkgs/hospitalization/DESCRIPTION @@ -23,3 +23,4 @@ Description: Generate hospitalization scenarios corresponding to the infection s License: What license it uses Encoding: UTF-8 LazyData: true +RoxygenNote: 7.1.0 diff --git a/R/pkgs/hospitalization/NAMESPACE b/R/pkgs/hospitalization/NAMESPACE index 325e04448..3f542112c 100644 --- a/R/pkgs/hospitalization/NAMESPACE +++ b/R/pkgs/hospitalization/NAMESPACE @@ -1,4 +1,5 @@ -# Generated by roxygen2: fake comment so roxygen2 overwrites silently. -exportPattern("^[^\\.]") +# Generated by roxygen2: do not edit by hand -importFrom(foreach,"%dopar%") +export(build_hospdeath_geoid_fixedIFR_par) +export(build_hospdeath_par) +export(create_delay_frame) diff --git a/R/pkgs/hospitalization/R/hospdeath.R b/R/pkgs/hospitalization/R/hospdeath.R index fb91f6b05..97cbf0c41 100644 --- a/R/pkgs/hospitalization/R/hospdeath.R +++ b/R/pkgs/hospitalization/R/hospdeath.R @@ -108,7 +108,7 @@ create_delay_frame <- function(data, name, local_config){ geoid %in% all_geoids ) %>% dplyr::arrange(geoid,time) %>% - ungroup() + dplyr::ungroup() data <- dplyr::arrange(data,geoid,time) @@ -120,6 +120,9 @@ create_delay_frame <- function(data, name, local_config){ return(data) } + + + hosp_create_delay_frame <- function(X, p_X, data_, X_pars, varname) { X_ <- rbinom(length(data_[[X]]),data_[[X]],p_X) rc <- data.table::data.table( @@ -237,9 +240,11 @@ build_hospdeath_par <- function(p_hosp, time_ventdur_pars = log(17), cores=8, root_out_dir='hospitalization', - use_parquet = FALSE) { + use_parquet = FALSE, + start_sim = 1, + num_sims = -1) { - n_sim <- length(list.files(data_dir)) + n_sim <- ifelse(num_sims < 0, length(list.files(data_dir)), num_sims) print(paste("Creating cluster with",cores,"cores")) doParallel::registerDoParallel(cores) @@ -251,7 +256,8 @@ build_hospdeath_par <- function(p_hosp, pkgs <- c("dplyr", "readr", "data.table", "tidyr", "hospitalization") foreach::foreach(s=seq_len(n_sim), .packages=pkgs) %dopar% { - dat_ <- hosp_load_scenario_sim(data_dir,s, + sim_id <- start_sim + s - 1 + dat_ <- hosp_load_scenario_sim(data_dir,sim_id, keep_compartments = "diffI", geoid_len = 5, use_parquet = use_parquet) %>% @@ -293,24 +299,22 @@ build_hospdeath_par <- function(p_hosp, mutate(date_inds = as.integer(time - min(time) + 1), geo_ind = as.numeric(as.factor(geoid))) %>% arrange(geo_ind, date_inds) %>% - group_by(geo_ind) %>% - group_map(function(.x,.y){ + split(.$geo_ind) %>% + purrr::map_dfr(function(.x){ .x$hosp_curr <- cumsum(.x$incidH) - lag(cumsum(.x$incidH), n=R_delay_,default=0) .x$icu_curr <- cumsum(.x$incidICU) - lag(cumsum(.x$incidICU), n=ICU_dur_,default=0) .x$vent_curr <- cumsum(.x$incidVent) - lag(cumsum(.x$incidVent), n=Vent_dur_) - .x$geo_ind <- .y$geo_ind return(.x) }) %>% - do.call(what=rbind) %>% replace_na( list(vent_curr = 0, icu_curr = 0, hosp_curr = 0)) %>% arrange(date_inds, geo_ind) - write_hosp_output(root_out_dir, data_dir, dscenario_name, s, res, use_parquet) + write_hosp_output(root_out_dir, data_dir, dscenario_name, sim_id, res, use_parquet) NULL } doParallel::stopImplicitCluster() @@ -351,9 +355,11 @@ build_hospdeath_geoid_fixedIFR_par <- function( time_ventdur_pars = log(17), cores=8, root_out_dir='hospitalization', - use_parquet = FALSE + use_parquet = FALSE, + start_sim = 1, + num_sims = -1 ) { - n_sim <- length(list.files(data_dir)) + n_sim <- ifelse(num_sims < 0, length(list.files(data_dir)), num_sims) print(paste("Creating cluster with",cores,"cores")) doParallel::registerDoParallel(cores) @@ -370,7 +376,8 @@ build_hospdeath_geoid_fixedIFR_par <- function( pkgs <- c("dplyr", "readr", "data.table", "tidyr", "hospitalization") foreach::foreach(s=seq_len(n_sim), .packages=pkgs) %dopar% { - dat_I <- hosp_load_scenario_sim(data_dir,s, + sim_id <- start_sim + s - 1 + dat_I <- hosp_load_scenario_sim(data_dir, sim_id, keep_compartments = "diffI", geoid_len=5, use_parquet = use_parquet) %>% @@ -384,6 +391,11 @@ build_hospdeath_geoid_fixedIFR_par <- function( left_join(prob_dat, by="geoid") # Add time things + dat_Mild <- hosp_create_delay_frame('incidI', + dat_$p_mild_inf, + dat_, + c(-Inf, 0), # we dont want a delay here, so this is the easiest way + "Mild") dat_H <- hosp_create_delay_frame('incidI', dat_$p_hosp_inf_scaled, dat_, @@ -404,13 +416,14 @@ build_hospdeath_geoid_fixedIFR_par <- function( ICU_dur_ <- round(exp(time_ICUdur_pars[1])) Vent_dur_ <- round(exp(time_ventdur_pars[1])) - stopifnot(is.data.table(dat_I) && is.data.table(dat_H) && is.data.table(data_ICU) && is.data.table(data_Vent) && is.data.table(data_D)) + stopifnot(is.data.table(dat_I) && is.data.table(dat_Mild) && is.data.table(dat_H) && is.data.table(data_ICU) && is.data.table(data_Vent) && is.data.table(data_D)) # Using `merge` instead of full_join for performance reasons res <- Reduce(function(x, y, ...) merge(x, y, all = TRUE, ...), - list(dat_I, dat_H, data_ICU, data_Vent, data_D)) %>% + list(dat_I, dat_Mild, dat_H, data_ICU, data_Vent, data_D)) %>% replace_na( list(incidI = 0, + incidMild = 0, incidH = 0, incidICU = 0, incidVent = 0, @@ -423,25 +436,23 @@ build_hospdeath_geoid_fixedIFR_par <- function( mutate(date_inds = as.integer(time - min(time) + 1), geo_ind = as.numeric(as.factor(geoid))) %>% arrange(geo_ind, date_inds) %>% - group_by(geo_ind) %>% - group_map(function(.x,.y){ + split(.$geo_ind) %>% + purrr::map_dfr(function(.x){ .x$hosp_curr <- cumsum(.x$incidH) - lag(cumsum(.x$incidH), n=R_delay_,default=0) .x$icu_curr <- cumsum(.x$incidICU) - lag(cumsum(.x$incidICU), n=ICU_dur_,default=0) .x$vent_curr <- cumsum(.x$incidVent) - lag(cumsum(.x$incidVent), n=Vent_dur_) - .x$geo_ind <- .y$geo_ind return(.x) }) %>% - do.call(what=rbind) %>% replace_na( list(vent_curr = 0, icu_curr = 0, hosp_curr = 0)) %>% arrange(date_inds, geo_ind) - write_hosp_output(root_out_dir, data_dir, dscenario_name, s, res, use_parquet) + write_hosp_output(root_out_dir, data_dir, dscenario_name, sim_id, res, use_parquet) NULL } doParallel::stopImplicitCluster() diff --git a/R/pkgs/report_generation/DESCRIPTION b/R/pkgs/report.generation/DESCRIPTION similarity index 100% rename from R/pkgs/report_generation/DESCRIPTION rename to R/pkgs/report.generation/DESCRIPTION diff --git a/R/pkgs/report_generation/NAMESPACE b/R/pkgs/report.generation/NAMESPACE similarity index 97% rename from R/pkgs/report_generation/NAMESPACE rename to R/pkgs/report.generation/NAMESPACE index 8be994750..28a146e83 100644 --- a/R/pkgs/report_generation/NAMESPACE +++ b/R/pkgs/report.generation/NAMESPACE @@ -24,6 +24,7 @@ export(make_scn_time_summary_table) export(make_scn_time_summary_table_withVent) export(plot_event_time_by_geoid) export(plot_geounit_attack_rate_map) +export(plot_geounit_map) export(plot_hist_incidHosp_state) export(plot_line_hospPeak_time_county) export(plot_model_vs_obs) @@ -35,4 +36,3 @@ export(plot_ts_incid_inf_state_sample) export(print_pretty_date) export(print_pretty_date_short) export(reference_chunk) -export(setup_testing_environment) diff --git a/R/pkgs/report_generation/R/DataLoadFuncs.R b/R/pkgs/report.generation/R/DataLoadFuncs.R similarity index 97% rename from R/pkgs/report_generation/R/DataLoadFuncs.R rename to R/pkgs/report.generation/R/DataLoadFuncs.R index e9c98576e..a7498a9ab 100644 --- a/R/pkgs/report_generation/R/DataLoadFuncs.R +++ b/R/pkgs/report.generation/R/DataLoadFuncs.R @@ -118,7 +118,7 @@ load_scenario_sims_filtered <- function(scenario_dir, ##' with pre and post filters ##' ##' @param scenario_dir the subdirectory containing this scenario -##' @param name_filter function that +##' @param name_filter string that indicates which pdeath level to import (from the hosp filename) ##' @param post_process function that does processing after ##' @param geoid_len in defined, this we want to make geoids all the same length ##' @param padding_char character to add to the front of geoids if fixed length @@ -172,8 +172,8 @@ load_hosp_sims_filtered <- function(scenario_dir, read_file(files[i]) %>% padfn %>% - post_process(...) %>% - mutate(sim_num = i) + mutate(sim_num = i) %>% + post_process(...) } rc<- dplyr::bind_rows(rc) diff --git a/R/pkgs/report.generation/R/ReportBuildUtils-deprecated.R b/R/pkgs/report.generation/R/ReportBuildUtils-deprecated.R new file mode 100644 index 000000000..22320a446 --- /dev/null +++ b/R/pkgs/report.generation/R/ReportBuildUtils-deprecated.R @@ -0,0 +1,720 @@ +##' +##' Deprecated plot figure showing 15 random sims of incident infections +##' +##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath +##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data +##' @param num_sims the number of simulations to show +##' @param sim_start_date simulation start date as character string "2020-01-01" +##' @param sim_end_date simulation end date as character string +##' @param plot_intervention logical indicating whether to plot grey box over a single intervention period -- will need to adapt if we want to show multiple intervention periods +##' @param interv_start_date intervention start date as character string +##' @param interv_end_date intervention end date as character string +##' +##' @return plot with 15 random simulations of incident infection +##' +##' @export +##' +plot_ts_incid_inf_state_sample <- function (hosp_state_totals, + num_sims = 15, + pdeath_level = "high", ## doesn't really matter since data should be the same for infections + scenario_labels, + scenario_cols, + sim_start_date, + sim_end_date, + plot_intervention = FALSE, ## may not want to plot if it is too complicated + interv_start_date = NA, + interv_end_date = NA) { + + + ##TODO: Make this so each scenario does not use the same sims...though should not matter. + to_plt <- hosp_state_totals %>% + dplyr::filter(pdeath==pdeath_level, + sim_num %in% sample(unique(sim_num), + min(num_sims, length(unique(sim_num))), + replace=FALSE)) %>% + dplyr::mutate(scenario_name = factor(scenario_name, + levels = scenario_labels, + labels = scenario_labels), + sim_num = factor(sim_num)) + + rc <- ggplot(data=to_plt, + aes(x = time, color = scenario_name, + group = interaction(sim_num, scenario_name))) + + geom_line(aes(y = NincidInf), alpha=0.2, size=.75) + + scale_y_continuous("Daily incident infections", labels = scales::comma) + + scale_x_date(date_breaks = "1 month", + date_labels = "%b", + limits = c(lubridate::ymd(sim_start_date), lubridate::ymd(sim_end_date))) + + scale_color_manual("Scenario", + labels = scenario_labels, + values = scenario_cols) + + theme_minimal() + + theme(axis.title.x = element_blank(), + legend.position = "bottom", + legend.title = element_blank()) + + guides(color = guide_legend(nrow = 2, override.aes = list(alpha=1))) + + + if(plot_intervention){ + interv_dates <- data.frame(xmin = lubridate::ymd(interv_start_date), + xmax = lubridate::ymd(interv_end_date), + ymin = 0, + ymax = 1.05*max(to_plt$NincidInf)) + + rc <- rc + + geom_rect(data = interv_dates, inherit.aes = FALSE, + aes(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax), + color = "grey", fill = "grey", alpha = 0.33) + } + + return(rc) + +} + +##' +##' Deprecated plot figure showing 15 random sims of incident infections +##' +##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath +##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data +##' @param num_sims the number of simulations to show +##' @param sim_start_date simulation start date as character string "2020-01-01" +##' @param sim_end_date simulation end date as character string +##' @param plot_intervention logical indicating whether to plot grey box over a single intervention period -- will need to adapt if we want to show multiple intervention periods +##' @param interv_start_date intervention start date as character string +##' @param interv_end_date intervention end date as character string +##' +##' @return plot with 15 random simulations of incident deaths +##' +##' @export +##' +plot_ts_incid_death_state_sample_allPdeath <- function (hosp_state_totals, + num_sims = 15, + scenario_labels, + scenario_cols, + pdeath_level = "high", + pdeath_labels, + sim_start_date, + sim_end_date, + plot_intervention = FALSE, ## may not want to plot if it is too complicated + interv_start_date = NA, + interv_end_date = NA) { + + + ##TODO: Make this so each scenario does not use the same sims...though should not matter. + to_plt <- hosp_state_totals %>% + dplyr::filter(sim_num %in% sample(unique(sim_num), + min(num_sims, length(unique(sim_num))), + replace=FALSE)) %>% + dplyr::mutate(scenario_name = factor(scenario_name, + levels = scenario_labels), + pdeath = factor(pdeath, + levels = pdeath_level, + labels = pdeath_labels), + sim_num = factor(sim_num)) + + rc <- ggplot(data=to_plt, + aes(x=time, color=scenario_name, + group=interaction(sim_num, scenario_name))) + + geom_line(aes(y=NincidDeath), alpha=0.2, size=.75) + + scale_y_continuous("Daily incident deaths", labels = scales::comma) + + scale_x_date(date_breaks = "2 months", + date_labels = "%b", + limits = c(lubridate::ymd(sim_start_date), lubridate::ymd(sim_end_date))) + + scale_color_manual("Scenario", + labels = scenario_labels, + values = scenario_cols) + + theme_minimal() + + theme(axis.title.x = element_blank(), + legend.position = "bottom", + legend.title = element_blank()) + + facet_wrap(~pdeath, nrow = 1) + + guides(color = guide_legend(nrow = 2, override.aes = list(alpha=1))) + + + if(plot_intervention){ + interv_dates <- data.frame(xmin = lubridate::ymd(interv_start_date), + xmax = lubridate::ymd(interv_end_date), + ymin = 0, + ymax = 1.05*max(to_plt$NincidDeath)) + + rc <- rc + + geom_rect(data = interv_dates, inherit.aes = FALSE, + aes(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax), + color = "grey", fill = "grey", alpha = 0.33) + } + + return(rc) + +} + +##' +##' Plot figure showing histogram of peak hospital occupancy by a certain date +##' +##' @param hosp_cty_peaks totals for hospitalization related data for state for all pdeath +##' @param cty_names Dataframe with county geoid and county name +##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data +##' @param scenario_labels scenario names from config +##' @param scenario_cols scenario colors from config +##' @param start_date date to filter to start search for peak timing (character string) +##' @param end_date date to filter to end search for peak timing (character string) +##' +##' @return plot of distribution of peak timing across simulations by county +##' +##' @export +##' +plot_line_hospPeak_time_county <- function (hosp_cty_peaks, + cty_names, + pdeath_level = "high", ## choose one to display peak + scenario_labels, + scenario_cols, + start_date, + end_date) { + pdeath_level <- match.arg(pdeath_level) + start_date <- lubridate::ymd(start_date) + end_date <- lubridate::ymd(end_date) + + ##TODO: Make this so each scenario does not use the same sims...though should not matter. + to_plt <- hosp_cty_peaks %>% + dplyr::filter(pdeath %in% pdeath_level, + scenario_name %in% scenario_labels) %>% + group_by(geoid, scenario_name) %>% + dplyr::summarise(mean_pkTime = as.Date(mean(time)), + median_pkTime = as.Date(median(time)), + low_pkTime = as.Date(quantile(time, probs=.25, type=1)), + hi_pkTime = as.Date(quantile(time, probs=.75, type=1))) %>% + ungroup %>% + dplyr::mutate(scenario_name = factor(scenario_name, + levels = scenario_labels, + labels = scenario_labels)) %>% + dplyr::left_join(cty_names, by = c("geoid")) + + if(length(scenario_labels)==1){ + rc <- ggplot(data=to_plt, + aes(x = reorder(countyname, -as.numeric(mean_pkTime)), + y = mean_pkTime, ymin = low_pkTime, ymax = hi_pkTime)) + + geom_pointrange() + + scale_y_date("Date of peak hospital occupancy", + date_breaks = "1 months", + date_labels = "%b", + # limits = c(as.Date(start_date), as.Date(end_date)) + ) + + xlab("County") + + theme_bw() + + theme(axis.text.x = element_text(angle = 90, hjust = 1), legend.position = "bottom") + + coord_flip() + } else{ + rc <- ggplot(data=to_plt, + aes(x = reorder(countyname, -as.numeric(mean_pkTime)), + y = mean_pkTime, ymin = low_pkTime, ymax = hi_pkTime, + color = scenario_name)) + + geom_pointrange() + + scale_y_date("Date of peak hospital occupancy", + date_breaks = "1 months", + date_labels = "%b", + # limits = c(as.Date(start_date), as.Date(end_date)) + ) + + xlab("County") + + scale_color_manual("Scenario", + labels = scenario_labels, + values = scenario_cols) + + theme_bw() + + theme(axis.text.x = element_text(angle = 90, hjust = 1), legend.position = "bottom") + + coord_flip() + } + + + return(rc) + +} + + +##' +##' Deprecated plot figure showing median and IQR time series for the state for one scenario +##' +##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath +##' @param geodata geodata object from load_config +##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data -- choose 1 +##' @param scenario_label which scenario name from config +##' @param scenario_col which scenario color from config +##' @param sim_start_date simulation start date as character string "2020-01-01" +##' @param sim_end_date simulation end date as character string +##' @param plot_intervention logical indicating whether to plot grey box over a single intervention period -- will need to adapt if we want to show multiple intervention periods +##' @param interv_start_date intervention start date as character string +##' @param interv_end_date intervention end date as character string +##' +##' @return plot state time series median and IQR +##' +##' @export +##' +plot_ts_incid_ar_state <- function (hosp_state_totals, + geodata, + pop_name, + pdeath_level = "high", ## doesn't really matter since data should be the same for infections + scenario_label, + scenario_col, + sim_start_date, + sim_end_date, + plot_intervention = FALSE, ## may not want to plot if it is too complicated + interv_start_date = NA, + interv_end_date = NA) { + + geopop <- geodata %>% + dplyr::filter(include_in_report) %>% + dplyr::select(!! pop_name) %>% + unlist %>% unname + + ##TODO: Make this so each scenario does not use the same sims...though should not matter. + to_plt <- hosp_state_totals %>% + dplyr::filter(pdeath==pdeath_level) %>% + dplyr::mutate(scenario_name = factor(scenario_name, + levels = scenario_label, + labels = scenario_label)) %>% + dplyr::filter(scenario_name == scenario_label) %>% + dplyr::group_by(time) %>% + dplyr::summarise(NincidInf_med = median(NincidInf), NincidInf_mean = mean(NincidInf), NincidInf_lo = quantile(NincidInf, .25), NincidInf_hi = quantile(NincidInf, .75)) %>% + dplyr::mutate(pop = sum(geopop)) %>% + dplyr::mutate(AR_med = NincidInf_med/pop*100000, + AR_mean = NincidInf_mean/pop*100000, + AR_lo = NincidInf_lo/pop*100000, + AR_hi = NincidInf_hi/pop*100000) + + rc <- ggplot(data=to_plt, aes(x = time)) + + geom_pointrange(aes(y = AR_med, ymin = AR_lo, ymax = AR_hi), colour = scenario_col) + + scale_y_continuous("Infections per 100K", labels = scales::comma) + + scale_x_date(date_breaks = "1 month", + date_labels = "%b", + limits = c(lubridate::ymd(sim_start_date), lubridate::ymd(sim_end_date))) + + theme_minimal() + + theme(axis.title.x = element_blank(), + legend.position = "bottom", + legend.title = element_blank()) + + + if(plot_intervention){ + interv_dates <- data.frame(xmin = lubridate::ymd(interv_start_date), + xmax = lubridate::ymd(interv_end_date), + ymin = 0, + ymax = 1.05*max(to_plt$AR_hi)) + + rc <- rc + + geom_rect(data = interv_dates, inherit.aes = FALSE, + aes(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax), + color = "grey", fill = "grey", alpha = 0.33) + } + + return(rc) + +} + + +##' +##' Deprecated: Make statewide table of infections, hosp, ICU, deaths for given scenario. There is a function now make_scn_state_table_withVent that replaces this one. +##' +##' @param current_scenario text string of scenario label for which to build table +##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath +##' @param table_dates formatted table_dates object +##' @param pdeath_labels pdeath formatted labels +##' @param pdeath_filecode pdeath file column codes +##' +##' @return state scenario table +##' +##' @export +##' +make_scn_state_table <- function(current_scenario, + hosp_state_totals, + table_dates, + pdeath_labels, + pdeath_filecode){ + +ci_lo = 0.025 +ci_hi = 0.975 + +if (length(pdeath_filecode)==1) { + stop("Currently does not support single values of pdeath") +} + +tmp <- data.frame(name=c("INFECTIONS", + "HOSPITALIZATIONS\n total", "", "", + " daily peak admissions", "", "", + " daily peak capacity", "", "", + "ICU \n total", "", "", + " daily peak admissions", "", "", + " daily peak capacity", "", "", + "DEATHS\n total", "", "")) +tmp$name <- as.character(tmp$name) +table_dates <- as.Date(table_dates) + +for(i in 1:length(table_dates)){ + xx <- hosp_state_totals %>% + filter(!is.na(time) & scenario_name==current_scenario) %>% + filter(time <= table_dates[i]) %>% + group_by(scenario_name, pdeath, sim_num) %>% + summarize( + TotalIncidInf = sum(NincidInf, na.rm = TRUE), + TotalIncidHosp = sum(NincidHosp, na.rm = TRUE), + TotalIncidICU = sum(NincidICU, na.rm = TRUE), + TotalIncidDeath = sum(NincidDeath, na.rm = TRUE), + maxHospAdm = max(NincidHosp, na.rm=TRUE), + maxICUAdm = max(NincidICU, na.rm=TRUE), + maxHospCap = max(NhospCurr, na.rm = TRUE), + maxICUCap = max(NICUCurr, na.rm=TRUE) + ) %>% + ungroup() %>% + group_by(scenario_name, pdeath) %>% + summarize( + nIncidInf_final = mean(TotalIncidInf), + nIncidInf_lo = quantile(TotalIncidInf, ci_lo), + nIncidInf_hi = quantile(TotalIncidInf, ci_hi), + nIncidHosp_final = mean(TotalIncidHosp), + nIncidHosp_lo = quantile(TotalIncidHosp, ci_lo), + nIncidHosp_hi = quantile(TotalIncidHosp, ci_hi), + pIncidHosp_final = mean(maxHospAdm), + pIncidHosp_lo = quantile(maxHospAdm, ci_lo), + pIncidHosp_hi = quantile(maxHospAdm, ci_hi), + nIncidICU_final = mean(TotalIncidICU), + nIncidICU_lo = quantile(TotalIncidICU, ci_lo), + nIncidICU_hi = quantile(TotalIncidICU, ci_hi), + pIncidICU_final = mean(maxICUAdm), + pIncidICU_lo = quantile(maxICUAdm, ci_lo), + pIncidICU_hi = quantile(maxICUAdm, ci_hi), + nIncidDeath_final = mean(TotalIncidDeath), + nIncidDeath_lo = quantile(TotalIncidDeath, ci_lo), + nIncidDeath_hi = quantile(TotalIncidDeath, ci_hi), + nCurrHosp_final = mean(maxHospCap), + nCurrHosp_lo = quantile(maxHospCap, ci_lo), + nCurrHosp_hi = quantile(maxHospCap, ci_hi), + nCurrICU_final = mean(maxICUCap), + nCurrICU_lo = quantile(maxICUCap, ci_lo), + nCurrICU_hi = quantile(maxICUCap, ci_hi)) %>% + ungroup() %>% + mutate(pdeath = pdeath_labels[match(pdeath, pdeath_filecode)]) + + + tmp <- bind_cols(tmp, + xx %>% filter(pdeath==pdeath_labels[1]) %>% + mutate(ci = make_CI(nIncidInf_lo, nIncidInf_hi), + est = conv_round(nIncidInf_final), + lvl = paste0("total inc infections"), + pdeath = "") %>% ## infections have no pdeath + select(lvl, est, ci, pdeath) %>% + bind_rows(xx %>% + mutate(ci = make_CI(nIncidHosp_lo, nIncidHosp_hi), + est = conv_round(nIncidHosp_final), + lvl = paste0("total inc hosp", pdeath)) %>% + select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% + bind_rows(xx %>% + mutate(ci = make_CI(pIncidHosp_lo, pIncidHosp_hi), + est = conv_round(pIncidHosp_final), + lvl = paste0("peak inc hosp", pdeath)) %>% + select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% + bind_rows(xx %>% + mutate(ci = make_CI(nCurrHosp_lo, nCurrHosp_hi), + est = conv_round(nCurrHosp_final), + lvl = paste0("peak hosp cap", pdeath)) %>% + select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% + bind_rows(xx %>% + mutate(ci = make_CI(nIncidICU_lo, nIncidICU_hi), + est = conv_round(nIncidICU_final), + lvl = paste0("total inc ICU", pdeath)) %>% + select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% + bind_rows(xx %>% + mutate(ci = make_CI(pIncidICU_lo, pIncidICU_hi), + est = conv_round(pIncidICU_final), + lvl = paste0("peak inc ICU", pdeath)) %>% + select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% + bind_rows(xx %>% + mutate(ci = make_CI(nCurrICU_lo, nCurrICU_hi), + est = conv_round(nCurrICU_final), + lvl = paste0("peak ICU cap", pdeath)) %>% + select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% + bind_rows(xx %>% + mutate(ci = make_CI(nIncidDeath_lo, nIncidDeath_hi), + est = conv_round(nIncidDeath_final), + lvl = paste0("total inc death", pdeath)) %>% + select(lvl, est, ci, pdeath) %>% arrange(pdeath)) + ) +} + + +tlabels <- c(" ", "IFR") +nlabels <- c("name", "pdeath", "est", "ci") + +for(i in 1:length(table_dates)){ + tlabels <- c(tlabels, + paste0(print_pretty_date_short(table_dates[i]), "\nmean "), + "\n 95% PI") + if(i>1){nlabels <- c(nlabels, paste0("est", i-1), paste0("ci", i-1))} +} +names(tlabels) <- nlabels + +flextable::flextable(tmp[,nlabels]) %>% + flextable::set_header_labels(values=tlabels) %>% + flextable::valign(valign="bottom") %>% + flextable::colformat_num(digits=0) %>% + flextable::autofit() + +} + +##' +##' Deprecated function makes a summary table for an entire state. There is a function make_scn_time_summary_table_withVent that replaces this one. +##' +##' @param hosp_state_totals contains the relevant hospital data +##' @param period_breaks the dates to break up the display periods. +##' @param pi_low low side of the prediction interval +##' @param pi_high high side of the prediction interval +##' @param round_digit what level to round to +##' +##' @export +##' +make_scn_time_summary_table <- function(hosp_state_totals, + period_breaks, + pi_low = 0.025, + pi_high = 0.975, + round_digit=-2) { + ##Make the period ranges and labels + period_breaks <- sort(as.Date(period_breaks)) #out of order leads to bad things.... + period_breaks <- c(min(hosp_state_totals$time)-1, as.Date(period_breaks), max(hosp_state_totals$time)+1) + + len <- length(period_breaks) + lbls <- sprintf("%s-%s", format(period_breaks[1:(len-1)], "%b %d"), + format(period_breaks[2:len], "%b %d")) + + ## Build the table with summaries of all of the periods in it. + tbl_df <- hosp_state_totals %>% + mutate(period = cut(time, period_breaks, labels=lbls)) %>% + group_by(period, scenario_name, sim_num) %>% #summarize totals in periods by scenario + summarize(PeriodInf = sum(NincidInf), + PeriodDeath = sum(NincidDeath), + PeriodHosp = sum(NincidHosp), + PeriodPkHosp = max(NhospCurr), + PeriodICU = sum(NincidICU), + PeriodPkICU = max(NICUCurr)) %>% + ungroup %>% + group_by(period, scenario_name) %>% #now get means and prediction intervals + summarize(PeriodInfPILow = round(quantile(PeriodInf, probs = c(pi_low)),digits = round_digit), + PeriodDeathPILow = round(quantile(PeriodDeath, probs = c(pi_low)),digits = round_digit), + PeriodHospPILow = round(quantile(PeriodHosp, probs = c(pi_low)),digits = round_digit), + PeriodPkHospPILow = round(quantile(PeriodPkHosp, probs = c(pi_low)),digits = round_digit), + PeriodICUPILow = round(quantile(PeriodICU, probs = c(pi_low)),digits = round_digit), + PeriodPkICUPILow = round(quantile(PeriodPkICU, probs = c(pi_low)),digits = round_digit), + PeriodInfPIHigh = round(quantile(PeriodInf, probs = c(pi_high)),digits = round_digit), + PeriodDeathPIHigh = round(quantile(PeriodDeath, probs = c(pi_high)),digits = round_digit), + PeriodHospPIHigh = round(quantile(PeriodHosp, probs = c(pi_high)),digits = round_digit), + PeriodPkHospPIHigh = round(quantile(PeriodPkHosp, probs = c(pi_high)),digits = round_digit), + PeriodICUPIHigh = round(quantile(PeriodICU, probs = c(pi_high)),digits = round_digit), + PeriodPkICUPIHigh = round(quantile(PeriodPkICU, probs = c(pi_high)),digits = round_digit), + PeriodInf = round(mean(PeriodInf),digits = round_digit), + PeriodDeath = round(mean(PeriodDeath),digits = round_digit), + PeriodHosp = round(mean(PeriodHosp),digits = round_digit), + PeriodPkHosp = round(mean(PeriodPkHosp),digits = round_digit), + PeriodICU = round(mean(PeriodICU),digits = round_digit), + PeriodPkICU = round(mean(PeriodPkICU), digits = round_digit)) %>% + ungroup() %>% ##make hi/low into CIs + mutate(PeriodInfPI = paste(format(PeriodInfPILow,big.mark=","), format(PeriodInfPIHigh,big.mark=","), sep="-"), + PeriodDeathPI = paste(format(PeriodDeathPILow,big.mark=","), format(PeriodDeathPIHigh,big.mark=","), sep="-"), + PeriodHospPI = paste(format(PeriodHospPILow,big.mark=","), format(PeriodHospPIHigh,big.mark=","), sep="-"), + PeriodPkHospPI = paste(format(PeriodPkHospPILow,big.mark=","), format(PeriodPkHospPIHigh,big.mark=","), sep="-"), + PeriodICUPI = paste(format(PeriodICUPILow,big.mark=","), format(PeriodICUPIHigh,big.mark=","), sep="-"), + PeriodPkICUPI = paste(format(PeriodPkICUPILow,big.mark=","), format(PeriodPkICUPIHigh,big.mark=","), sep="-"),) %>% + select(-PeriodInfPILow, -PeriodInfPIHigh, + -PeriodDeathPILow, -PeriodDeathPIHigh, + -PeriodHospPILow, -PeriodHospPIHigh, + -PeriodPkHospPILow, -PeriodPkHospPIHigh, + -PeriodICUPILow, -PeriodICUPIHigh, + -PeriodPkICUPILow, -PeriodPkICUPIHigh) + + + tmp<-sprintf("%s_%s", rep(lbls, each=2),c("mean","95% PI")) + + + ##inellegant but should work + tbl_df <- + bind_rows(tbl_df%>%select(period,scenario_name, PeriodInf, PeriodInfPI)%>%mutate(outcome="Infections in Period")%>% + rename(mean=PeriodInf,`95% PI`=PeriodInfPI), + tbl_df%>%select(period,scenario_name, PeriodDeath, PeriodDeathPI)%>%mutate(outcome="Deaths in Period")%>% + rename(mean=PeriodDeath,`95% PI`=PeriodDeathPI), + tbl_df%>%select(period,scenario_name, PeriodHosp, PeriodHospPI)%>%mutate(outcome="Hospital Admissions in Period")%>% + rename(mean=PeriodHosp,`95% PI`=PeriodHospPI), + tbl_df%>%select(period,scenario_name, PeriodPkHosp, PeriodPkHospPI)%>%mutate(outcome="Peak Hospital Occupancy in Period")%>% + rename(mean=PeriodPkHosp,`95% PI`=PeriodPkHospPI), + tbl_df%>%select(period,scenario_name, PeriodICU, PeriodICUPI)%>%mutate(outcome="ICU Admissions in Period")%>% + rename(mean=PeriodICU,`95% PI`=PeriodICUPI), + tbl_df%>%select(period,scenario_name, PeriodPkICU, PeriodPkICUPI)%>%mutate(outcome="Peak ICU Occupancy in Period")%>% + rename(mean=PeriodPkICU,`95% PI`=PeriodPkICUPI)) %>% + mutate(period=as.character(period)) %>% + pivot_wider(names_from=period, values_from = c(mean,`95% PI`), names_sep=".")%>% + setNames(nm = sub("(.*)\\.(.*)", "\\2_\\1", names(.)))%>% + select(outcome,scenario_name,all_of(tmp)) + + #tells how to group columns + tbl_df <- flextable::as_grouped_data(tbl_df,groups="outcome") + tmp <- is.na(tbl_df$scenario_name) + tbl_df$scenario_name[tmp] <-tbl_df$outcome[tmp] + tbl_df <- tbl_df%>%select(-outcome) + typology<-data_frame(col_keys=colnames(tbl_df), + colA=c("",rep(lbls,each=2)), + colB=c("",rep(c("mean","95% PI"),length(lbls)))) + + + flx <- flextable::flextable(tbl_df) %>% + flextable::colformat_num(digits=0)%>% + #flextable::merge_v(j="outcome")%>% + flextable::autofit(add_w=.05)%>% + flextable::valign(valign="top") %>% + flextable::set_header_df(mapping = typology, key = "col_keys" )%>% + #flextable::merge_h(part="header")%>% + flextable::bold(j=sprintf("%s_mean",lbls))%>% + flextable::bold(part="header",bold=TRUE)%>% + flextable::bold(j = 1, i =which(tmp), bold = TRUE, part = "body" )%>% + flextable::align(i=1,align = "center", part="header") %>% + flextable::align(i=2,j=which(typology$colB=="mean"), align = "right", part="header") %>% + flextable::hline(i=2, part="header", border = officer::fp_border())%>% + flextable::hline_top(part="header", border = officer::fp_border(width=2))%>% + flextable::border(i=which(tmp), border.top = officer::fp_border(col="grey")) + + return(flx) + +} + + +##' +##' Deprecated: Returns a ggplot object giving a boxplot of the range of N +##' within each time period. +##' +##' @param hosp_state_totals, +##' +##' @param df a data frame with columns time, sim_num, scenario_name and N +##' @param period_breaks the dates to break up the display periods. +##' @param stat either "identity" or "peak" [TODO:extend options] +##' +##' @export +boxplot_by_timeperiod <- function(df, + period_breaks, + stat="identity", + scenario_labels, # TODO provide default arguments + scenario_colors # TODO provide default arguments + ) { + + period_breaks <- c(min(df$time)-1, as.Date(period_breaks), max(df$time)+1) + len <- length(period_breaks) + lbls <- sprintf("%s-%s", format(period_breaks[1:(len-1)], "%b %d"), + format(period_breaks[2:len], "%b %d")) + + if(stat=="identity") { + sum_func <- function(x){x} + } else if(stat=="peak") { + sum_func <- function (x) { + x %>% + group_by(sim_num, scenario_name, period) %>% + summarize(N=max(N)) %>% + ungroup() + } + } else { + stop("Unknown statistic") + } + + + rc <- df %>% + mutate(period = cut(time, period_breaks, labels=lbls)) %>% + sum_func %>% + ggplot(aes(x=reorder(period, desc(period)), y=N, fill=scenario_name)) + + geom_boxplot(outlier.alpha = .1, outlier.size=.2) + + facet_wrap(~scenario_name,ncol=1)+ + scale_fill_manual("Scenario", + labels = scenario_labels, + values = scenario_colors) + + coord_flip() + + return(rc) + +} + + +##' +##' Depracated: Plot heatmap of excess variables, as absolute number +##' (default), per-capita number needed, or % over threshold. There is a function +##' plot_needs_relative_to_threshold_heatmap that replaces this one. +##' +##' @param hosp_dat timeseries with incident and cumulative hospitalizations, ICU admissions, etc. +##' @param current_scenario text string of scenario label to plot +##' @param type either "absolute", for total number excess; "percent", for percent excess; or "per-capita" for number excess per 10,000 population +##' @param threshold named vector of threshold value for given variable +##' @param shp shapefile with GEOID names +##' @param varname character string of variable name to plot from hosp data +##' @param varlabel character string of variable name for plot legend +##' @param geodata geodata object from load_config; only needed if type="per-capita" +##' @param popnodes name of pop variable in geodata; only needed if type="per-capita" +##' @param trunc_value value at which to truncate values for easy plotting; if null, defaults to max +##' +##' @export +##' +make_excess_heatmap <- function(hosp_dat, + current_scenario, + type, + threshold, + shp, + varname, + varlabel, + geodata = NULL, + popnodes = config$spatial_setup$popnodes, + trunc_value = NULL){ + + shp$threshold <- threshold[match(shp$geoid, names(threshold))] + + hosp_dat <- hosp_dat %>% + dplyr::filter(scenario_name == current_scenario) %>% + rename(var = !!varname) + + if(type=="per-capita"){ + plt_dat <- as.data.frame(shp) %>% + select(geoid, name, threshold) %>% + left_join(geodata %>% dplyr::rename(pop=!!popnodes) %>% dplyr::select(geoid, pop), by="geoid") %>% + arrange(name) + + hosp_dat <- hosp_dat %>% + left_join(plt_dat, by="geoid") %>% + replace_na(list(threshold=0)) %>% + mutate(exc_raw = var - threshold, + exc_abs = ifelse(exc_raw>0, exc_raw, NA), + exc_toplot = exc_abs / pop * 10000) + } + if(type=="absolute"){ + plt_dat <- as.data.frame(shp) %>% + select(geoid, name, threshold) %>% + arrange(name) + + hosp_dat <- hosp_dat %>% + left_join(plt_dat, by="geoid") %>% + replace_na(list(threshold=0)) %>% + mutate(exc_raw = var - threshold, + exc_toplot = ifelse(exc_raw>0, exc_raw, NA)) + } + if(type=="percent"){ + plt_dat <- as.data.frame(shp) %>% + select(geoid, name, threshold) %>% + arrange(name) + + hosp_dat <- hosp_dat %>% + left_join(plt_dat, by="geoid") %>% + replace_na(list(threshold=0)) %>% + mutate(exc_raw = var - threshold, + exc_abs = ifelse(exc_raw>0, exc_raw, NA), + exc_toplot = exc_abs / threshold * 100) + } + + if(!is.null(trunc_value)){ + hosp_dat$exc_toplot <- ifelse(hosp_dat$exc_toplot>trunc_value, trunc_value, hosp_dat$exc_toplot) + } + + rc <- ggplot(hosp_dat, aes(x=time, y=name, fill=exc_toplot)) + + geom_tile() + + scale_fill_viridis_c(option = "magma", direction = -1, na.value = "white", name = varlabel) + + theme_minimal() + + xlab("") + + ylab("") + + scale_x_date(date_breaks = "2 weeks", + date_labels = "%b %d") + + theme(axis.text.x = element_text(angle=45, vjust = 0.5)) + + return(rc) +} \ No newline at end of file diff --git a/R/pkgs/report_generation/R/ReportBuildUtils.R b/R/pkgs/report.generation/R/ReportBuildUtils.R similarity index 53% rename from R/pkgs/report_generation/R/ReportBuildUtils.R rename to R/pkgs/report.generation/R/ReportBuildUtils.R index 15b8db285..704679dbb 100644 --- a/R/pkgs/report_generation/R/ReportBuildUtils.R +++ b/R/pkgs/report.generation/R/ReportBuildUtils.R @@ -168,159 +168,6 @@ plot_ts_hosp_state_sample <- function (hosp_state_totals, -##' -##' Plot figure showing 15 random sims of incident infections -##' -##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath -##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data -##' @param num_sims the number of simulations to show -##' @param sim_start_date simulation start date as character string "2020-01-01" -##' @param sim_end_date simulation end date as character string -##' @param plot_intervention logical indicating whether to plot grey box over a single intervention period -- will need to adapt if we want to show multiple intervention periods -##' @param interv_start_date intervention start date as character string -##' @param interv_end_date intervention end date as character string -##' -##' @return plot with 15 random simulations of incident infection -##' -##' @export -##' -plot_ts_incid_inf_state_sample <- function (hosp_state_totals, - num_sims = 15, - pdeath_level = "high", ## doesn't really matter since data should be the same for infections - scenario_labels, - scenario_cols, - sim_start_date, - sim_end_date, - plot_intervention = FALSE, ## may not want to plot if it is too complicated - interv_start_date = NA, - interv_end_date = NA) { - - - ##TODO: Make this so each scenario does not use the same sims...though should not matter. - to_plt <- hosp_state_totals %>% - dplyr::filter(pdeath==pdeath_level, - sim_num %in% sample(unique(sim_num), - min(num_sims, length(unique(sim_num))), - replace=FALSE)) %>% - dplyr::mutate(scenario_name = factor(scenario_name, - levels = scenario_labels, - labels = scenario_labels), - sim_num = factor(sim_num)) - - rc <- ggplot(data=to_plt, - aes(x = time, color = scenario_name, - group = interaction(sim_num, scenario_name))) + - geom_line(aes(y = NincidInf), alpha=0.2, size=.75) + - scale_y_continuous("Daily incident infections", labels = scales::comma) + - scale_x_date(date_breaks = "1 month", - date_labels = "%b", - limits = c(lubridate::ymd(sim_start_date), lubridate::ymd(sim_end_date))) + - scale_color_manual("Scenario", - labels = scenario_labels, - values = scenario_cols) + - theme_minimal() + - theme(axis.title.x = element_blank(), - legend.position = "bottom", - legend.title = element_blank()) + - guides(color = guide_legend(nrow = 2, override.aes = list(alpha=1))) - - - if(plot_intervention){ - interv_dates <- data.frame(xmin = lubridate::ymd(interv_start_date), - xmax = lubridate::ymd(interv_end_date), - ymin = 0, - ymax = 1.05*max(to_plt$NincidInf)) - - rc <- rc + - geom_rect(data = interv_dates, inherit.aes = FALSE, - aes(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax), - color = "grey", fill = "grey", alpha = 0.33) - } - - return(rc) - -} - - - -##' -##' Plot figure showing 15 random sims of incident infections -##' -##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath -##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data -##' @param num_sims the number of simulations to show -##' @param sim_start_date simulation start date as character string "2020-01-01" -##' @param sim_end_date simulation end date as character string -##' @param plot_intervention logical indicating whether to plot grey box over a single intervention period -- will need to adapt if we want to show multiple intervention periods -##' @param interv_start_date intervention start date as character string -##' @param interv_end_date intervention end date as character string -##' -##' @return plot with 15 random simulations of incident deaths -##' -##' @export -##' -plot_ts_incid_death_state_sample_allPdeath <- function (hosp_state_totals, - num_sims = 15, - scenario_labels, - scenario_cols, - pdeath_level = "high", - pdeath_labels, - sim_start_date, - sim_end_date, - plot_intervention = FALSE, ## may not want to plot if it is too complicated - interv_start_date = NA, - interv_end_date = NA) { - - - ##TODO: Make this so each scenario does not use the same sims...though should not matter. - to_plt <- hosp_state_totals %>% - dplyr::filter(sim_num %in% sample(unique(sim_num), - min(num_sims, length(unique(sim_num))), - replace=FALSE)) %>% - dplyr::mutate(scenario_name = factor(scenario_name, - levels = scenario_labels), - pdeath = factor(pdeath, - levels = pdeath_level, - labels = pdeath_labels), - sim_num = factor(sim_num)) - - rc <- ggplot(data=to_plt, - aes(x=time, color=scenario_name, - group=interaction(sim_num, scenario_name))) + - geom_line(aes(y=NincidDeath), alpha=0.2, size=.75) + - scale_y_continuous("Daily incident deaths", labels = scales::comma) + - scale_x_date(date_breaks = "2 months", - date_labels = "%b", - limits = c(lubridate::ymd(sim_start_date), lubridate::ymd(sim_end_date))) + - scale_color_manual("Scenario", - labels = scenario_labels, - values = scenario_cols) + - theme_minimal() + - theme(axis.title.x = element_blank(), - legend.position = "bottom", - legend.title = element_blank()) + - facet_wrap(~pdeath, nrow = 1) + - guides(color = guide_legend(nrow = 2, override.aes = list(alpha=1))) - - - if(plot_intervention){ - interv_dates <- data.frame(xmin = lubridate::ymd(interv_start_date), - xmax = lubridate::ymd(interv_end_date), - ymin = 0, - ymax = 1.05*max(to_plt$NincidDeath)) - - rc <- rc + - geom_rect(data = interv_dates, inherit.aes = FALSE, - aes(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax), - color = "grey", fill = "grey", alpha = 0.33) - } - - return(rc) - -} - - - ##' ##' Plot figure showing histogram of cumulative hospitalizations (or other incident outcome) by a certain date ##' @@ -379,88 +226,6 @@ plot_hist_incidHosp_state <- function (hosp_state_totals, } - -##' -##' Plot figure showing histogram of peak hospital occupancy by a certain date -##' -##' @param hosp_cty_peaks totals for hospitalization related data for state for all pdeath -##' @param cty_names Dataframe with county geoid and county name -##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data -##' @param scenario_labels scenario names from config -##' @param scenario_cols scenario colors from config -##' @param start_date date to filter to start search for peak timing (character string) -##' @param end_date date to filter to end search for peak timing (character string) -##' -##' @return plot of distribution of peak timing across simulations by county -##' -##' @export -##' -plot_line_hospPeak_time_county <- function (hosp_cty_peaks, - cty_names, - pdeath_level = "high", ## choose one to display peak - scenario_labels, - scenario_cols, - start_date, - end_date) { - pdeath_level <- match.arg(pdeath_level) - start_date <- lubridate::ymd(start_date) - end_date <- lubridate::ymd(end_date) - - ##TODO: Make this so each scenario does not use the same sims...though should not matter. - to_plt <- hosp_cty_peaks %>% - dplyr::filter(pdeath %in% pdeath_level, - scenario_name %in% scenario_labels) %>% - group_by(geoid, scenario_name) %>% - dplyr::summarise(mean_pkTime = as.Date(mean(time)), - median_pkTime = as.Date(median(time)), - low_pkTime = as.Date(quantile(time, probs=.25, type=1)), - hi_pkTime = as.Date(quantile(time, probs=.75, type=1))) %>% - ungroup %>% - dplyr::mutate(scenario_name = factor(scenario_name, - levels = scenario_labels, - labels = scenario_labels)) %>% - dplyr::left_join(cty_names, by = c("geoid")) - - if(length(scenario_labels)==1){ - rc <- ggplot(data=to_plt, - aes(x = reorder(countyname, -as.numeric(mean_pkTime)), - y = mean_pkTime, ymin = low_pkTime, ymax = hi_pkTime)) + - geom_pointrange() + - scale_y_date("Date of peak hospital occupancy", - date_breaks = "1 months", - date_labels = "%b", - # limits = c(as.Date(start_date), as.Date(end_date)) - ) + - xlab("County") + - theme_bw() + - theme(axis.text.x = element_text(angle = 90, hjust = 1), legend.position = "bottom") + - coord_flip() - } else{ - rc <- ggplot(data=to_plt, - aes(x = reorder(countyname, -as.numeric(mean_pkTime)), - y = mean_pkTime, ymin = low_pkTime, ymax = hi_pkTime, - color = scenario_name)) + - geom_pointrange() + - scale_y_date("Date of peak hospital occupancy", - date_breaks = "1 months", - date_labels = "%b", - # limits = c(as.Date(start_date), as.Date(end_date)) - ) + - xlab("County") + - scale_color_manual("Scenario", - labels = scenario_labels, - values = scenario_cols) + - theme_bw() + - theme(axis.text.x = element_text(angle = 90, hjust = 1), legend.position = "bottom") + - coord_flip() - } - - - return(rc) - -} - - ##' ##' Plot map showing infections per 10K on a specific date for one scenario ##' @@ -516,286 +281,61 @@ plot_geounit_attack_rate_map <- function (cum_inf_geounit_dates, } - ##' -##' Plot figure showing median and IQR time series for the state for one scenario +##' Plot map showing chosen variable per 10K on a specific date for one scenario (blue/green color scale) ##' -##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath -##' @param geodata geodata object from load_config -##' @param pdeath_level level of IFR (string: high/med/low) for filtering hospitalization data -- choose 1 -##' @param scenario_label which scenario name from config -##' @param scenario_col which scenario color from config -##' @param sim_start_date simulation start date as character string "2020-01-01" -##' @param sim_end_date simulation end date as character string -##' @param plot_intervention logical indicating whether to plot grey box over a single intervention period -- will need to adapt if we want to show multiple intervention periods -##' @param interv_start_date intervention start date as character string -##' @param interv_end_date intervention end date as character string +##' @param cum_inf_geounit_dates dataframe produced by load_cum_inf_geounit_dates, with cumulative totals/averages on a given date +##' @param plot_var name of the variable of which to plot intensity +##' @param geodata as loaded by skeleton +##' @param shp shapefile with geounits +##' @param scenariolabel scenario label character string +##' @param popnodes name of pop variable in geodata +##' @param display_date string of display date for map +##' @param viridis_palette character string of viridis palette ##' -##' @return plot state time series median and IQR +##' @return map by geounit, filled by variable per 10K at a specific date for a single scenario ##' ##' @export ##' -plot_ts_incid_ar_state <- function (hosp_state_totals, - geodata, - pop_name, - pdeath_level = "high", ## doesn't really matter since data should be the same for infections - scenario_label, - scenario_col, - sim_start_date, - sim_end_date, - plot_intervention = FALSE, ## may not want to plot if it is too complicated - interv_start_date = NA, - interv_end_date = NA) { - - geopop <- geodata %>% - dplyr::filter(include_in_report) %>% - dplyr::select(!! pop_name) %>% - unlist %>% unname - - ##TODO: Make this so each scenario does not use the same sims...though should not matter. - to_plt <- hosp_state_totals %>% - dplyr::filter(pdeath==pdeath_level) %>% - dplyr::mutate(scenario_name = factor(scenario_name, - levels = scenario_label, - labels = scenario_label)) %>% - dplyr::filter(scenario_name == scenario_label) %>% - dplyr::group_by(time) %>% - dplyr::summarise(NincidInf_med = median(NincidInf), NincidInf_mean = mean(NincidInf), NincidInf_lo = quantile(NincidInf, .25), NincidInf_hi = quantile(NincidInf, .75)) %>% - dplyr::mutate(pop = sum(geopop)) %>% - dplyr::mutate(AR_med = NincidInf_med/pop*100000, - AR_mean = NincidInf_mean/pop*100000, - AR_lo = NincidInf_lo/pop*100000, - AR_hi = NincidInf_hi/pop*100000) - - rc <- ggplot(data=to_plt, aes(x = time)) + - geom_pointrange(aes(y = AR_med, ymin = AR_lo, ymax = AR_hi), colour = scenario_col) + - scale_y_continuous("Infections per 100K", labels = scales::comma) + - scale_x_date(date_breaks = "1 month", - date_labels = "%b", - limits = c(lubridate::ymd(sim_start_date), lubridate::ymd(sim_end_date))) + - theme_minimal() + - theme(axis.title.x = element_blank(), - legend.position = "bottom", - legend.title = element_blank()) - - - if(plot_intervention){ - interv_dates <- data.frame(xmin = lubridate::ymd(interv_start_date), - xmax = lubridate::ymd(interv_end_date), - ymin = 0, - ymax = 1.05*max(to_plt$AR_hi)) - - rc <- rc + - geom_rect(data = interv_dates, inherit.aes = FALSE, - aes(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax), - color = "grey", fill = "grey", alpha = 0.33) +plot_geounit_map <- function(cum_inf_geounit_dates, + plot_var, + geodata, + shp, + legend_name = "Value per 10K", + scenariolabel = config$report$formatting$scenario_labels[1], + popnodes = config$spatial_setup$popnodes, + display_date, + clims = NULL){ + + display_date <- as.Date(display_date) + + shp$geoid <- as.character(shp$geoid) + to_plt <- cum_inf_geounit_dates %>% + dplyr::filter(scenario_name == scenariolabel, + time == display_date) %>% + left_join(geodata) %>% + dplyr::rename(pop = !!popnodes, plot_var = !!plot_var) %>% group_by(geoid) %>% + dplyr::summarise(geoid_rate = mean(plot_var/pop) * 10000) %>% + ungroup + + plot_shp <- left_join(shp, to_plt, by = "geoid") + + if(is.null(clims)){ + clims = range(plot_shp$geoid_rate, na.rm=TRUE) } - + + rc <- ggplot(plot_shp) + + geom_sf(aes(fill = geoid_rate)) + + theme_minimal() + + scale_fill_gradientn(name=legend_name, colors = RColorBrewer::brewer.pal(9, "YlGnBu"), limits=clims) + + ggtitle(paste0(scenariolabel, ": ", print_pretty_date_short(display_date))) + + theme(axis.title.x = element_blank(), axis.text.x = element_blank(), + axis.ticks.x = element_blank(), axis.title.y = element_blank(), + axis.text.y = element_blank(), panel.grid.major = element_blank(), + panel.grid.minor = element_blank(), panel.border = element_blank(), + axis.ticks.y = element_blank()) return(rc) - -} - - -# #### This function isn't working quite right -# ##' -# ##' Plot modeling assumption parameter distributions -# ##' -# ##' @param name parameter name -# ##' @param config config file -# ##' @return plot of distribution of peak timing across simulations by county -# ##' -# ##' @export -# ##' -# plot_model_parameter_distributions <- function(name, config){ -# dist_plot_config <- config$report$plot_settings$parameters_to_display -# local_config <- dist_plot_config[[name]] -# value <- config[[local_config$type]][['parameters']][[name]] -# if((length(value) > 1) & ("distribution" %in% names(value))){ -# if(value$distribution == 'uniform' ){ -# value <- runif(1e5,covidcommon::as_evaled_expression(value$low) , covidcommon::as_evaled_expression(value$high)) -# } -# } else { -# value <- covidcommon::as_evaled_expression(value) -# } -# if('transform' %in% names(dist_plot_config[[name]]) ){ -# if(dist_plot_config[[name]][['transform']] == 'invert'){ -# value = 1 / value -# } -# } -# rval <- NaN -# if(local_config$distribution == "lnormal"){ -# rval <- (rlnorm(1e5,meanlog= value[1], sdlog = value[2])) -# } -# if(local_config$distribution == "exp"){ -# rval <- rexp(1e5,rate=value) -# } -# if(local_config$distribution == "gamma"){ -# all_compartments <<- unique(report.generation::load_scenario_sims_filtered('mid-west-coast-AZ-NV_CaliforniaMild/',pre_process=function(x){return(x[x$time==x$time[1], ])})$comp) -# number_compartments <<- sum(grepl("I[[:digit:]]+",all_compartments)) -# if(length(value)==1){ -# value[2] <- 1/value[1] -# } -# rval <- rgamma(1e5,shape=value/number_compartments,scale=number_compartments) -# } -# if('xlim' %in% names(local_config)){ -# plt <- plot(density(rval),main = local_config$formal_name, xlab = local_config$xlab, bty='n', xlim=as.numeric(local_config$xlim)) -# } else { -# plt <- plot(density(rval),main = local_config$formal_name, xlab = local_config$xlab, bty='n') -# } -# return(plt) -# } - - - - -##' -##' Make statewide table of infections, hosp, ICU, deaths for given scenario -##' -##' @param current_scenario text string of scenario label for which to build table -##' @param hosp_state_totals totals for hospitalization related data for state for all pdeath -##' @param table_dates formatted table_dates object -##' @param pdeath_labels pdeath formatted labels -##' @param pdeath_filecode pdeath file column codes -##' -##' @return state scenario table -##' -##' @export -##' -make_scn_state_table <- function(current_scenario, - hosp_state_totals, - table_dates, - pdeath_labels, - pdeath_filecode){ - -ci_lo = 0.025 -ci_hi = 0.975 - -if (length(pdeath_filecode)==1) { - stop("Currently does not support single values of pdeath") -} - -tmp <- data.frame(name=c("INFECTIONS", - "HOSPITALIZATIONS\n total", "", "", - " daily peak admissions", "", "", - " daily peak capacity", "", "", - "ICU \n total", "", "", - " daily peak admissions", "", "", - " daily peak capacity", "", "", - "DEATHS\n total", "", "")) -tmp$name <- as.character(tmp$name) -table_dates <- as.Date(table_dates) - -for(i in 1:length(table_dates)){ - xx <- hosp_state_totals %>% - filter(!is.na(time) & scenario_name==current_scenario) %>% - filter(time <= table_dates[i]) %>% - group_by(scenario_name, pdeath, sim_num) %>% - summarize( - TotalIncidInf = sum(NincidInf, na.rm = TRUE), - TotalIncidHosp = sum(NincidHosp, na.rm = TRUE), - TotalIncidICU = sum(NincidICU, na.rm = TRUE), - TotalIncidDeath = sum(NincidDeath, na.rm = TRUE), - maxHospAdm = max(NincidHosp, na.rm=TRUE), - maxICUAdm = max(NincidICU, na.rm=TRUE), - maxHospCap = max(NhospCurr, na.rm = TRUE), - maxICUCap = max(NICUCurr, na.rm=TRUE) - ) %>% - ungroup() %>% - group_by(scenario_name, pdeath) %>% - summarize( - nIncidInf_final = mean(TotalIncidInf), - nIncidInf_lo = quantile(TotalIncidInf, ci_lo), - nIncidInf_hi = quantile(TotalIncidInf, ci_hi), - nIncidHosp_final = mean(TotalIncidHosp), - nIncidHosp_lo = quantile(TotalIncidHosp, ci_lo), - nIncidHosp_hi = quantile(TotalIncidHosp, ci_hi), - pIncidHosp_final = mean(maxHospAdm), - pIncidHosp_lo = quantile(maxHospAdm, ci_lo), - pIncidHosp_hi = quantile(maxHospAdm, ci_hi), - nIncidICU_final = mean(TotalIncidICU), - nIncidICU_lo = quantile(TotalIncidICU, ci_lo), - nIncidICU_hi = quantile(TotalIncidICU, ci_hi), - pIncidICU_final = mean(maxICUAdm), - pIncidICU_lo = quantile(maxICUAdm, ci_lo), - pIncidICU_hi = quantile(maxICUAdm, ci_hi), - nIncidDeath_final = mean(TotalIncidDeath), - nIncidDeath_lo = quantile(TotalIncidDeath, ci_lo), - nIncidDeath_hi = quantile(TotalIncidDeath, ci_hi), - nCurrHosp_final = mean(maxHospCap), - nCurrHosp_lo = quantile(maxHospCap, ci_lo), - nCurrHosp_hi = quantile(maxHospCap, ci_hi), - nCurrICU_final = mean(maxICUCap), - nCurrICU_lo = quantile(maxICUCap, ci_lo), - nCurrICU_hi = quantile(maxICUCap, ci_hi)) %>% - ungroup() %>% - mutate(pdeath = pdeath_labels[match(pdeath, pdeath_filecode)]) - - - tmp <- bind_cols(tmp, - xx %>% filter(pdeath==pdeath_labels[1]) %>% - mutate(ci = make_CI(nIncidInf_lo, nIncidInf_hi), - est = conv_round(nIncidInf_final), - lvl = paste0("total inc infections"), - pdeath = "") %>% ## infections have no pdeath - select(lvl, est, ci, pdeath) %>% - bind_rows(xx %>% - mutate(ci = make_CI(nIncidHosp_lo, nIncidHosp_hi), - est = conv_round(nIncidHosp_final), - lvl = paste0("total inc hosp", pdeath)) %>% - select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% - bind_rows(xx %>% - mutate(ci = make_CI(pIncidHosp_lo, pIncidHosp_hi), - est = conv_round(pIncidHosp_final), - lvl = paste0("peak inc hosp", pdeath)) %>% - select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% - bind_rows(xx %>% - mutate(ci = make_CI(nCurrHosp_lo, nCurrHosp_hi), - est = conv_round(nCurrHosp_final), - lvl = paste0("peak hosp cap", pdeath)) %>% - select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% - bind_rows(xx %>% - mutate(ci = make_CI(nIncidICU_lo, nIncidICU_hi), - est = conv_round(nIncidICU_final), - lvl = paste0("total inc ICU", pdeath)) %>% - select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% - bind_rows(xx %>% - mutate(ci = make_CI(pIncidICU_lo, pIncidICU_hi), - est = conv_round(pIncidICU_final), - lvl = paste0("peak inc ICU", pdeath)) %>% - select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% - bind_rows(xx %>% - mutate(ci = make_CI(nCurrICU_lo, nCurrICU_hi), - est = conv_round(nCurrICU_final), - lvl = paste0("peak ICU cap", pdeath)) %>% - select(lvl, est, ci, pdeath) %>% arrange(pdeath)) %>% - bind_rows(xx %>% - mutate(ci = make_CI(nIncidDeath_lo, nIncidDeath_hi), - est = conv_round(nIncidDeath_final), - lvl = paste0("total inc death", pdeath)) %>% - select(lvl, est, ci, pdeath) %>% arrange(pdeath)) - ) -} - - -tlabels <- c(" ", "IFR") -nlabels <- c("name", "pdeath", "est", "ci") - -for(i in 1:length(table_dates)){ - tlabels <- c(tlabels, - paste0(print_pretty_date_short(table_dates[i]), "\nmean "), - "\n 95% PI") - if(i>1){nlabels <- c(nlabels, paste0("est", i-1), paste0("ci", i-1))} -} -names(tlabels) <- nlabels - -flextable::flextable(tmp[,nlabels]) %>% - flextable::set_header_labels(values=tlabels) %>% - flextable::valign(valign="bottom") %>% - flextable::colformat_num(digits=0) %>% - flextable::autofit() - -} - +} ##' @@ -976,127 +516,6 @@ make_scn_state_table_withVent <- function(current_scenario, } -##' -##' Function makes a summary table for an entire state. -##' -##' @param hosp_state_totals contains the relevant hospital data -##' @param period_breaks the dates to break up the display periods. -##' @param pi_low low side of the prediction interval -##' @param pi_high high side of the prediction interval -##' @param round_digit what level to round to -##' -##' @export -##' -make_scn_time_summary_table <- function(hosp_state_totals, - period_breaks, - pi_low = 0.025, - pi_high = 0.975, - round_digit=-2) { - ##Make the period ranges and labels - period_breaks <- sort(as.Date(period_breaks)) #out of order leads to bad things.... - period_breaks <- c(min(hosp_state_totals$time)-1, as.Date(period_breaks), max(hosp_state_totals$time)+1) - - len <- length(period_breaks) - lbls <- sprintf("%s-%s", format(period_breaks[1:(len-1)], "%b %d"), - format(period_breaks[2:len], "%b %d")) - - ## Build the table with summaries of all of the periods in it. - tbl_df <- hosp_state_totals %>% - mutate(period = cut(time, period_breaks, labels=lbls)) %>% - group_by(period, scenario_name, sim_num) %>% #summarize totals in periods by scenario - summarize(PeriodInf = sum(NincidInf), - PeriodDeath = sum(NincidDeath), - PeriodHosp = sum(NincidHosp), - PeriodPkHosp = max(NhospCurr), - PeriodICU = sum(NincidICU), - PeriodPkICU = max(NICUCurr)) %>% - ungroup %>% - group_by(period, scenario_name) %>% #now get means and prediction intervals - summarize(PeriodInfPILow = round(quantile(PeriodInf, probs = c(pi_low)),digits = round_digit), - PeriodDeathPILow = round(quantile(PeriodDeath, probs = c(pi_low)),digits = round_digit), - PeriodHospPILow = round(quantile(PeriodHosp, probs = c(pi_low)),digits = round_digit), - PeriodPkHospPILow = round(quantile(PeriodPkHosp, probs = c(pi_low)),digits = round_digit), - PeriodICUPILow = round(quantile(PeriodICU, probs = c(pi_low)),digits = round_digit), - PeriodPkICUPILow = round(quantile(PeriodPkICU, probs = c(pi_low)),digits = round_digit), - PeriodInfPIHigh = round(quantile(PeriodInf, probs = c(pi_high)),digits = round_digit), - PeriodDeathPIHigh = round(quantile(PeriodDeath, probs = c(pi_high)),digits = round_digit), - PeriodHospPIHigh = round(quantile(PeriodHosp, probs = c(pi_high)),digits = round_digit), - PeriodPkHospPIHigh = round(quantile(PeriodPkHosp, probs = c(pi_high)),digits = round_digit), - PeriodICUPIHigh = round(quantile(PeriodICU, probs = c(pi_high)),digits = round_digit), - PeriodPkICUPIHigh = round(quantile(PeriodPkICU, probs = c(pi_high)),digits = round_digit), - PeriodInf = round(mean(PeriodInf),digits = round_digit), - PeriodDeath = round(mean(PeriodDeath),digits = round_digit), - PeriodHosp = round(mean(PeriodHosp),digits = round_digit), - PeriodPkHosp = round(mean(PeriodPkHosp),digits = round_digit), - PeriodICU = round(mean(PeriodICU),digits = round_digit), - PeriodPkICU = round(mean(PeriodPkICU), digits = round_digit)) %>% - ungroup() %>% ##make hi/low into CIs - mutate(PeriodInfPI = paste(format(PeriodInfPILow,big.mark=","), format(PeriodInfPIHigh,big.mark=","), sep="-"), - PeriodDeathPI = paste(format(PeriodDeathPILow,big.mark=","), format(PeriodDeathPIHigh,big.mark=","), sep="-"), - PeriodHospPI = paste(format(PeriodHospPILow,big.mark=","), format(PeriodHospPIHigh,big.mark=","), sep="-"), - PeriodPkHospPI = paste(format(PeriodPkHospPILow,big.mark=","), format(PeriodPkHospPIHigh,big.mark=","), sep="-"), - PeriodICUPI = paste(format(PeriodICUPILow,big.mark=","), format(PeriodICUPIHigh,big.mark=","), sep="-"), - PeriodPkICUPI = paste(format(PeriodPkICUPILow,big.mark=","), format(PeriodPkICUPIHigh,big.mark=","), sep="-"),) %>% - select(-PeriodInfPILow, -PeriodInfPIHigh, - -PeriodDeathPILow, -PeriodDeathPIHigh, - -PeriodHospPILow, -PeriodHospPIHigh, - -PeriodPkHospPILow, -PeriodPkHospPIHigh, - -PeriodICUPILow, -PeriodICUPIHigh, - -PeriodPkICUPILow, -PeriodPkICUPIHigh) - - - tmp<-sprintf("%s_%s", rep(lbls, each=2),c("mean","95% PI")) - - - ##inellegant but should work - tbl_df <- - bind_rows(tbl_df%>%select(period,scenario_name, PeriodInf, PeriodInfPI)%>%mutate(outcome="Infections in Period")%>% - rename(mean=PeriodInf,`95% PI`=PeriodInfPI), - tbl_df%>%select(period,scenario_name, PeriodDeath, PeriodDeathPI)%>%mutate(outcome="Deaths in Period")%>% - rename(mean=PeriodDeath,`95% PI`=PeriodDeathPI), - tbl_df%>%select(period,scenario_name, PeriodHosp, PeriodHospPI)%>%mutate(outcome="Hospital Admissions in Period")%>% - rename(mean=PeriodHosp,`95% PI`=PeriodHospPI), - tbl_df%>%select(period,scenario_name, PeriodPkHosp, PeriodPkHospPI)%>%mutate(outcome="Peak Hospital Occupancy in Period")%>% - rename(mean=PeriodPkHosp,`95% PI`=PeriodPkHospPI), - tbl_df%>%select(period,scenario_name, PeriodICU, PeriodICUPI)%>%mutate(outcome="ICU Admissions in Period")%>% - rename(mean=PeriodICU,`95% PI`=PeriodICUPI), - tbl_df%>%select(period,scenario_name, PeriodPkICU, PeriodPkICUPI)%>%mutate(outcome="Peak ICU Occupancy in Period")%>% - rename(mean=PeriodPkICU,`95% PI`=PeriodPkICUPI)) %>% - mutate(period=as.character(period)) %>% - pivot_wider(names_from=period, values_from = c(mean,`95% PI`), names_sep=".")%>% - setNames(nm = sub("(.*)\\.(.*)", "\\2_\\1", names(.)))%>% - select(outcome,scenario_name,all_of(tmp)) - - #tells how to group columns - tbl_df <- flextable::as_grouped_data(tbl_df,groups="outcome") - tmp <- is.na(tbl_df$scenario_name) - tbl_df$scenario_name[tmp] <-tbl_df$outcome[tmp] - tbl_df <- tbl_df%>%select(-outcome) - typology<-data_frame(col_keys=colnames(tbl_df), - colA=c("",rep(lbls,each=2)), - colB=c("",rep(c("mean","95% PI"),length(lbls)))) - - - flx <- flextable::flextable(tbl_df) %>% - flextable::colformat_num(digits=0)%>% - #flextable::merge_v(j="outcome")%>% - flextable::autofit(add_w=.05)%>% - flextable::valign(valign="top") %>% - flextable::set_header_df(mapping = typology, key = "col_keys" )%>% - #flextable::merge_h(part="header")%>% - flextable::bold(j=sprintf("%s_mean",lbls))%>% - flextable::bold(part="header",bold=TRUE)%>% - flextable::bold(j = 1, i =which(tmp), bold = TRUE, part = "body" )%>% - flextable::align(i=1,align = "center", part="header") %>% - flextable::align(i=2,j=which(typology$colB=="mean"), align = "right", part="header") %>% - flextable::hline(i=2, part="header", border = officer::fp_border())%>% - flextable::hline_top(part="header", border = officer::fp_border(width=2))%>% - flextable::border(i=which(tmp), border.top = officer::fp_border(col="grey")) - - return(flx) - -} - ##' ##' Function makes a summary table for an entire state. @@ -1337,59 +756,6 @@ plot_event_time_by_geoid <- function(hosp_county_peaks, } -##' -##' Returns a ggplot object giving a boxplot of the range of N -##' within each time period. -##' -##' @param hosp_state_totals, -##' -##' @param df a data frame with columns time, sim_num, scenario_name and N -##' @param period_breaks the dates to break up the display periods. -##' @param stat either "identity" or "peak" [TODO:extend options] -##' -##' @export -boxplot_by_timeperiod <- function(df, - period_breaks, - stat="identity", - scenario_labels, # TODO provide default arguments - scenario_colors # TODO provide default arguments - ) { - - period_breaks <- c(min(df$time)-1, as.Date(period_breaks), max(df$time)+1) - len <- length(period_breaks) - lbls <- sprintf("%s-%s", format(period_breaks[1:(len-1)], "%b %d"), - format(period_breaks[2:len], "%b %d")) - - if(stat=="identity") { - sum_func <- function(x){x} - } else if(stat=="peak") { - sum_func <- function (x) { - x %>% - group_by(sim_num, scenario_name, period) %>% - summarize(N=max(N)) %>% - ungroup() - } - } else { - stop("Unknown statistic") - } - - - rc <- df %>% - mutate(period = cut(time, period_breaks, labels=lbls)) %>% - sum_func %>% - ggplot(aes(x=reorder(period, desc(period)), y=N, fill=scenario_name)) + - geom_boxplot(outlier.alpha = .1, outlier.size=.2) + - facet_wrap(~scenario_name,ncol=1)+ - scale_fill_manual("Scenario", - labels = scenario_labels, - values = scenario_colors) + - coord_flip() - - return(rc) - -} - - ##' ##' Compare model outputs and data from CSSE ##' @@ -1504,95 +870,6 @@ plot_model_vs_obs <- function(state_hosp_totals, } -##' -##' Plot heatmap of excess variables, as absolute number -##' (default), per-capita number needed, or % over threshold -##' -##' @param hosp_dat timeseries with incident and cumulative hospitalizations, ICU admissions, etc. -##' @param current_scenario text string of scenario label to plot -##' @param type either "absolute", for total number excess; "percent", for percent excess; or "per-capita" for number excess per 10,000 population -##' @param threshold named vector of threshold value for given variable -##' @param shp shapefile with GEOID names -##' @param varname character string of variable name to plot from hosp data -##' @param varlabel character string of variable name for plot legend -##' @param geodata geodata object from load_config; only needed if type="per-capita" -##' @param popnodes name of pop variable in geodata; only needed if type="per-capita" -##' @param trunc_value value at which to truncate values for easy plotting; if null, defaults to max -##' -##' @export -##' -make_excess_heatmap <- function(hosp_dat, - current_scenario, - type, - threshold, - shp, - varname, - varlabel, - geodata = NULL, - popnodes = config$spatial_setup$popnodes, - trunc_value = NULL){ - - shp$threshold <- threshold[match(shp$geoid, names(threshold))] - - hosp_dat <- hosp_dat %>% - dplyr::filter(scenario_name == current_scenario) %>% - rename(var = !!varname) - - if(type=="per-capita"){ - plt_dat <- as.data.frame(shp) %>% - select(geoid, name, threshold) %>% - left_join(geodata %>% dplyr::rename(pop=!!popnodes) %>% dplyr::select(geoid, pop), by="geoid") %>% - arrange(name) - - hosp_dat <- hosp_dat %>% - left_join(plt_dat, by="geoid") %>% - replace_na(list(threshold=0)) %>% - mutate(exc_raw = var - threshold, - exc_abs = ifelse(exc_raw>0, exc_raw, NA), - exc_toplot = exc_abs / pop * 10000) - } - if(type=="absolute"){ - plt_dat <- as.data.frame(shp) %>% - select(geoid, name, threshold) %>% - arrange(name) - - hosp_dat <- hosp_dat %>% - left_join(plt_dat, by="geoid") %>% - replace_na(list(threshold=0)) %>% - mutate(exc_raw = var - threshold, - exc_toplot = ifelse(exc_raw>0, exc_raw, NA)) - } - if(type=="percent"){ - plt_dat <- as.data.frame(shp) %>% - select(geoid, name, threshold) %>% - arrange(name) - - hosp_dat <- hosp_dat %>% - left_join(plt_dat, by="geoid") %>% - replace_na(list(threshold=0)) %>% - mutate(exc_raw = var - threshold, - exc_abs = ifelse(exc_raw>0, exc_raw, NA), - exc_toplot = exc_abs / threshold * 100) - } - - if(!is.null(trunc_value)){ - hosp_dat$exc_toplot <- ifelse(hosp_dat$exc_toplot>trunc_value, trunc_value, hosp_dat$exc_toplot) - } - - rc <- ggplot(hosp_dat, aes(x=time, y=name, fill=exc_toplot)) + - geom_tile() + - scale_fill_viridis_c(option = "magma", direction = -1, na.value = "white", name = varlabel) + - theme_minimal() + - xlab("") + - ylab("") + - scale_x_date(date_breaks = "2 weeks", - date_labels = "%b %d") + - theme(axis.text.x = element_text(angle=45, vjust = 0.5)) - - return(rc) -} - - ##' ##' Plot heatmap of needs relative to a threshold (e.g. bed needs) ##' diff --git a/R/pkgs/report.generation/R/ReportLoadData-deprecated.R b/R/pkgs/report.generation/R/ReportLoadData-deprecated.R new file mode 100644 index 000000000..de7d9142c --- /dev/null +++ b/R/pkgs/report.generation/R/ReportLoadData-deprecated.R @@ -0,0 +1,338 @@ +##' Deprecated convenience function to load cumulative geounit hosp outcomes at a specific date for the given scenario +##' +##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names +##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels +##' @param name_filter character string that filenames should match +##' @param display_date character date string for which cumulative infections should be extracted +##' @param incl_geoids character vector of geoids that are included in the report +##' @param geoid_len in defined, this we want to make geoids all the same length +##' @param padding_char character to add to the front of geoids if fixed length +##' +##' @return a data frame with columns +##' - time +##' - comp +##' - geoid +##' - N +##' - sim_num +##' - scenario_num +##' - scenario_name +##' +##' @export +load_cum_hosp_geounit_date <- function(scn_dirs, + num_files = NA, + scenariolabels = NULL, + name_filter, + display_date=config$end_date, + incl_geoids=NULL, + geoid_len = 0, + padding_char = "0", + file_extension = 'auto'){ + + if(is.null(scenariolabels)){ + warning("You have not specified scenario labels for this function. You may encounter future errors.") + } + + display_date <- as.Date(display_date) + ##filter to munge the data at the scenario level + if (!is.null(incl_geoids)) { + hosp_post_process <- function(x) { + x %>% + dplyr::filter(!is.na(time) & geoid %in% incl_geoids, time <= display_date) %>% + group_by(geoid, sim_num) %>% + dplyr::summarize(NincidDeath = sum(incidD), + NincidInf = sum(incidI), + NincidICU=sum(incidICU), + NincidHosp=sum(incidH), + NincidVent = sum(incidVent)) %>% + ungroup() + } + } else { + hosp_post_process <- function(x) { + x %>% + dplyr::filter(!is.na(time) & time <= display_date) %>% + group_by(geoid, sim_num) %>% + dplyr::summarize(NincidDeath = sum(incidD), + NincidInf = sum(incidI), + NincidICU=sum(incidICU), + NincidHosp=sum(incidH), + NincidVent = sum(incidVent)) %>% + ungroup() + } + } + + + rc <- list(length=length(scn_dirs)) + for (i in 1:length(scn_dirs)) { + rc[[i]] <- load_hosp_sims_filtered(scn_dirs[i], + num_files = num_files, + name_filter = name_filter, + post_process = hosp_post_process, + geoid_len = geoid_len, + padding_char = padding_char, + file_extension = file_extension) + rc[[i]]$scenario_num <- i + rc[[i]]$scenario_name <- scenariolabels[[i]] + } + + return(dplyr::bind_rows(rc)) +} + + + +##' Deprecated convenience function to load timeseries current hospital outcomes +##' +##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names +##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels +##' @param name_filter character string that filenames should match +##' @param end_date last date to include in timeseries +##' @param incl_geoids character vector of geoids that are included in the report +##' @param geoid_len in defined, this we want to make geoids all the same length +##' @param padding_char character to add to the front of geoids if fixed length +##' +##' @return a data frame with columns +##' - time +##' - geoid +##' - NHospCurr, NICUCurr, NVentCurr +##' - sim_num +##' - scenario_num +##' - scenario_name +##' +##' @export +load_ts_current_hosp_geounit <- function(scn_dirs, + num_files = NA, + scenariolabels = NULL, + name_filter, + end_date, + incl_geoids=NULL, + geoid_len = 0, + padding_char = "0", + qlo = 0.025, + qhi= 0.975, + file_extension = 'auto') { + + if(is.null(scenariolabels)){ + warning("You have not specified scenario labels for this function. You may encounter future errors.") + } + + + ## currently too slow including the quantiles... ## + end_date <- as.Date(end_date) + ##filter to munge the data at the scenario level + if (!is.null(incl_geoids)) { + hosp_post_process <- function(x) { + x %>% + dplyr::filter(!is.na(time) & geoid %in% incl_geoids, time <= end_date) %>% + dplyr::select(time, + geoid, + sim_num, + NHospCurr = hosp_curr, + NICUCurr = icu_curr, + NVentCurr = vent_curr) %>% + group_by(sim_num, time, geoid) %>% + mutate(#NHospCurrlo = quantile(NHospCurr, qlo), + #NHospCurrhi = quantile(NHospCurr, qhi), + NHospCurr = mean(NHospCurr), + #NICUCurrlo = quantile(NICUCurr, qlo), + #NICUCurrhi = quantile(NICUCurr, qhi), + NICUCurr = mean(NICUCurr), + #NVentCurrlo = quantile(NVentCurr, qlo), + #NVentCurrhi = quantile(NVentCurr, qhi), + NVentCurr = mean(NVentCurr)) %>% + ungroup() + } + } else { + hosp_post_process <- function(x) { + x %>% + dplyr::filter(!is.na(time) & time <= end_date) %>% + dplyr::select(time, + geoid, + sim_num, + NHospCurr = hosp_curr, + NICUCurr = icu_curr, + NVentCurr = vent_curr) %>% + group_by(sim_num, time, geoid) %>% + mutate(#NHospCurrlo = quantile(NHospCurr, qlo), + #NHospCurrhi = quantile(NHospCurr, qhi), + NHospCurr = mean(NHospCurr), + #NICUCurrlo = quantile(NICUCurr, qlo), + #NICUCurrhi = quantile(NICUCurr, qhi), + NICUCurr = mean(NICUCurr), + #NVentCurrlo = quantile(NVentCurr, qlo), + #NVentCurrhi = quantile(NVentCurr, qhi), + NVentCurr = mean(NVentCurr)) %>% + ungroup() + } + } + + + rc <- list(length=length(scn_dirs)) + for (i in 1:length(scn_dirs)) { + rc[[i]] <- load_hosp_sims_filtered(scn_dirs[i], + num_files = num_files, + name_filter = name_filter, + post_process = hosp_post_process, + geoid_len = geoid_len, + padding_char = padding_char, + file_extension = file_extension) + rc[[i]]$scenario_num <- i + rc[[i]]$scenario_name <- scenariolabels[[i]] + } + + return(dplyr::bind_rows(rc)) +} + + +##' Deprecated convenience function to load peak geounit infections before a given date for the given scenarios +##' +##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names +##' @param display_date character string for date before which infection peak should be identified +##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels +##' @param incl_geoids optional character vector of geoids that are included in the report, if not included, all geoids will be used +##' @param geoid_len required length of geoid +##' @param padding_char padding +##' +##' @return a data frame with columns +##' - time +##' - comp +##' - geoid +##' - N +##' - sim_num +##' - scenario_num +##' - scenario_name +##' +##' @export +load_inf_geounit_peaks_date <- function(scn_dirs, + display_date=config$end_date, + num_files = NA, + scenariolabels=NULL, + incl_geoids=NULL, + geoid_len = 0, + padding_char = "0", + file_extension = 'auto'){ + + if(is.null(scenariolabels)){ + warning("You have not specified scenario labels for this function. You may encounter future errors.") + } + + display_date <- as.Date(display_date) + inf_pre_process <- function(x) { + x %>% + dplyr::filter(comp == "diffI" & time <= display_date) + } + + if (!is.null(incl_geoids)) { + inf_post_process <- function(x) { + x %>% + ungroup %>% + dplyr::filter(!is.na(time), geoid %in% incl_geoids) %>% + group_by(geoid) %>% + dplyr::slice(which.max(N)) %>% + ungroup() + } + } else{ + inf_post_process <- function(x) { + x %>% + ungroup %>% + dplyr::filter(!is.na(time)) %>% + group_by(geoid) %>% + dplyr::slice(which.max(N)) %>% + ungroup() + } + + } + + rc <- list() + for (i in 1:length(scn_dirs)) { + rc[[i]] <- load_scenario_sims_filtered(scn_dirs[i], + num_files = num_files, + pre_process = inf_pre_process, + post_process = inf_post_process, + geoid_len = geoid_len, + padding_char = padding_char, + file_extension = file_extension) + rc[[i]]$scenario_num <- i + rc[[i]]$scenario_name <- scenariolabels[[i]] + + } + + return(dplyr::bind_rows(rc)) + +} + + +##' Deprecated convenience function to load peak geounit hospitalizations (or any other variable) by a specific date for the given scenarios +##' +##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names +##' @param max_var character string of variable that will be maximized per geoid +##' @param display_date date before which we should search for peaks +##' @param name_filter character string that filenames should match +##' @param incl_geoids optional character vector of geoids that are included in the report, if not included, all geoids will be used +##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels +##' @param incl_geoids optional character vector of geoids that are included in the report, if not included, all geoids will be used +##' @param geoid_len required length of geoid +##' @param padding_char padding +##' +##' @return a data frame with columns +##' - sim_num +##' - Pk_[variableName] variable that was maximized by geoid +##' - NhospCurr number of people in hospital on a day +##' - NICUCurr number of people in ICU on a day +##' - NincidDeath number of incidence deaths on a day +##' - NincidInf number of incident infections on a day +##' - NincidICH number of incident ICUs on a day +##' @export +### all of the peak times for each sim and each county so we can make a figure for when things peak +load_hosp_geounit_peak_date <- function(scn_dirs, + max_var, + display_date = config$end_date, + num_files = NA, + name_filter, + incl_geoids = NULL, + scenariolabels = NULL, + geoid_len = 0, + padding_char = "0", + file_extension = 'auto'){ + + if(is.null(scenariolabels)){ + warning("You have not specified scenario labels for this function. You may encounter future errors.") + } + + display_date <- as.Date(display_date) + if (!is.null(incl_geoids)) { + hosp_post_process <- function(x) { + x %>% + dplyr::rename(mx_var = !!max_var) %>% + dplyr::filter(!is.na(time), geoid %in% incl_geoids, time <= display_date) %>% + group_by(geoid) %>% + dplyr::slice(which.max(mx_var)) %>% + ungroup() + } + } else { + hosp_post_process <- function(x) { + x %>% + dplyr::rename(mx_var = !!max_var) %>% + dplyr::filter(!is.na(time), time <= display_date) %>% + group_by(geoid) %>% + dplyr::slice(which.max(mx_var)) %>% + ungroup() + } + } + rc <- list(length=length(scn_dirs)) + for (i in 1:length(scn_dirs)) { + rc[[i]] <- load_hosp_sims_filtered(scn_dirs[i], + num_files = num_files, + name_filter = name_filter, + post_process = hosp_post_process, + geoid_len = geoid_len, + padding_char = padding_char, + file_extension = file_extension) %>% + dplyr::select(time, geoid, sim_num, mx_var) + rc[[i]]$scenario_num <- i + rc[[i]]$scenario_name <- scenariolabels[[i]] + } + + rc %>% + dplyr::bind_rows() %>% + dplyr::rename(!!paste0("Pk_", max_var) := mx_var) %>% ## notate the column that was maximized with "Pk_" + return() +} diff --git a/R/pkgs/report_generation/R/ReportLoadData.R b/R/pkgs/report.generation/R/ReportLoadData.R similarity index 54% rename from R/pkgs/report_generation/R/ReportLoadData.R rename to R/pkgs/report.generation/R/ReportLoadData.R index 65fc8247f..1e74d08a7 100644 --- a/R/pkgs/report_generation/R/ReportLoadData.R +++ b/R/pkgs/report.generation/R/ReportLoadData.R @@ -7,15 +7,17 @@ ##' @param incl_geoids character vector of geoids that are included in the report ##' @param geoid_len in defined, this we want to make geoids all the same length ##' @param padding_char character to add to the front of geoids if fixed length +##' @param file_extension string indicating type of model output files (parquet or csv or auto) +##' @param name_filter string that indicates which pdeath level to import for the source files (from the hosp file name) ##' ##' @return a data frame with columns ##' - time -##' - comp ##' - geoid -##' - N ##' - sim_num +##' - N ##' - scenario_num ##' - scenario_name +##' - pdeath ##' ##' @export load_cum_inf_geounit_dates <- function(scn_dirs, @@ -25,234 +27,57 @@ load_cum_inf_geounit_dates <- function(scn_dirs, incl_geoids=NULL, geoid_len = 0, padding_char = "0", - file_extension = 'auto'){ - + file_extension = 'auto', + name_filter) +{ if(is.null(scenariolabels)){ warning("You have not specified scenario labels for this function. You may encounter future errors.") } - + warning("This function loads infection data from hospitalization outputs. Only one IFR scenario is needed to load these data for a given set of model outputs because infection counts will be the same across IFR scenarios.") + display_dates <- as.Date(display_dates) - inf_pre_process <- function(x) { - x %>% - dplyr::filter(comp == "cumI") %>% - dplyr::filter(time %in% display_dates) - } + max_date <- max(display_dates) + ##filter to munge the data at the scenario level if (!is.null(incl_geoids)) { - inf_post_process <- function(x) { + hosp_post_process <- function(x) { x %>% - ungroup %>% - dplyr::filter(!is.na(time), geoid %in% incl_geoids) + dplyr::filter(!is.na(time) & geoid %in% incl_geoids, time <= max_date) %>% + group_by(geoid, sim_num) %>% + dplyr::mutate(N = cumsum(incidI)) %>% + ungroup() %>% + dplyr::filter(time %in% display_dates) } } else { - inf_post_process <- function(x) { + hosp_post_process <- function(x) { x %>% - ungroup %>% - dplyr::filter(!is.na(time)) + dplyr::filter(!is.na(time) & time <= max_date) %>% + group_by(geoid, sim_num) %>% + dplyr::mutate(N = cumsum(incidI)) %>% + ungroup() %>% + dplyr::filter(time %in% display_dates) } } - + rc <- list() for (i in 1:length(scn_dirs)) { - rc[[i]] <- load_scenario_sims_filtered(scn_dirs[i], - num_files = num_files, - pre_process = inf_pre_process, - post_process = inf_post_process, - geoid_len = geoid_len, - padding_char = padding_char, - file_extension = file_extension) - + rc[[i]] <- load_hosp_sims_filtered(scn_dirs[i], + num_files = num_files, + name_filter = name_filter, + post_process = hosp_post_process, + geoid_len = geoid_len, + padding_char = padding_char, + file_extension = file_extension) rc[[i]]$scenario_num <- i rc[[i]]$scenario_name <- scenariolabels[[i]] } - return(dplyr::bind_rows(rc)) - } -##' Convenience function to load cumulative geounit hosp outcomes at a specific date for the given scenario -##' -##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names -##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels -##' @param name_filter character string that filenames should match -##' @param display_date character date string for which cumulative infections should be extracted -##' @param incl_geoids character vector of geoids that are included in the report -##' @param geoid_len in defined, this we want to make geoids all the same length -##' @param padding_char character to add to the front of geoids if fixed length -##' -##' @return a data frame with columns -##' - time -##' - comp -##' - geoid -##' - N -##' - sim_num -##' - scenario_num -##' - scenario_name -##' -##' @export -load_cum_hosp_geounit_date <- function(scn_dirs, - num_files = NA, - scenariolabels = NULL, - name_filter, - display_date=config$end_date, - incl_geoids=NULL, - geoid_len = 0, - padding_char = "0", - file_extension = 'auto'){ - - if(is.null(scenariolabels)){ - warning("You have not specified scenario labels for this function. You may encounter future errors.") - } - - display_date <- as.Date(display_date) - ##filter to munge the data at the scenario level - if (!is.null(incl_geoids)) { - hosp_post_process <- function(x) { - x %>% - dplyr::filter(!is.na(time) & geoid %in% incl_geoids, time <= display_date) %>% - group_by(geoid, sim_num) %>% - dplyr::summarize(NincidDeath = sum(incidD), - NincidInf = sum(incidI), - NincidICU=sum(incidICU), - NincidHosp=sum(incidH), - NincidVent = sum(incidVent)) %>% - ungroup() - } - } else { - hosp_post_process <- function(x) { - x %>% - dplyr::filter(!is.na(time) & time <= display_date) %>% - group_by(geoid, sim_num) %>% - dplyr::summarize(NincidDeath = sum(incidD), - NincidInf = sum(incidI), - NincidICU=sum(incidICU), - NincidHosp=sum(incidH), - NincidVent = sum(incidVent)) %>% - ungroup() - } - } - - - rc <- list(length=length(scn_dirs)) - for (i in 1:length(scn_dirs)) { - rc[[i]] <- load_hosp_sims_filtered(scn_dirs[i], - num_files = num_files, - name_filter = name_filter, - post_process = hosp_post_process, - geoid_len = geoid_len, - padding_char = padding_char, - file_extension = file_extension) - rc[[i]]$scenario_num <- i - rc[[i]]$scenario_name <- scenariolabels[[i]] - } - return(dplyr::bind_rows(rc)) -} -##' Convenience function to load timeseries current hospital outcomes -##' -##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names -##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels -##' @param name_filter character string that filenames should match -##' @param end_date last date to include in timeseries -##' @param incl_geoids character vector of geoids that are included in the report -##' @param geoid_len in defined, this we want to make geoids all the same length -##' @param padding_char character to add to the front of geoids if fixed length -##' -##' @return a data frame with columns -##' - time -##' - geoid -##' - NHospCurr, NICUCurr, NVentCurr -##' - sim_num -##' - scenario_num -##' - scenario_name -##' -##' @export -load_ts_current_hosp_geounit <- function(scn_dirs, - num_files = NA, - scenariolabels = NULL, - name_filter, - end_date, - incl_geoids=NULL, - geoid_len = 0, - padding_char = "0", - qlo = 0.025, - qhi= 0.975, - file_extension = 'auto') { - - if(is.null(scenariolabels)){ - warning("You have not specified scenario labels for this function. You may encounter future errors.") - } - - - ## currently too slow including the quantiles... ## - end_date <- as.Date(end_date) - ##filter to munge the data at the scenario level - if (!is.null(incl_geoids)) { - hosp_post_process <- function(x) { - x %>% - dplyr::filter(!is.na(time) & geoid %in% incl_geoids, time <= end_date) %>% - dplyr::select(time, - geoid, - sim_num, - NHospCurr = hosp_curr, - NICUCurr = icu_curr, - NVentCurr = vent_curr) %>% - group_by(sim_num, time, geoid) %>% - mutate(#NHospCurrlo = quantile(NHospCurr, qlo), - #NHospCurrhi = quantile(NHospCurr, qhi), - NHospCurr = mean(NHospCurr), - #NICUCurrlo = quantile(NICUCurr, qlo), - #NICUCurrhi = quantile(NICUCurr, qhi), - NICUCurr = mean(NICUCurr), - #NVentCurrlo = quantile(NVentCurr, qlo), - #NVentCurrhi = quantile(NVentCurr, qhi), - NVentCurr = mean(NVentCurr)) %>% - ungroup() - } - } else { - hosp_post_process <- function(x) { - x %>% - dplyr::filter(!is.na(time) & time <= end_date) %>% - dplyr::select(time, - geoid, - sim_num, - NHospCurr = hosp_curr, - NICUCurr = icu_curr, - NVentCurr = vent_curr) %>% - group_by(sim_num, time, geoid) %>% - mutate(#NHospCurrlo = quantile(NHospCurr, qlo), - #NHospCurrhi = quantile(NHospCurr, qhi), - NHospCurr = mean(NHospCurr), - #NICUCurrlo = quantile(NICUCurr, qlo), - #NICUCurrhi = quantile(NICUCurr, qhi), - NICUCurr = mean(NICUCurr), - #NVentCurrlo = quantile(NVentCurr, qlo), - #NVentCurrhi = quantile(NVentCurr, qhi), - NVentCurr = mean(NVentCurr)) %>% - ungroup() - } - } - - - rc <- list(length=length(scn_dirs)) - for (i in 1:length(scn_dirs)) { - rc[[i]] <- load_hosp_sims_filtered(scn_dirs[i], - num_files = num_files, - name_filter = name_filter, - post_process = hosp_post_process, - geoid_len = geoid_len, - padding_char = padding_char, - file_extension = file_extension) - rc[[i]]$scenario_num <- i - rc[[i]]$scenario_name <- scenariolabels[[i]] - } - - return(dplyr::bind_rows(rc)) -} - ##' ##' Convenience function to allow us to load hospital totals for the combined geounits quickly for ##' the given scenarios. @@ -341,161 +166,6 @@ load_hosp_geocombined_totals <- function(scn_dirs, - -##' Convenience function to load peak geounit infections before a given date for the given scenarios -##' -##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names -##' @param display_date character string for date before which infection peak should be identified -##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels -##' @param incl_geoids optional character vector of geoids that are included in the report, if not included, all geoids will be used -##' @param geoid_len required length of geoid -##' @param padding_char padding -##' -##' @return a data frame with columns -##' - time -##' - comp -##' - geoid -##' - N -##' - sim_num -##' - scenario_num -##' - scenario_name -##' -##' @export -load_inf_geounit_peaks_date <- function(scn_dirs, - display_date=config$end_date, - num_files = NA, - scenariolabels=NULL, - incl_geoids=NULL, - geoid_len = 0, - padding_char = "0", - file_extension = 'auto'){ - - if(is.null(scenariolabels)){ - warning("You have not specified scenario labels for this function. You may encounter future errors.") - } - - display_date <- as.Date(display_date) - inf_pre_process <- function(x) { - x %>% - dplyr::filter(comp == "diffI" & time <= display_date) - } - - if (!is.null(incl_geoids)) { - inf_post_process <- function(x) { - x %>% - ungroup %>% - dplyr::filter(!is.na(time), geoid %in% incl_geoids) %>% - group_by(geoid) %>% - dplyr::slice(which.max(N)) %>% - ungroup() - } - } else{ - inf_post_process <- function(x) { - x %>% - ungroup %>% - dplyr::filter(!is.na(time)) %>% - group_by(geoid) %>% - dplyr::slice(which.max(N)) %>% - ungroup() - } - - } - - rc <- list() - for (i in 1:length(scn_dirs)) { - rc[[i]] <- load_scenario_sims_filtered(scn_dirs[i], - num_files = num_files, - pre_process = inf_pre_process, - post_process = inf_post_process, - geoid_len = geoid_len, - padding_char = padding_char, - file_extension = file_extension) - rc[[i]]$scenario_num <- i - rc[[i]]$scenario_name <- scenariolabels[[i]] - - } - - return(dplyr::bind_rows(rc)) - -} - -##' Convenience function to load peak geounit hospitalizations (or any other variable) by a specific date for the given scenarios -##' -##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names -##' @param max_var character string of variable that will be maximized per geoid -##' @param display_date date before which we should search for peaks -##' @param name_filter character string that filenames should match -##' @param incl_geoids optional character vector of geoids that are included in the report, if not included, all geoids will be used -##' @param scenariolabels config$report$formatting$scenario_labels character vector of scenario labels -##' @param incl_geoids optional character vector of geoids that are included in the report, if not included, all geoids will be used -##' @param geoid_len required length of geoid -##' @param padding_char padding -##' -##' @return a data frame with columns -##' - sim_num -##' - Pk_[variableName] variable that was maximized by geoid -##' - NhospCurr number of people in hospital on a day -##' - NICUCurr number of people in ICU on a day -##' - NincidDeath number of incidence deaths on a day -##' - NincidInf number of incident infections on a day -##' - NincidICH number of incident ICUs on a day -##' @export -### all of the peak times for each sim and each county so we can make a figure for when things peak -load_hosp_geounit_peak_date <- function(scn_dirs, - max_var, - display_date = config$end_date, - num_files = NA, - name_filter, - incl_geoids = NULL, - scenariolabels = NULL, - geoid_len = 0, - padding_char = "0", - file_extension = 'auto'){ - - if(is.null(scenariolabels)){ - warning("You have not specified scenario labels for this function. You may encounter future errors.") - } - - display_date <- as.Date(display_date) - if (!is.null(incl_geoids)) { - hosp_post_process <- function(x) { - x %>% - dplyr::rename(mx_var = !!max_var) %>% - dplyr::filter(!is.na(time), geoid %in% incl_geoids, time <= display_date) %>% - group_by(geoid) %>% - dplyr::slice(which.max(mx_var)) %>% - ungroup() - } - } else { - hosp_post_process <- function(x) { - x %>% - dplyr::rename(mx_var = !!max_var) %>% - dplyr::filter(!is.na(time), time <= display_date) %>% - group_by(geoid) %>% - dplyr::slice(which.max(mx_var)) %>% - ungroup() - } - } - rc <- list(length=length(scn_dirs)) - for (i in 1:length(scn_dirs)) { - rc[[i]] <- load_hosp_sims_filtered(scn_dirs[i], - num_files = num_files, - name_filter = name_filter, - post_process = hosp_post_process, - geoid_len = geoid_len, - padding_char = padding_char, - file_extension = file_extension) %>% - dplyr::select(time, geoid, sim_num, mx_var) - rc[[i]]$scenario_num <- i - rc[[i]]$scenario_name <- scenariolabels[[i]] - } - - rc %>% - dplyr::bind_rows() %>% - dplyr::rename(!!paste0("Pk_", max_var) := mx_var) %>% ## notate the column that was maximized with "Pk_" - return() -} - ##' Convenience function to load the slice for each geoid where the value of an outcome exceeds a given threshold ##' ##' @param scn_dirs paste(config$name, config$interventions$scenarios, sep = "_") character vector of scenario directory names @@ -539,6 +209,10 @@ load_hosp_geounit_threshold <- function( warning("You have not specified scenario labels for this function. You may encounter future errors.") } + if(!variable %in% c("incidI", "incidH", "hosp_curr", "incidICU", "icu_curr", "incidVent", "vent_curr", "incidD")){ + warning("You have specified a variable name that may not be supported in the current output. You may encounter future errors") + } + end_date <- as.Date(end_date) if (!is.null(incl_geoids)) { hosp_post_process <- function(x) { @@ -691,7 +365,7 @@ load_jhu_csse_for_report <- function(jhu_data_dir = "JHU_CSSE_Data", states, updateJHUData = TRUE, ...) { - if(!dir.exists(jhu_data_dir)) { + if(!(dir.exists(jhu_data_dir) & length(list.files(jhu_data_dir) > 0))) { ### Download JHU data pull_JHUCSSE_github_data(jhu_data_dir) } else { diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/DevelopmentTeam.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/DevelopmentTeam.Rmd similarity index 91% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/DevelopmentTeam.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/DevelopmentTeam.Rmd index f479e12de..8191a2f0b 100644 --- a/R/pkgs/report_generation/inst/rmarkdown/chunks/DevelopmentTeam.Rmd +++ b/R/pkgs/report.generation/inst/rmarkdown/chunks/DevelopmentTeam.Rmd @@ -1,44 +1,45 @@ - -This report would not be possible without the work of the **COVID-19 Scenario Modeling Pipeline -Working Group**: - -**EPFL** - -* Joseph C. Lemaitre - -**Johns Hopkins Infectious Disease Dynamics** - -* Qifang Bi -* Jacob Fiksel -* M. Kate Grabowski -* Kyra H. Grantz -* Joshua Kaminsky -* Stephen A. Lauer -* Elizabeth C. Lee -* Justin Lessler -* Hannah R. Meredith -* Javier Perez-Saez -* Shaun A. Truelove - - -**University of Utah** - -* Lindsay T. Keegan - -**Developers Without Affiliation** - -* Ian Chamberlain -* Kathryn Kaminsky -* Sam Shah -* Josh Wills - - -**Amazon Web Services** - -* Pierre-Yves Aquilanti -* Karthik Raman -* Arun Subramaniyan -* Greg Thursam -* Anh Tran - - + +This report would not be possible without the work of the **COVID-19 Scenario Modeling Pipeline +Working Group**: + +**EPFL** + +* Joseph C. Lemaitre + +**Johns Hopkins Infectious Disease Dynamics** + +* Qifang Bi +* Juan Dent Hulse +* Jacob Fiksel +* M. Kate Grabowski +* Kyra H. Grantz +* Joshua Kaminsky +* Stephen A. Lauer +* Elizabeth C. Lee +* Justin Lessler +* Hannah R. Meredith +* Javier Perez-Saez +* Shaun A. Truelove + + +**University of Utah** + +* Lindsay T. Keegan + +**Developers Without Affiliation** + +* Ian Chamberlain +* Kathryn Kaminsky +* Sam Shah +* Josh Wills + + +**Amazon Web Services** + +* Pierre-Yves Aquilanti +* Karthik Raman +* Arun Subramaniyan +* Greg Thursam +* Anh Tran + + diff --git a/R/pkgs/report.generation/inst/rmarkdown/chunks/HospModelDesc.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/HospModelDesc.Rmd new file mode 100644 index 000000000..11b7ade9e --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/chunks/HospModelDesc.Rmd @@ -0,0 +1,23 @@ +##### Health outcomes + +We use a statistical model to calculate several key health outcomes, including number of individuals who are hospitalized, admitted to the ICU, ventilatied, and who die, from transmission model output. + +Briefly, we assume some probabilty of hospitalization among all incident infections, $\mathbb{P}(hosp \mid infected)$ and a fixed average time from symptom onset to hospitalization, $d_{inf -> hosp}$. The number of hospitalizations that were infected at time $t_{inf}$ and hospitalized at time $t_{hosp}$ is denoted $n^{hosp}_{t_{inf},t_{hosp}}$, where + +\begin{eqnarray} +n^{hosp}_{t_{inf},\cdot} &\sim Binomial(n^{inf}_{t_{inf}}, \mathbb{P}(hosp \mid infected)) \\ +t_{hosp} &= t_{inf} + d_{inf -> hosp} +\end{eqnarray} + +In the absence of clear data on the overall risk of hospitalization and the asymptomatic fraction, we assumed that the risk of hospitalization is 10 times the risk of death among all infections (the infection fatality ratio, IFR), such that $\mathbb{P}(hosp \mid infected) = 10\cdot\mathbb{P}(death \mid infected)$. Here, we use IFR estimates: `r paste(config$report$formatting$pdeath_labels, sep=", ")`. Those who are hospitalized are at risk of ICU admission ($\mathbb{P}(ICU \mid hosp) =$ `r paste(config$hospitalization$parameters$p_ICU)`), and those admitted to the ICU are at risk of ventilation ($\mathbb{P}(vent \mid ICU) =$ `r paste(config$hospitalization$parameters$p_vent)`). + +\begin{eqnarray} +n^{ICU}_{t_{hosp},\cdot} &\sim Binomial(n^{hosp}_{t_{hosp}}, \mathbb{P}(ICU \mid hosp)) \\ +t_{ICU} &= t_{hosp} + d_{hosp -> ICU} \\ +\\ +n^{vent}_{t_{ICU},\cdot} &\sim Binomial(n^{ICU}_{t_{ICU}}, \mathbb{P}(vent \mid ICU)) \\ +t_{vent} &= t_{ICU} + d_{ICU -> vent} +\\ +n^{death}_{t_{hosp},\cdot} &\sim Binomial(n^{hosp}_{t_{hosp}}, 0.1) \\ +t_{death} &= t_{hosp} + d_{hosp -> death} +\end{eqnarray} \ No newline at end of file diff --git a/R/pkgs/report.generation/inst/rmarkdown/chunks/HospModelDesc_AgeAdjusted.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/HospModelDesc_AgeAdjusted.Rmd new file mode 100644 index 000000000..2676e9b8a --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/chunks/HospModelDesc_AgeAdjusted.Rmd @@ -0,0 +1,25 @@ +##### Health outcomes + +We use a statistical model to calculate several key health outcomes, including number of individuals who are hospitalized, admitted to the ICU, ventilatied, and who die, from transmission model output. These calculations account for the population age distribution in each location and differences in the risk of these health outcomes by age. + +Briefly, we assume some probabilty of death among all incident infections, $\mathbb{P}(death \mid infected)$, known as the infection fatality ratio, and a fixed average time from symptom onset to death, $d_{inf -> death}$. Here, we use IFR estimates: `r paste(config$report$formatting$pdeath_labels, sep=", ")`. The number of deaths that were infected at time $t_{inf}$ and died at time $t_{death}$ is denoted $n^{death}_{t_{inf},t_{death}}$, where + +\begin{eqnarray} +n^{death}_{t_{inf},\cdot} &\sim Binomial(n^{inf}_{t_{inf}}, \mathbb{P}(death \mid infected)) \\ +t_{death} &= t_{inf} + d_{inf -> death} +\end{eqnarray} + +Similarly, those who are infected are at risk of hospitalization, those who are hospitalized are at risk of ICU admission, and those admitted to the ICU are at risk of ventilation. + +\begin{eqnarray} +n^{hosp}_{t_{inf},\cdot} &\sim Binomial(n^{inf}_{t_{inf}}, \mathbb{P}(hosp \mid inf)) \\ +t_{hosp} &= t_{inf} + d_{inf -> hosp} \\ +\\ +n^{ICU}_{t_{hosp},\cdot} &\sim Binomial(n^{hosp}_{t_{hosp}}, \mathbb{P}(ICU \mid hosp)) \\ +t_{ICU} &= t_{hosp} + d_{hosp -> ICU} \\ +\\ +n^{vent}_{t_{ICU},\cdot} &\sim Binomial(n^{ICU}_{t_{ICU}}, \mathbb{P}(vent \mid ICU)) \\ +t_{vent} &= t_{ICU} + d_{ICU -> vent} +\end{eqnarray} + +We estimate age-standardized probabilities of death, hospitalization, and ICU admission; there is currently limited data on the age-specific risk of ventilation among ICU patients, and thus a single, average estimate is used across all locations. We reviewed the literature for relevant age-specific estimates of risk of each health outcome, and use a logistic GAM with penalized cubic spline for age and random effect for study to estimate the risk for 10-year, aggregated age categories. We then apply these age-specific estimates to the population age distribution in each location to get location-specific, age-adjusted estimates. We assume that individuals of all ages are at equal risk of infection. \ No newline at end of file diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/PipelineDescription.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/PipelineDescription.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/PipelineDescription.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/PipelineDescription.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/SEIRModelDesc.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/SEIRModelDesc.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/SEIRModelDesc.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/SEIRModelDesc.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/importation_seeding.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/importation_seeding.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/importation_seeding.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/importation_seeding.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/key_sources.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/key_sources.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/key_sources.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/key_sources.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/limitations.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/limitations.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/limitations.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/limitations.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/limitations_AgeAdjusted.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/limitations_AgeAdjusted.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/limitations_AgeAdjusted.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/limitations_AgeAdjusted.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/planning_models.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/planning_models.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/planning_models.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/planning_models.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/chunks/poisson_seeding.Rmd b/R/pkgs/report.generation/inst/rmarkdown/chunks/poisson_seeding.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/chunks/poisson_seeding.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/chunks/poisson_seeding.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/state_report/skeleton/ReportReferences.bib b/R/pkgs/report.generation/inst/rmarkdown/templates/country_report/skeleton/ReportReferences.bib similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/state_report/skeleton/ReportReferences.bib rename to R/pkgs/report.generation/inst/rmarkdown/templates/country_report/skeleton/ReportReferences.bib diff --git a/R/pkgs/report.generation/inst/rmarkdown/templates/country_report/skeleton/skeleton.Rmd b/R/pkgs/report.generation/inst/rmarkdown/templates/country_report/skeleton/skeleton.Rmd new file mode 100644 index 000000000..8690289b5 --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/templates/country_report/skeleton/skeleton.Rmd @@ -0,0 +1,388 @@ +--- +title: "[COUNTRY] Scenario Report" +author: "" +output: + html_document: + df_print: paged + fig_caption: true + theme: journal +bibliography: ReportReferences.bib +params: + continue_on_error: TRUE + config_file: "config.yml" + country_iso3: "[COUNTRY ISO3]" #country ISO3...must provided + +--- + +Prepared by [Johns Hopkins ID Dynamics](https://iddynamics.jhsph.edu/) Working Group +Updated `r Sys.Date()` + +**FOR PLANNING PURPOSES ONLY: NOT A FORECAST** + +```{r setup, include=F} + +nfiles <- NA ## set to a number for test reports. +ncores <- 25 ## number of cores to use for loading data + + + +## Block with general knitr options, libray load, etc. Nothing specific to the project. +knitr::opts_knit$set(root.dir = "..") ##Assumes we are in the notebook directory +knitr::opts_chunk$set( + echo = FALSE, + fig.align = "center", + message = FALSE, + warning = FALSE, + error = params$continue_on_error, + cache.lazy = FALSE, + bitmapType = "cairo" + ) +knitr::opts_knit$set(eval.after = 'fig.cap') ##Allows us to set a variable to figure caption in the block + +options(scipen=999) + +#Preamble +library(tidyverse) +library(covidcommon) +library(report.generation) +library(covidImportation) +library(doParallel) +library(ggpubr) +library(tidyselect) +library(ISOcodes) + +nfiles2 <- ifelse(nfiles >= 50, nfiles, 50) ## for plotting + +if (params$country_iso3=="[COUNTRY ISO3]") {stop("Must define a target country by ISO3 code.")} + +``` + +```{r load_config} +reportCountryISO3 <- params$country_iso3 + +## Block loads the config file and geodata +config <- covidcommon:::load_config(params$config_file) +geodata <- load_geodata_file(file.path(config$spatial_setup$base_path, config$spatial_setup$geodata), + geoid_len=config$spatial_setup$geoid_len) +included_geoids <- (geodata %>% filter(admin0==reportCountryISO3))$geoid + +scn_dirs <- paste(config$name,config$interventions$scenarios,sep='_') + +``` + +```{r load_shapefile} +## Load shapefile +shp <- load_shape_file(filename = file.path(config$spatial_setup$base_path, config$spatial_setup$shapefile_name), + to_lower = TRUE, + geoid_len = 5) +``` + +```{r config_vals} +nscenarios <- length(config$interventions$scenarios) +sim_start_date <- config$start_date +sim_end_date <- config$end_date +report_loc <- config$report_location_name +modeled_loc <- paste(config$spatial_setup$modeled_states, collapse = ", ") +census_year <- config$spatial_setup$census_year +incub_period <- 1/eval(parse(text=config$seir$parameters$sigma)) +infect_period <- c(1/(eval(parse(text=config$seir$parameters$gamma$high))), + 1/(eval(parse(text=config$seir$parameters$gamma$low)))) +R0_range <- c(config$seir$parameters$R0s$low, config$seir$parameters$R0s$high) + +# use the ISOcodes package to get the correct name for each country +modeled_states <- ISOcodes::ISO_3166_1$Name[which(ISOcodes::ISO_3166_1$Alpha_3 %in% config$spatial_setup$modeled_states)] +``` + +We compared `r nscenarios` intervention scenarios for model simulations from `r print_pretty_date(sim_start_date)` through `r print_pretty_date(sim_end_date)`: + +[CHANGE BELOW DETAILS ABOUT INTERVENTIONS] + +1. *Lockdown followed by Worst-Case Uncontrolled Spread:* This scenario has country-wide school closures from March 13-19 followed by a country-wide stay-at-home policy from March 19 through May 14. All interventions are then removed (back to worst-case uncontrolled transmission) starting May 15. + +1. *Lockdown followed by Test and Isolate:* This scenario has country-wide school closures from March 13-19 followed by a country-wide stay-at-home policy from March 19 through May 14. From May 15 through December 31, there is a targeted test and isolate strategy similar to that implemented in South Korea. + +1. *Lockdown followed by Moderate Social Distancing:* This scenario has country-wide school closures from March 13-19 followed by a country-wide stay-at-home policy from March 19 through May 14. From May 15 through December 31, there is moderately restrictive social distancing similar to that in US cities during the 1918 influenza pandemic. + +[MAYBE WE SHOULD THEN ADD SOME SUMMARY STATEMENTS ABOUT OUR FINDINGS?] + +[ALTER BELOW DESCRIPTIVE STRING FOR SCENARIO CAPTIONS] + +```{r rmd_formatting} +scen_desc_str <- "three scenarios with 8-week lockdown followed by 1) worst-case uncontrolled spread, 2) targeted testing and isolation, and 3) moderately restrictive social distancing" +fig_counter <- 1 +tab_counter <- 1 +``` + +```{r load_hosp_geocombined_totals} + +doParallel::registerDoParallel(ncores) + +country_hosp_totals <- list() +for (i in 1:length(config$hospitalization$parameters$p_death_names)) { + country_hosp_totals[[i]] <- load_hosp_geocombined_totals(scn_dirs, + num_files = nfiles, + scenariolabels = config$report$formatting$scenario_labels, + name_filter= config$hospitalization$parameters$p_death_names[i], + incl_geoids = included_geoids, + geoid_len = 5, + file_extension="auto") %>% + mutate(pdeath=config$hospitalization$parameters$p_death[i]) +} + +country_hosp_totals <- dplyr::bind_rows(country_hosp_totals) + +doParallel::stopImplicitCluster() +registerDoSEQ() +``` + +```{r summary_fig, fig.cap = cap} +plot_ts_hosp_state_sample(country_hosp_totals, + varname = "NhospCurr", + varlabel = "Daily hospital occupancy", + scenario_labels = config$report$formatting$scenario_labels, + scenario_cols = config$report$formatting$scenario_colors, + sim_start_date = config$start_date, + sim_end_date = config$end_date, + pdeath_level = 0.01) + +cap <- paste0("**Fig. ", fig_counter, "**: Daily hospital occupancy for 15 simulation realizations for ", scen_desc_str, "at 1 % IFR assumptions.") +``` + +```{r load_cum_inf_geounit_dates} +###Load cumulative infections on specific dates +doParallel::registerDoParallel(ncores) + +cum_inf_dates <- load_cum_inf_geounit_dates(scn_dirs, + num_files = nfiles, + display_dates = config$report$formatting$display_dates, + scenariolabels = config$report$formatting$scenario_labels, + incl_geoids = included_geoids, + geoid_len = 5, + file_extension="auto") + +doParallel::stopImplicitCluster() +registerDoSEQ() +``` + +```{r load_csse_data} +## load CSSE data +jhu_dat <- load_jhu_csse_for_report(states = modeled_states, update=TRUE) ## change to update=FALSE after the data is pulled for the first time +``` + + +```{r, child=reference_chunk("planning_models.Rmd")} +``` + +## Country Level Results + +### Summary + +`r paste0("**Tab.", tab_counter, "**: Summary across", scen_desc_str, ". Estimates are presented across", length(config$report$formatting$display_dates)+1, "time periods for 1% infection fatality ratio (IFR) assumptions.")` + +```{r scn_time_sum} +make_scn_time_summary_table_withVent(country_hosp_totals %>% dplyr::filter(pdeath==.01), + config$report$formatting$display_dates, + pi_low = 0.025, + pi_high = 0.975, + round_digit = -1) +tab_counter <- tab_counter+1 +``` + + +### Diversity of Possible Outcomes + +```{r death_histograms, fig.cap = cap, fig.width = 12} +##Chunk plots the distribution of hospitalizations at multiple time points + +show_dates <- config$report$formatting$display_dates +hist_plts <- list() + +for (i in 1:length(show_dates)) { + hist_plts[[i]] <- plot_hist_incidHosp_state(country_hosp_totals, + var_name = "NincidHosp", + scenario_labels = config$report$formatting$scenario_labels, + scenario_cols = config$report$formatting$scenario_colors, + sim_start_date = config$start_date, + summary_date = show_dates[i], + pdeath_level = 0.01) +} + +ggpubr::ggarrange(plotlist=hist_plts, nrow=1) + + +cap <- paste("**Fig.", fig_counter, "**: Distribution of cumulative hospital admissions for", scen_desc_str, "at 1% IFR assumptions. Each bar represents a bin of 2,000 hospitalizations.") +fig_counter <- fig_counter+1 +``` + +## Scenario Summaries + +[IF AVAILABLE, LOAD BED DATA AS IN THE EXAMPLE THAT FOLLOWS] +```{r load_special_data} + +## source("R/load_beds_by_county_[COUNTRY].R") ## R/load_beds_by_county_early_march.R +## bedtype <- "staffed ICU" +## vname <- "n_icu_bed_staffed" +## hosp_vname <- "icu_curr" +## occup_assum <- 0.68 ## assumes ICU occupancy is 68% per county over time on non-COVID patients +## bedtype_label <- paste("Available", bedtype, "ICU beds, calculated as", (1-occup_assum)*100, "% of", bedtype, "Beds") + +## beddata <- load_beds_by_county_md(filename = "data/east-coast/md_hospbeddata.csv", ## "data/DPH/GACH ICU Beds By County Early March.xlsx" +## shapefile = shp, +## varname = vname, +## bed_percentage = 1-occup_assum) + + +``` + +```{r load_hosp_geounit_threshold} +## doParallel::registerDoParallel(ncores) + +## ## dataframe to show when hosp_curr exceeds bed data by county +## thresholddat <- load_hosp_geounit_threshold(scn_dirs, +## num_files = nfiles, +## threshold = beddata, +## name_filter = "high", +## variable = hosp_vname, +## end_date = config$end_date, +## incl_geoids = included_geoids, +## scenario_labels = config$report$formatting$scenario_labels, +## geoid_len = 5) +## doParallel::stopImplicitCluster() +## registerDoSEQ() +``` + +### Scenario 1: [Scenario Name] + +1. *Lockdown followed by Worst-Case Uncontrolled Spread:* This scenario has country-wide school closures from March 13-19 followed by a country-wide stay-at-home policy from March 19 through May 14. All interventions are then removed (back to worst-case uncontrolled transmission) starting May 15. + + +`r paste("**Tab.", tab_counter, "** Country-level summary for", config$report$formatting$scenario_labels[1], "scenario reported for the period from", sim_start_date, "through the dates specified by the column headers.")` + +```{r scn_state_table1} +make_scn_state_table(config$report$formatting$scenario_labels[1], + country_hosp_totals, + table_dates = config$report$formatting$display_dates, + pdeath_labels = config$report$formatting$pdeath_labels, + pdeath_filecode = config$hospitalization$parameters$p_death) + +tab_counter <- tab_counter+1 +``` + + +```{r ARmaps1, fig.cap = cap} +ARmap1 <- plot_geounit_attack_rate_map(cum_inf_dates, + geodata, + shp, + scenariolabel = config$report$formatting$scenario_labels[1], + display_date = config$report$formatting$display_dates[1], + viridis_palette = "plasma", + popnodes = config$spatial_setup$popnodes) + +ARmap2 <- plot_geounit_attack_rate_map(cum_inf_dates, + geodata, + shp, + scenariolabel = config$report$formatting$scenario_labels[1], + display_date = config$report$formatting$display_dates[2], + viridis_palette = "viridis", + popnodes = config$spatial_setup$popnodes) + +ARmap3 <- plot_geounit_attack_rate_map(cum_inf_dates, + geodata, + shp, + scenariolabel = config$report$formatting$scenario_labels[1], + display_date = config$report$formatting$display_dates[3], + viridis_palette = "cividis") +cowplot::plot_grid(ARmap1, ARmap2, ARmap3, ncol=3) + +cap <- paste("**Fig.", fig_counter, "** County-level map of infections per 10,000 for", config$report$formatting$scenario_labels[1], " strategy.") +fig_counter <- fig_counter+1 +``` + + +[UNCOMMENT THIS IF THE BEDDATA EXISTS] +```{r plot_threshold1, fig.cap = cap, fig.height = 7} +# plot_event_time_by_geoid( +# hosp_county_peaks = thresholddat, +# shapefile = shp %>% mutate(name=as.character(name)), +# scenario_labels = config$report$formatting$scenario_labels[1], +# scenario_colors = config$report$formatting$scenario_colors[1], +# time_caption = paste("Time when", bedtype, "occupancy exceeds", bedtype, "bed capacity"), +# geoid_caption = "County", +# value_name = "threshold_value", +# value_label = bedtype_label, +# start_date = config$start_date, +# end_date = config$end_date +# ) +# cap <- paste("**Fig.", fig_counter, "** Time when COVID-19", bedtype, "occupancy exceeds in-county", bedtype, "bed capacity for", config$report$formatting$scenario_labels[1], "scenario at 1% IFR assumptions. We assume that occupancy is", occup_assum*100, "% over time for non-COVID patients. Points indicate the median and lines indicate the interquartile range of model estimates. Counties which never exceed capacity will have no estimate plotted.") +# fig_counter <- fig_counter+1 +``` + + + +## Appendix 1: Methods + +### Pipeline Overview + +```{r, child=reference_chunk("PipelineDescription.Rmd")} +``` + +### Technical Details + +#### Data Sources + +* County-level confirmed SARS-COV-2 infections: [JHU CSSE COVID-19 Data Portal](https://coronavirus.jhu.edu/map.html) + + +* US Census Bureau 2010 county commuting flows and `r census_year` population data + +Our model and report make the following key assumptions: + +* Mean incubation period: `r incub_period` days + +* Infectious period: ranges from `r paste(infect_period, collapse = "-")` days + +* R0: `r paste(R0_range, collapse = "-")` + +* We examine 3 infection fatality rates (IFR) throughout our report: `r paste0(config$hospitalization$parameters$p_death * 100, collapse = ", ")`%. + +* We assume that `r paste0(config$hospitalization$parameters$p_death_rate * 100, "%")` of all hospitalized patients will die and adjust overall hospitalization rates to match the given IFR for a scenario. + +* Hospitalizations admitted to the ICU: `r paste0(config$hospitalization$parameters$p_ICU*100, "%")` + +* ICU admissions that are ventilated: `r paste0(config$hospitalization$parameters$p_vent*100, "%")` + + + +#### Epidemic Simulation + +[CHOOSE ONE OF THESE CHUNKS DEPENDING ON SEEDING. POISSON SEEDING TEXT SAYS 10X] + + +#### SEIR Model + +```{r, child=reference_chunk("SEIRModelDesc.Rmd")} +``` + +### Limitations + +```{r, child=reference_chunk("limitations.Rmd")} +``` + +### Key Sources + +```{r, child=reference_chunk("key_sources.Rmd")} +``` + +## Development Team + +[ADD NAMES AND RECOMPILE PACKAGE AS NECESSARY] +```{r, child=reference_chunk("DevelopmentTeam.Rmd")} +``` + +## Bibliography diff --git a/R/pkgs/report.generation/inst/rmarkdown/templates/country_report/template.yaml b/R/pkgs/report.generation/inst/rmarkdown/templates/country_report/template.yaml new file mode 100644 index 000000000..b870cb408 --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/templates/country_report/template.yaml @@ -0,0 +1,2 @@ +name: Multi scenario country report +description: Basic templage for making a multi-scenario country report. diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/county_report/skeleton/ReportReferences.bib b/R/pkgs/report.generation/inst/rmarkdown/templates/county_report/skeleton/ReportReferences.bib similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/county_report/skeleton/ReportReferences.bib rename to R/pkgs/report.generation/inst/rmarkdown/templates/county_report/skeleton/ReportReferences.bib diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/county_report/skeleton/skeleton.Rmd b/R/pkgs/report.generation/inst/rmarkdown/templates/county_report/skeleton/skeleton.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/county_report/skeleton/skeleton.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/templates/county_report/skeleton/skeleton.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/county_report/template.yaml b/R/pkgs/report.generation/inst/rmarkdown/templates/county_report/template.yaml similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/county_report/template.yaml rename to R/pkgs/report.generation/inst/rmarkdown/templates/county_report/template.yaml diff --git a/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/skeleton/ReportReferences.bib b/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/skeleton/ReportReferences.bib new file mode 100644 index 000000000..6f3940375 --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/skeleton/ReportReferences.bib @@ -0,0 +1,142 @@ +% Encoding: UTF-8 + +@Article{Bootsma2007, + author = {Martin C. J. Bootsma and Neil M. Ferguson}, + journal = {Proceedings of the National Academy of Sciences}, + title = {The effect of public health measures on the 1918 influenza pandemic in U.S. cities}, + year = {2007}, + month = {apr}, + number = {18}, + pages = {7588--7593}, + volume = {104}, + doi = {10.1073/pnas.0611071104}, + publisher = {Proceedings of the National Academy of Sciences}, +} + +@Article{Jackson2020, + author = {Michael L Jackson and Gregory R Hart and Denise J McCulloch and Amanda Adler and Elisabeth Brandstetter and Kairsten Fay and Peter Han and Kirsten Lacombe and Jover Lee and Thomas Sibley and Deborah A Nickerson and Mark Rieder and Lea Starita and Janet A Englund and Trevor Bedford and Helen Chu and Michael Famulare and}, + title = {Effects of weather-related social distancing on city-scale transmission of respiratory viruses}, + year = {2020}, + month = {mar}, + doi = {10.1101/2020.03.02.20027599}, + publisher = {Cold Spring Harbor Laboratory}, +} + +@Article{Cauchemez2008, + author = {Simon Cauchemez and Alain-Jacques Valleron and Pierre-Yves Boëlle and Antoine Flahault and Neil M. Ferguson}, + journal = {Nature}, + title = {Estimating the impact of school closure on influenza transmission from Sentinel data}, + year = {2008}, + month = {apr}, + number = {7188}, + pages = {750--754}, + volume = {452}, + doi = {10.1038/nature06732}, + publisher = {Springer Science and Business Media {LLC}}, +} + +@Article{Litvinova2019, + author = {Maria Litvinova and Quan-Hui Liu and Evgeny S. Kulikov and Marco Ajelli}, + journal = {Proceedings of the National Academy of Sciences}, + title = {Reactive school closure weakens the network of social interactions and reduces the spread of influenza}, + year = {2019}, + month = {jun}, + number = {27}, + pages = {13174--13181}, + volume = {116}, + doi = {10.1073/pnas.1821298116}, + publisher = {Proceedings of the National Academy of Sciences}, +} + +@Article{Bi2020, + author = {Qifang Bi and Yongsheng Wu and Shujiang Mei and Chenfei Ye and Xuan Zou and Zhen Zhang and Xiaojian Liu and Lan Wei and Shaun A Truelove and Tong Zhang and Wei Gao and Cong Cheng and Xiujuan Tang and Xiaoliang Wu and Yu Wu and Binbin Sun and Suli Huang and Yu Sun and Juncen Zhang and Ting Ma and Justin Lessler and Teijian Feng}, + title = {Epidemiology and Transmission of {COVID}-19 in Shenzhen China: Analysis of 391 cases and 1,286 of their close contacts}, + year = {2020}, + month = {mar}, + doi = {10.1101/2020.03.03.20028423}, + publisher = {Cold Spring Harbor Laboratory}, +} + +@Article{Riou2020, + author = {Julien Riou and Christian L. Althaus}, + title = {Pattern of early human-to-human transmission of Wuhan 2019-{nCoV}}, + year = {2020}, + month = {jan}, + doi = {10.1101/2020.01.23.917351}, + publisher = {Cold Spring Harbor Laboratory}, +} + +@Article{Majumder2020, + author = {Maimuna Majumder and Kenneth D. Mandl}, + journal = {{SSRN} Electronic Journal}, + title = {Early Transmissibility Assessment of a Novel Coronavirus in Wuhan, China}, + year = {2020}, + doi = {10.2139/ssrn.3524675}, + publisher = {Elsevier {BV}}, +} + +@Article{Zhao2020, + author = {Shi Zhao and Qianyin Lin and Jinjun Ran and Salihu S. Musa and Guangpu Yang and Weiming Wang and Yijun Lou and Daozhou Gao and Lin Yang and Daihai He and Maggie H. Wang}, + journal = {International Journal of Infectious Diseases}, + title = {Preliminary estimation of the basic reproduction number of novel coronavirus (2019-{nCoV}) in China, from 2019 to 2020: A data-driven analysis in the early phase of the outbreak}, + year = {2020}, + month = {mar}, + pages = {214--217}, + volume = {92}, + doi = {10.1016/j.ijid.2020.01.050}, + publisher = {Elsevier {BV}}, +} + +@Article{Halpern2015, + author = {Neil A. Halpern and Stephen M. Pastores}, + journal = {Critical Care Medicine}, + title = {Critical care medicine beds, use, occupancy and costs in the United States: a methodological review}, + year = {2015}, + month = {nov}, + number = {11}, + pages = {2452-2459}, + volume = {43}, + doi = {10.1097/CCM.0000000000001227}, + publisher = {Critical Care Medicine}, +} + +@Article{Metcalf2011, + author = {C.J.E. Metcalf and C. V. Munayco and C. Viboud and G. Chowell and B.T. Grenfell and O.N. Bjornstad}, + journal = {Journal of the Royal Society Interface}, + title = {Rubella metapopulation dynamics and importance of spatial coupling to the risk of congenital rubella syndrome in Peru}, + year = {2011}, + pages = {369-376}, + volume = {8}, + issue = {56}, +} + +@Article{Word2012, + author = {D.P. Word and D.A. Cummings and D.S. Burke and S. Iamsirithaworn and C.D. Laird}, + journal = {Journal of the Royal Society Interface}, + title = {A nonlinear programming approach for estimation of transmission parameters in childhood infectious disease using a continuous time model}, + year = {2012}, + pages = {1983-1997}, + volume = {9}, + issue = {73}, +} + +@Article{Finkenstadt2002, + author = {B.F. Finkenstadt and O.N. Bjornstad and B.T. Grenfell}, + journal = {Biostatistics}, + title = {A stochastic model for extinction and recurrennce of epidemics: estimation and inference for measles outbreaks}, + year = {2002}, + pages = {493-510}, + volume = {3}, + issue = {4}, +} + +@Article{Becker2017, + author = {A.D. Becker and B.T. Grenfell}, + journal = {PLOS One}, + title = {tSIR: An R package for time-series Susceptible-Infected-Recovered models of epidemics}, + year = {2017}, + volume = {12}, + issue = {9}, +} + +@Comment{jabref-meta: databaseType:bibtex;} diff --git a/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/skeleton/skeleton.Rmd b/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/skeleton/skeleton.Rmd new file mode 100644 index 000000000..699d5b8a1 --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/skeleton/skeleton.Rmd @@ -0,0 +1,368 @@ +--- +title: "Integration testing report" +author: "" +output: + html_document: + df_print: paged + fig_caption: true + theme: journal +bibliography: ReportReferences.bib +params: + continue_on_error: TRUE + config_file: "config.yml" + state_usps: "[STATE USPS]" #state USPS...must provided + +--- + +Prepared by [Johns Hopkins ID Dynamics](https://iddynamics.jhsph.edu/) Working Group +Updated `r Sys.Date()` + +**FOR PLANNING PURPOSES ONLY: NOT A FORECAST** + +```{r setup, include=F} +## Block with general knitr options, libray load, etc. Nothing specific to the project. +knitr::opts_knit$set(root.dir = "../..") ##Assumes we are in a subdirectory of notebooks +knitr::opts_chunk$set( + echo = FALSE, + fig.align = "center", + message = FALSE, + warning = FALSE, + error = params$continue_on_error, + cache.lazy = FALSE, + bitmapType = "cairo" + ) +knitr::opts_knit$set(eval.after = 'fig.cap') ##Allows us to set a variable to figure caption in the block + +options(scipen=999) + +#Preamble +library(tidyverse) +library(covidcommon) +library(report.generation) +library(covidImportation) +library(doParallel) + +nfiles <- 2 ## set to a number for test reports. +nfiles2 <- ifelse(nfiles <= 50, nfiles, 50) ## for plotting + +if (params$state_usps=="[STATE USPS]") {stop("Must define a target state by USPS code.")} +ncores <- 1 ## number of cores to use for loading data + +``` + +```{r load_config} +reportStateUSPS <- params$state_usps + +## Block loads the config file and geodata +config <- covidcommon:::load_config(params$config_file) +geodata <- load_geodata_file(file.path(config$spatial_setup$base_path, config$spatial_setup$geodata), + geoid_len=5) +included_geoids <- (geodata %>% filter(USPS==reportStateUSPS))$geoid + +scn_dirs <- paste(config$name,config$interventions$scenarios,sep='_') + +``` + +```{r load_shapefile} +## Load shapefile +shp <- load_shape_file(filename = file.path(config$spatial_setup$base_path, config$spatial_setup$shapefile_name), + to_lower = TRUE, + geoid_len = 5) +``` + +```{r config_vals} +nscenarios <- length(config$interventions$scenarios) +sim_start_date <- config$start_date +sim_end_date <- config$end_date +report_loc <- config$report_location_name +modeled_loc <- paste(config$spatial_setup$modeled_states, collapse = ", ") +census_year <- config$spatial_setup$census_year +incub_period <- 1/eval(parse(text=config$seir$parameters$sigma)) +infect_period <- c(1/(eval(parse(text=config$seir$parameters$gamma$high))), + 1/(eval(parse(text=config$seir$parameters$gamma$low)))) +R0_range <- c(config$seir$parameters$R0s$low, config$seir$parameters$R0s$high) +modeled_states <- state.name[which(state.abb %in% config$spatial_setup$modeled_states)] +``` + +We compared `r nscenarios` intervention scenarios for model simulations from `r print_pretty_date(sim_start_date)` through `r print_pretty_date(sim_end_date)`: + + +```{r rmd_formatting} +scen_desc_str <- "scenario description" +fig_counter <- 1 +tab_counter <- 1 +``` + + +## Load the data + +```{r load_cum_inf_geounit_dates} +###Load cumulative infections on specific dates +doParallel::registerDoParallel(ncores) +cum_inf_dates <- load_cum_inf_geounit_dates(scn_dirs, + num_files = nfiles, + scenariolabels = config$report$formatting$scenario_labels, + name_filter= config$hospitalization$parameters$p_death_names[1], ## includes only one pdeath because interest is only in infections here + incl_geoids = included_geoids, + geoid_len = 5, + file_extension="auto") %>% + mutate(pdeath=config$hospitalization$parameters$p_death[1]) + +doParallel::stopImplicitCluster() +registerDoSEQ() +``` + +```{r load_hosp_geocombined_totals} + +doParallel::registerDoParallel(ncores) + +state_hosp_totals <- list() +for (i in 1:length(config$hospitalization$parameters$p_death_names)) { + state_hosp_totals[[i]] <- load_hosp_geocombined_totals(scn_dirs, + num_files = nfiles, + scenariolabels = config$report$formatting$scenario_labels, + name_filter= config$hospitalization$parameters$p_death_names[i], + incl_geoids = included_geoids, + geoid_len = 5, + file_extension="auto") %>% + mutate(pdeath=config$hospitalization$parameters$p_death[i]) +} + +state_hosp_totals <- dplyr::bind_rows(state_hosp_totals) + +doParallel::stopImplicitCluster() +registerDoSEQ() +``` + +[THE COMMENTED LOAD FUNCTIONS ARE DEPENDENT ON LOCATION-SPECIFIC DATA INPUTS] + +```{r load_special_data} + +## source("R/load_beds_by_county_[STATE].R") ## R/load_beds_by_county_early_march.R +## bedtype <- "staffed ICU" +## vname <- "n_icu_bed_staffed" +## hosp_vname <- "icu_curr" +## occup_assum <- 0.68 ## assumes ICU occupancy is 68% per county over time on non-COVID patients +## bedtype_label <- paste("Available", bedtype, "ICU beds, calculated as", (1-occup_assum)*100, "% of", bedtype, "Beds") + +## beddata <- load_beds_by_county_md(filename = "data/east-coast/md_hospbeddata.csv", ## "data/DPH/GACH ICU Beds By County Early March.xlsx" +## shapefile = shp, +## varname = vname, +## bed_percentage = 1-occup_assum) + + +``` + +```{r load_hosp_geounit_threshold} +## doParallel::registerDoParallel(ncores) + +## ## dataframe to show when hosp_curr exceeds bed data by county +## thresholddat <- load_hosp_geounit_threshold(scn_dirs, +## num_files = nfiles, +## threshold = beddata, +## name_filter = "high", +## variable = hosp_vname, +## end_date = config$end_date, +## incl_geoids = included_geoids, +## scenario_labels = config$report$formatting$scenario_labels, +## geoid_len = 5) +## doParallel::stopImplicitCluster() +## registerDoSEQ() +``` + +```{r load_hosp_geounit_relative_to_threshold} +## doParallel::registerDoParallel(ncores) + +## ## dataframe to show when hosp_curr exceeds bed data by county +## hosp_geounit_relative <- load_hosp_geounit_relative_to_threshold(scn_dirs, +## num_files = nfiles, +## threshold = beddata, +## name_filter = "high", +## variable = hosp_vname, +## end_date = config$end_date, +## incl_geoids = included_geoids, +## scenario_labels = config$report$formatting$scenario_labels, +## geoid_len = 5) +## doParallel::stopImplicitCluster() +## registerDoSEQ() +``` + +[TRYING TO DEPRECATE LOAD CSSE DATA] + +```{r load_csse_data} +## load CSSE data +jhu_dat <- load_jhu_csse_for_report(states = modeled_states, update=TRUE) ## change to update=FALSE after the data is pulled for the first time +``` + +## Plot Things + +```{r summary_fig, fig.cap = cap} +plot_ts_hosp_state_sample(state_hosp_totals, + varname = "NhospCurr", + varlabel = "Daily hospital occupancy", + scenario_labels = config$report$formatting$scenario_labels, + scenario_cols = config$report$formatting$scenario_colors, + sim_start_date = config$start_date, + sim_end_date = config$end_date, + pdeath_level = 0.01) + +cap <- paste0("**Fig. ", fig_counter, "**: Daily hospital occupancy for 15 simulation realizations for ", scen_desc_str, "at 1 % IFR assumptions.") +``` + +```{r death_histograms, fig.cap = cap, fig.width = 12} +##Chunk plots the distribution of hospitalizations at multiple time points + +show_dates <- config$report$formatting$display_dates +hist_plts <- list() + +for (i in 1:length(show_dates)) { + hist_plts[[i]] <- plot_hist_incidHosp_state(state_hosp_totals, + var_name = "NincidHosp", + scenario_labels = config$report$formatting$scenario_labels, + scenario_cols = config$report$formatting$scenario_colors, + sim_start_date = config$start_date, + summary_date = show_dates[i], + pdeath_level = 0.01) +} + +ggpubr::ggarrange(plotlist=hist_plts, nrow=1) + + +cap <- paste("**Fig.", fig_counter, "**: Distribution of cumulative hospital admissions for", scen_desc_str, "at 1% IFR assumptions. Each bar represents a bin of 2,000 hospitalizations.") +fig_counter <- fig_counter+1 +``` + +```{r ARmaps1, fig.cap = cap} +ARmap1 <- plot_geounit_attack_rate_map(cum_inf_dates, + geodata, + shp, + scenariolabel = config$report$formatting$scenario_labels[1], + display_date = config$report$formatting$display_dates[1], + viridis_palette = "plasma", + popnodes = config$spatial_setup$popnodes) + +cowplot::plot_grid(ARmap1, ncol=1) + +cap <- paste("**Fig.", fig_counter, "** County-level map of infections per 10,000 for", config$report$formatting$scenario_labels[1], " strategy.") +fig_counter <- fig_counter+1 +``` + +```{r maps2, fig.cap = cap} +map2 <- plot_geounit_map(cum_inf_dates, + plot_var = "N", + geodata, + shp, + scenariolabel = config$report$formatting$scenario_labels[1], + display_date = config$report$formatting$display_dates[1], + popnodes = config$spatial_setup$popnodes) + +cowplot::plot_grid(map3, ncol=1) + +cap <- paste("**Fig.", fig_counter, "** Second county-level map of infections per 10,000 for", config$report$formatting$scenario_labels[1], " strategy.") +fig_counter <- fig_counter+1 +``` + +```{r plot_modelVsObs_all, fig.height = 7} +compare_plts <- plot_model_vs_obs(state_hosp_totals = state_hosp_totals, + jhu_obs_dat = jhu_dat, + scenario_labels = config$report$formatting$scenario_labels, + scenario_cols = config$report$formatting$scenario_colors, + pdeath_level = params$pdeath_default, + obs_data_col = 'black', + ci.L = 0.025, + ci.U = 0.975, + sim_start_date = sim_start_date, + sim_end_date = "2020-05-14", + assumed_reporting_rate = 0.2) +ggpubr::ggarrange(plotlist=compare_plts, ncol=1) +``` + + +[UNCOMMENT THESE IF THE BEDDATA EXISTS] + +```{r plot_threshold1, fig.cap = cap, fig.height = 7} +# plot_event_time_by_geoid( +# hosp_county_peaks = thresholddat, +# shapefile = shp %>% mutate(name=as.character(name)), +# scenario_labels = config$report$formatting$scenario_labels[1], +# scenario_colors = config$report$formatting$scenario_colors[1], +# time_caption = paste("Time when", bedtype, "occupancy exceeds", bedtype, "bed capacity"), +# geoid_caption = "County", +# value_name = "threshold_value", +# value_label = bedtype_label, +# start_date = config$start_date, +# end_date = config$end_date +# ) +# cap <- paste("**Fig.", fig_counter, "** Time when COVID-19", bedtype, "occupancy exceeds in-county", bedtype, "bed capacity for", config$report$formatting$scenario_labels[1], "scenario at 1% IFR assumptions. We assume that occupancy is", occup_assum*100, "% over time for non-COVID patients. Points indicate the median and lines indicate the interquartile range of model estimates. Counties which never exceed capacity will have no estimate plotted.") +# fig_counter <- fig_counter+1 +``` + +```{r plot_hosp_threshold_comparisons, fig.width = 10, fig.cap = cap, fig.height = 9} +# fig_label <- c("**Continued lockdown**", "**Slow**-paced reopening", "**Moderate**-paced reopening", "**Fast**-paced reopening") +# hosp_geounit_relative <- hosp_geounit_relative %>% +# mutate(scenario_label = case_when(scenario_label == "Continued lockdown" ~ "**Continued lockdown**", +# scenario_label == "Slow-paced reopening" ~ "**Slow**-paced reopening", +# scenario_label == "Moderate-paced reopening" ~ "**Moderate**-paced reopening", +# scenario_label == "Fast-paced reopening" ~ "**Fast**-paced reopening")) +# +# plot <- plot_needs_relative_to_threshold_heatmap(hosp_geounit_relative, +# shapefile = shp, +# scenario_labels = fig_label, +# legend_title = "excess hospital \nbeds needed", +# value_name = "threshold_value", +# value_label = "total hospital bed capacity", +# start_date = "2020-04-01", +# end_date = sim_end_date, +# incl_geoids = included_geoids) + +# scale_x_date(date_breaks = "8 weeks") + +# theme(strip.text = ggtext::element_markdown()) +# +# plot$data <- plot$data %>% +# mutate(name = factor(name, levels = sort(unique(geo_names$name), decreasing=TRUE))) +# +# plot +# +# cap <- paste("**Fig.", fig_counter, " **: County-level hospital bed needs, as log proportion of total non-surge hospital bed capacity, for", scen_desc_str, "at 1% IFR assumptions. We assume that occupancy is 0% over time for non-COVID patients") +# +# +# fig_counter <- fig_counter+1 + +``` + + + +## Some tables + +```{r scn_state_table1} +make_scn_state_table_withVent(config$report$formatting$scenario_labels[1], + state_hosp_totals, + table_dates = config$report$formatting$display_dates, + pdeath_labels = config$report$formatting$pdeath_labels, + pdeath_filecode = config$hospitalization$parameters$p_death) + +tab_counter <- tab_counter+1 +``` + + +```{r scn_time_sum} +make_scn_time_summary_table_withVent(state_hosp_totals %>% dplyr::filter(pdeath==.01), + config$report$formatting$display_dates, + pi_low = 0.025, + pi_high = 0.975, + round_digit = -1) +tab_counter <- tab_counter+1 +``` + + + +## Reference chunks + +```{r, child=reference_chunk("planning_models.Rmd")} +``` + +```{r, child=reference_chunk("PipelineDescription.Rmd")} +``` + +```{r, child=reference_chunk("poisson_seeding.Rmd")} +``` + diff --git a/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/template.yaml b/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/template.yaml new file mode 100644 index 000000000..cf3633a2d --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/templates/integration_testing_report/template.yaml @@ -0,0 +1,2 @@ +name: Integration testing report +description: Basic template with all active functions for integration testing diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/multi_county_report/skeleton/ReportReferences.bib b/R/pkgs/report.generation/inst/rmarkdown/templates/multi_county_report/skeleton/ReportReferences.bib similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/multi_county_report/skeleton/ReportReferences.bib rename to R/pkgs/report.generation/inst/rmarkdown/templates/multi_county_report/skeleton/ReportReferences.bib diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/multi_county_report/skeleton/skeleton.Rmd b/R/pkgs/report.generation/inst/rmarkdown/templates/multi_county_report/skeleton/skeleton.Rmd similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/multi_county_report/skeleton/skeleton.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/templates/multi_county_report/skeleton/skeleton.Rmd diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/multi_county_report/template.yaml b/R/pkgs/report.generation/inst/rmarkdown/templates/multi_county_report/template.yaml similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/multi_county_report/template.yaml rename to R/pkgs/report.generation/inst/rmarkdown/templates/multi_county_report/template.yaml diff --git a/R/pkgs/report.generation/inst/rmarkdown/templates/state_report/skeleton/ReportReferences.bib b/R/pkgs/report.generation/inst/rmarkdown/templates/state_report/skeleton/ReportReferences.bib new file mode 100644 index 000000000..6f3940375 --- /dev/null +++ b/R/pkgs/report.generation/inst/rmarkdown/templates/state_report/skeleton/ReportReferences.bib @@ -0,0 +1,142 @@ +% Encoding: UTF-8 + +@Article{Bootsma2007, + author = {Martin C. J. Bootsma and Neil M. Ferguson}, + journal = {Proceedings of the National Academy of Sciences}, + title = {The effect of public health measures on the 1918 influenza pandemic in U.S. cities}, + year = {2007}, + month = {apr}, + number = {18}, + pages = {7588--7593}, + volume = {104}, + doi = {10.1073/pnas.0611071104}, + publisher = {Proceedings of the National Academy of Sciences}, +} + +@Article{Jackson2020, + author = {Michael L Jackson and Gregory R Hart and Denise J McCulloch and Amanda Adler and Elisabeth Brandstetter and Kairsten Fay and Peter Han and Kirsten Lacombe and Jover Lee and Thomas Sibley and Deborah A Nickerson and Mark Rieder and Lea Starita and Janet A Englund and Trevor Bedford and Helen Chu and Michael Famulare and}, + title = {Effects of weather-related social distancing on city-scale transmission of respiratory viruses}, + year = {2020}, + month = {mar}, + doi = {10.1101/2020.03.02.20027599}, + publisher = {Cold Spring Harbor Laboratory}, +} + +@Article{Cauchemez2008, + author = {Simon Cauchemez and Alain-Jacques Valleron and Pierre-Yves Boëlle and Antoine Flahault and Neil M. Ferguson}, + journal = {Nature}, + title = {Estimating the impact of school closure on influenza transmission from Sentinel data}, + year = {2008}, + month = {apr}, + number = {7188}, + pages = {750--754}, + volume = {452}, + doi = {10.1038/nature06732}, + publisher = {Springer Science and Business Media {LLC}}, +} + +@Article{Litvinova2019, + author = {Maria Litvinova and Quan-Hui Liu and Evgeny S. Kulikov and Marco Ajelli}, + journal = {Proceedings of the National Academy of Sciences}, + title = {Reactive school closure weakens the network of social interactions and reduces the spread of influenza}, + year = {2019}, + month = {jun}, + number = {27}, + pages = {13174--13181}, + volume = {116}, + doi = {10.1073/pnas.1821298116}, + publisher = {Proceedings of the National Academy of Sciences}, +} + +@Article{Bi2020, + author = {Qifang Bi and Yongsheng Wu and Shujiang Mei and Chenfei Ye and Xuan Zou and Zhen Zhang and Xiaojian Liu and Lan Wei and Shaun A Truelove and Tong Zhang and Wei Gao and Cong Cheng and Xiujuan Tang and Xiaoliang Wu and Yu Wu and Binbin Sun and Suli Huang and Yu Sun and Juncen Zhang and Ting Ma and Justin Lessler and Teijian Feng}, + title = {Epidemiology and Transmission of {COVID}-19 in Shenzhen China: Analysis of 391 cases and 1,286 of their close contacts}, + year = {2020}, + month = {mar}, + doi = {10.1101/2020.03.03.20028423}, + publisher = {Cold Spring Harbor Laboratory}, +} + +@Article{Riou2020, + author = {Julien Riou and Christian L. Althaus}, + title = {Pattern of early human-to-human transmission of Wuhan 2019-{nCoV}}, + year = {2020}, + month = {jan}, + doi = {10.1101/2020.01.23.917351}, + publisher = {Cold Spring Harbor Laboratory}, +} + +@Article{Majumder2020, + author = {Maimuna Majumder and Kenneth D. Mandl}, + journal = {{SSRN} Electronic Journal}, + title = {Early Transmissibility Assessment of a Novel Coronavirus in Wuhan, China}, + year = {2020}, + doi = {10.2139/ssrn.3524675}, + publisher = {Elsevier {BV}}, +} + +@Article{Zhao2020, + author = {Shi Zhao and Qianyin Lin and Jinjun Ran and Salihu S. Musa and Guangpu Yang and Weiming Wang and Yijun Lou and Daozhou Gao and Lin Yang and Daihai He and Maggie H. Wang}, + journal = {International Journal of Infectious Diseases}, + title = {Preliminary estimation of the basic reproduction number of novel coronavirus (2019-{nCoV}) in China, from 2019 to 2020: A data-driven analysis in the early phase of the outbreak}, + year = {2020}, + month = {mar}, + pages = {214--217}, + volume = {92}, + doi = {10.1016/j.ijid.2020.01.050}, + publisher = {Elsevier {BV}}, +} + +@Article{Halpern2015, + author = {Neil A. Halpern and Stephen M. Pastores}, + journal = {Critical Care Medicine}, + title = {Critical care medicine beds, use, occupancy and costs in the United States: a methodological review}, + year = {2015}, + month = {nov}, + number = {11}, + pages = {2452-2459}, + volume = {43}, + doi = {10.1097/CCM.0000000000001227}, + publisher = {Critical Care Medicine}, +} + +@Article{Metcalf2011, + author = {C.J.E. Metcalf and C. V. Munayco and C. Viboud and G. Chowell and B.T. Grenfell and O.N. Bjornstad}, + journal = {Journal of the Royal Society Interface}, + title = {Rubella metapopulation dynamics and importance of spatial coupling to the risk of congenital rubella syndrome in Peru}, + year = {2011}, + pages = {369-376}, + volume = {8}, + issue = {56}, +} + +@Article{Word2012, + author = {D.P. Word and D.A. Cummings and D.S. Burke and S. Iamsirithaworn and C.D. Laird}, + journal = {Journal of the Royal Society Interface}, + title = {A nonlinear programming approach for estimation of transmission parameters in childhood infectious disease using a continuous time model}, + year = {2012}, + pages = {1983-1997}, + volume = {9}, + issue = {73}, +} + +@Article{Finkenstadt2002, + author = {B.F. Finkenstadt and O.N. Bjornstad and B.T. Grenfell}, + journal = {Biostatistics}, + title = {A stochastic model for extinction and recurrennce of epidemics: estimation and inference for measles outbreaks}, + year = {2002}, + pages = {493-510}, + volume = {3}, + issue = {4}, +} + +@Article{Becker2017, + author = {A.D. Becker and B.T. Grenfell}, + journal = {PLOS One}, + title = {tSIR: An R package for time-series Susceptible-Infected-Recovered models of epidemics}, + year = {2017}, + volume = {12}, + issue = {9}, +} + +@Comment{jabref-meta: databaseType:bibtex;} diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/state_report/skeleton/skeleton.Rmd b/R/pkgs/report.generation/inst/rmarkdown/templates/state_report/skeleton/skeleton.Rmd similarity index 94% rename from R/pkgs/report_generation/inst/rmarkdown/templates/state_report/skeleton/skeleton.Rmd rename to R/pkgs/report.generation/inst/rmarkdown/templates/state_report/skeleton/skeleton.Rmd index 2594bff24..151db8c49 100644 --- a/R/pkgs/report_generation/inst/rmarkdown/templates/state_report/skeleton/skeleton.Rmd +++ b/R/pkgs/report.generation/inst/rmarkdown/templates/state_report/skeleton/skeleton.Rmd @@ -142,14 +142,14 @@ cap <- paste0("**Fig. ", fig_counter, "**: Daily hospital occupancy for 15 simul ```{r load_cum_inf_geounit_dates} ###Load cumulative infections on specific dates doParallel::registerDoParallel(ncores) - cum_inf_dates <- load_cum_inf_geounit_dates(scn_dirs, - num_files = nfiles, - display_dates = config$report$formatting$display_dates, - scenariolabels = config$report$formatting$scenario_labels, - incl_geoids = included_geoids, - geoid_len = 5, - file_extension="auto") + num_files = nfiles, + scenariolabels = config$report$formatting$scenario_labels, + name_filter= config$hospitalization$parameters$p_death_names[1], ## includes only one pdeath because interest is only in infections here + incl_geoids = included_geoids, + geoid_len = 5, + file_extension="auto") %>% + mutate(pdeath=config$hospitalization$parameters$p_death[1]) doParallel::stopImplicitCluster() registerDoSEQ() @@ -250,7 +250,7 @@ fig_counter <- fig_counter+1 `r paste("**Tab.", tab_counter, "** State-level summary for", config$report$formatting$scenario_labels[1], "scenario reported for the period from", sim_start_date, "through the dates specified by the column headers.")` ```{r scn_state_table1} -make_scn_state_table(config$report$formatting$scenario_labels[1], +make_scn_state_table_withVent(config$report$formatting$scenario_labels[1], state_hosp_totals, table_dates = config$report$formatting$display_dates, pdeath_labels = config$report$formatting$pdeath_labels, @@ -282,7 +282,8 @@ ARmap3 <- plot_geounit_attack_rate_map(cum_inf_dates, shp, scenariolabel = config$report$formatting$scenario_labels[1], display_date = config$report$formatting$display_dates[3], - viridis_palette = "cividis") + viridis_palette = "cividis", + popnodes = config$spatial_setup$popnodes) cowplot::plot_grid(ARmap1, ARmap2, ARmap3, ncol=3) cap <- paste("**Fig.", fig_counter, "** County-level map of infections per 10,000 for", config$report$formatting$scenario_labels[1], " strategy.") diff --git a/R/pkgs/report_generation/inst/rmarkdown/templates/state_report/template.yaml b/R/pkgs/report.generation/inst/rmarkdown/templates/state_report/template.yaml similarity index 100% rename from R/pkgs/report_generation/inst/rmarkdown/templates/state_report/template.yaml rename to R/pkgs/report.generation/inst/rmarkdown/templates/state_report/template.yaml diff --git a/R/pkgs/report_generation/tests/testthat.R b/R/pkgs/report.generation/tests/testthat.R similarity index 100% rename from R/pkgs/report_generation/tests/testthat.R rename to R/pkgs/report.generation/tests/testthat.R diff --git a/R/pkgs/report_generation/tests/testthat/test-load_shape_file.R b/R/pkgs/report.generation/tests/testthat/test-load_shape_file.R similarity index 100% rename from R/pkgs/report_generation/tests/testthat/test-load_shape_file.R rename to R/pkgs/report.generation/tests/testthat/test-load_shape_file.R diff --git a/R/pkgs/report_generation/tests/testthat/test-test_loading.R b/R/pkgs/report.generation/tests/testthat/test-test_loading.R similarity index 100% rename from R/pkgs/report_generation/tests/testthat/test-test_loading.R rename to R/pkgs/report.generation/tests/testthat/test-test_loading.R diff --git a/R/pkgs/report_generation/R/setup_testing_environment.R b/R/pkgs/report_generation/R/setup_testing_environment.R deleted file mode 100644 index c2ea2c20e..000000000 --- a/R/pkgs/report_generation/R/setup_testing_environment.R +++ /dev/null @@ -1,221 +0,0 @@ -#' @export -setup_testing_environment <- function(cf = "config.yml"){ - params = list(config_file = cf) - library(tidyverse) - library(covidcommon) - library(report.generation) - - LOADED_CONFIG <<- FALSE - LOADED_GEOIDS <<- FALSE - LOADED_HOSP_STATE_TOTALS <<- FALSE - LOADED_INF_CTY_PEAKS <<- FALSE - LOADED_HOSP_CTY_PEAKS <<- FALSE - LOADED_HOSP_CTY_TOTALS <<- FALSE - LOADED_INF_CTY_TOTALS <<- FALSE - LOADED_SHAPEFILES <<- FALSE - LOADED_POPULATION <<- FALSE - - - if(! LOADED_CONFIG){ - if(is.null(params$config_file)){ - stop("A document parameter `config_file` is required to load the config file") - } - config <- covidcommon:::load_config(params$config_file) - LOADED_CONFIG <<- TRUE - } - - ## Code loads the state geodata if it has not yet been loaded - if(!LOADED_GEOIDS){ - geodata <<- read.csv(file.path(config$spatial_setup$base_path, config$spatial_setup$geodata)) - geodata$geoid <<- ifelse(nchar(geodata$geoid)==4, paste0("0", geodata$geoid), as.character(geodata$geoid)) - included_geoids <<- geodata[["geoid"]][geodata[[config$spatial_setup$include_in_report]]] - LOADED_GEOIDS <<- TRUE - } - - - if (!LOADED_CONFIG) { stop("This chunk requires the config to be loaded")} - ## Code loads the state hospitalization totals if it has not yet been loaded - if (!LOADED_HOSP_CTY_PEAKS) { - hosp_post_process <- function(x) { - x %>% - ungroup %>% - filter(!is.na(time)) %>% - group_by(geoid) %>% - dplyr::slice(which.max(hosp_curr)) %>% - ungroup - } - - scn_dirs <- paste(config$name,config$interventions$scenarios,sep='_') - hosp_cty_peaks <<- NULL - - for (i in 1:length(scn_dirs)) { - for (pdeath in config$hospitalization$parameters$p_death_names) { - hosp_cty_peaks <<- dplyr::bind_rows(hosp_cty_peaks, load_hosp_sims_filtered(scn_dirs[i], - name_filter = pdeath, - post_process = hosp_post_process) %>% - mutate(scenario_num=i, scenario_name=config$report$formatting$scenario_labels[i], pdeath=pdeath)) - } - } - - - LOADED_HOSP_CTY_PEAKS <<- TRUE - } - - - if (!LOADED_CONFIG){stop("This chunk requires the config to be loaded")} - ## Code loads the state hospitalization totals if it has not yet been loaded - if (!LOADED_HOSP_CTY_TOTALS) { - hosp_post_process <- function(x) { - x %>% - dplyr::filter(!is.na(time)) %>% - dplyr::filter(geoid %in% included_geoids) %>% - group_by(geoid, time, sim_num) %>% - summarize(NhospCurr = sum(hosp_curr), - NICUCurr = sum(icu_curr), - NincidDeath = sum(incidD), - NincidInf = sum(incidI), - NincidICU=sum(incidICU), - NincidHosp=sum(incidH)) %>% - ungroup() - - } - - scn_dirs <<- paste(config$name,config$interventions$scenarios,sep='_') - hosp_cty_totals <<- NULL - - for (i in 1:length(scn_dirs)) { - for (pdeath in config$hospitalization$parameters$p_death_names) { - hosp_cty_totals <<- dplyr::bind_rows(hosp_cty_totals, load_hosp_sims_filtered(scn_dirs[i], - name_filter = pdeath, - post_process = hosp_post_process) %>% - mutate(scenario_num=i, scenario_name=config$report$formatting$scenario_labels[i], pdeath=pdeath)) - } - } - - - LOADED_HOSP_CTY_TOTALS <<- TRUE - } - - - - if (!LOADED_CONFIG){stop("This chunk requires the config to be loaded")} - - if (!LOADED_HOSP_STATE_TOTALS) { - hosp_post_process <- function(x) { - x %>% - dplyr::filter(!is.na(time)) %>% - group_by(time, sim_num) %>% - dplyr::summarize(NhospCurr = sum(hosp_curr), - NICUCurr = sum(icu_curr), - NincidDeath = sum(incidD), - NincidInf = sum(incidI), - NincidICU=sum(incidICU), - NincidHosp=sum(incidH)) %>% - ungroup() - } - - scn_dirs <<- paste(config$name,config$interventions$scenarios,sep='_') - hosp_state_totals <<- NULL - - for (i in 1:length(scn_dirs)) { - for (pdeath in config$hospitalization$parameters$p_death_names) { - hosp_state_totals <<- dplyr::bind_rows(hosp_state_totals, load_hosp_sims_filtered(scn_dirs[i], - name_filter = pdeath, - post_process = hosp_post_process) %>% - mutate(scenario_num = i, scenario_name = config$report$formatting$scenario_labels[i], pdeath=pdeath)) - } - } - - - LOADED_HOSP_STATE_TOTALS <- TRUE - } - - - - if(!LOADED_CONFIG){stop("This chunk requires the config to be loaded")} - ## Code loads the county infection peaks if it has not yet been loaded - if (!LOADED_INF_CTY_PEAKS) { - - inf_pre_process <- function(x) { - x %>% - dplyr::filter(comp == "diffI") - } - - inf_post_process <- function(x) { - x %>% - ungroup %>% - dplyr::filter(!is.na(time)) %>% - dplyr::mutate(geoid=ifelse(nchar(geoid)==4, paste0("0",geoid),geoid)) %>% - dplyr::filter(geoid %in% included_geoids) %>% - group_by(geoid) %>% - dplyr::slice(which.max(N)) %>% - ungroup - } - - scn_dirs <<- paste(config$name,config$interventions$scenarios,sep='_') - inf_cty_peaks <<- NULL - - for (i in 1:length(scn_dirs)) { - inf_cty_peaks <<- dplyr::bind_rows(inf_cty_peaks, load_scenario_sims_filtered(scn_dirs[i], - pre_process = inf_pre_process, - post_process = inf_post_process) %>% - mutate(scenario_num=i, - scenario_name=config$report$formatting$scenario_labels[i])) - - } - - - LOADED_INF_CTY_PEAKS <<- TRUE - } - - - if(!LOADED_CONFIG){stop("This chunk requires the config to be loaded")} - ## Code loads the county infection peaks if it has not yet been loaded - if (!LOADED_INF_CTY_TOTALS) { - - inf_pre_process <- function(x) { - x %>% - dplyr::filter(comp == "cumI") - } - - inf_post_process <- function(x) { - x %>% - ungroup %>% - dplyr::mutate(geoid=ifelse(nchar(geoid)==4, paste0("0",geoid),geoid)) %>% - dplyr::filter(!is.na(time), geoid %in% included_geoids) - } - - scn_dirs <<- paste(config$name,config$interventions$scenarios,sep='_') - inf_cty_totals <<- NULL - - for (i in 1:length(scn_dirs)) { - inf_cty_totals <<- inf_cty_totals %>% - dplyr::bind_rows(load_scenario_sims_filtered(scn_dirs[i], - pre_process = inf_pre_process, - post_process = inf_post_process) %>% - mutate(scenario_num=i, - scenario_name=config$report$formatting$scenario_labels[i]) %>% - group_by(geoid, time, scenario_num, scenario_name) %>% - dplyr::summarize(Nincid=mean(N)) %>% - ungroup() - ) - } - - LOADED_INF_CTY_TOTALS <<- TRUE - } - - if (!LOADED_CONFIG){stop("This chunk requires loading the config")} - - if (!LOADED_SHAPEFILES | !LOADED_POPULATION){ - shp <<- suppressMessages(sf::st_read(paste(config$spatial_setup$base_path,config$spatial_setup$shapefile_name,sep='/'), quiet=TRUE) %>% - dplyr::rename(geoid = GEOID, countyname = NAME)) - shp <- shp[shp[["geoid"]] %in% included_geoids,] - LOADED_SHAPEFILES <<- TRUE - - cty_names <<- shp %>% - sf::st_drop_geometry() %>% - dplyr::select(geoid, countyname) - LOADED_POPULATION <<- TRUE - } - -} diff --git a/R/scripts/build_US_setup.R b/R/scripts/build_US_setup.R index 47ed3703f..532d6cb4c 100644 --- a/R/scripts/build_US_setup.R +++ b/R/scripts/build_US_setup.R @@ -1,5 +1,38 @@ +## +# @file +# @brief Creates mobility and geodata for US +# +# @details +# +# ## Configuration Items +# +# ```yaml +# spatial_setup: +# base_path: +# modeled_states: e.g. MD, CA, NY +# mobility: optional; default is 'mobility.csv' +# geodata: optional; default is 'geodata.csv' +# popnodes: optional; default is 'population' +# +# importation: +# census_api_key: default is environment variable CENSUS_API_KEY. Environment variable is preferred so you don't accidentally commit your key. +# ``` +# +# ## Input Data +# +# None +# +# ## Output Data +# +# * {spatial_setup::base_path}/{spatial_setup::mobility} +# * {spatial_setup::base_path}/{spatial_setup::geodata} +# + +## @cond + library(dplyr) library(tidyr) +library(tidycensus) option_list = list( optparse::make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file"), @@ -9,49 +42,102 @@ option_list = list( opt = optparse::parse_args(optparse::OptionParser(option_list=option_list)) config <- covidcommon::load_config(opt$c) -if (is.na(config)) { +if (length(config) == 0) { stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") } outdir <- config$spatial_setup$base_path filterUSPS <- config$spatial_setup$modeled_states -commute_data <- readr::read_csv(paste(opt$p,"sample_data","united-states-commutes","commute_data.csv",sep='/')) -census_data <- readr::read_csv(paste(opt$p,"sample_data","united-states-commutes","census_tracts_2010.csv", sep = '/')) +dir.create(outdir, showWarnings = FALSE, recursive = TRUE) +# commute_data <- readr::read_csv(paste(opt$p,"sample_data","united-states-commutes","commute_data.csv",sep='/')) +# census_data <- readr::read_csv(paste(opt$p,"sample_data","united-states-commutes","census_tracts_2010.csv", sep = '/')) + + +# Get census key +census_key = Sys.getenv("CENSUS_API_KEY") +if(length(config$importation$census_api_key) != 0) +{ + census_key = config$importation$census_api_key +} +if(census_key == "") +{ + stop("no census key found -- please set CENSUS_API_KEY environment variable or specify importation::census_api_key in config file") +} +tidycensus::census_api_key(key = census_key) +# CENSUS DATA +census_data <- tidycensus::get_acs(geography="county", state=filterUSPS, + variables="B01003_001", year=config$spatial_setup$census_year, + keep_geo_vars=TRUE, geometry=FALSE, show_call=TRUE) census_data <- census_data %>% - filter(USPS %in% filterUSPS) %>% - select(USPS,GEOID,POP10) %>% - mutate(GEOID = substr(GEOID,1,5)) + rename(population=estimate, geoid=GEOID) %>% + select(geoid, population) %>% + mutate(geoid = substr(geoid,1,5)) +# Add USPS column +data(fips_codes) +fips_geoid_codes <- mutate(fips_codes, geoid=paste0(state_code,county_code)) %>% + group_by(geoid) %>% + summarize(USPS=unique(state)) +census_data <- census_data %>% left_join(fips_geoid_codes, by="geoid") + +# Make each territory one county. +# Puerto Rico is the only one in the 2018 ACS estimates right now. Aggregate it. +# Keeping the other territories in the aggregation just in case they're there in the future. name_changer <- setNames( - unique(census_data$GEOID), - unique(census_data$GEOID) + unique(census_data$geoid), + unique(census_data$geoid) ) -name_changer[grepl("^60",name_changer)] <- "60000" -name_changer[grepl("^66",name_changer)] <- "66000" -name_changer[grepl("^69",name_changer)] <- "69000" -name_changer[grepl("^72",name_changer)] <- "72000" -name_changer[grepl("^78",name_changer)] <- "78000" +name_changer[grepl("^60",name_changer)] <- "60000" # Amerian Samoa +name_changer[grepl("^66",name_changer)] <- "66000" # Guam +name_changer[grepl("^69",name_changer)] <- "69000" # Northern Mariana Islands +name_changer[grepl("^72",name_changer)] <- "72000" # Puerto Rico +name_changer[grepl("^78",name_changer)] <- "78000" # Virgin Islands + +census_data <- census_data %>% + mutate(geoid = name_changer[geoid]) %>% + group_by(geoid) %>% + summarize(USPS = unique(USPS), population = sum(population)) +# Territory populations (except Puerto Rico) taken from from https://www.census.gov/prod/cen2010/cph-2-1.pdf +terr_census_data <- readr::read_csv(paste(opt$p,"sample_data","united-states-commutes","census_tracts_island_areas_2010.csv",sep='/')) + +census_data <- terr_census_data %>% + filter(length(filterUSPS) == 0 | ((USPS %in% filterUSPS) & !(USPS %in% census_data)))%>% + rbind(census_data) + +# Sort by population census_data <- census_data %>% - mutate(GEOID = name_changer[GEOID]) %>% - group_by(GEOID) %>% - summarize(USPS = unique(USPS),POP10 = sum(POP10)) %>% - arrange(POP10) + arrange(population) + +if (!is.null(config$spatial_setup$popnodes)) { + names(census_data)[names(census_data) == "population"] <- config$spatial_setup$popnodes +} + +if (length(config$spatial_setup$geodata) > 0) { + geodata_file <- config$spatial_setup$geodata +} else { + geodata_file <- 'geodata.csv' +} +write.csv(file = file.path(outdir, geodata_file), census_data, row.names=FALSE) +print(paste("Wrote geodata file:", file.path(outdir, geodata_file))) + +# COMMUTE DATA +commute_data <- readr::read_csv(paste(opt$p,"sample_data","united-states-commutes","commute_data.csv",sep='/')) commute_data <- commute_data %>% mutate(OFIPS = substr(OFIPS,1,5), DFIPS = substr(DFIPS,1,5)) %>% mutate(OFIPS = name_changer[OFIPS], DFIPS = name_changer[DFIPS]) %>% - filter(OFIPS %in% census_data$GEOID, DFIPS %in% census_data$GEOID) %>% + filter(OFIPS %in% census_data$geoid, DFIPS %in% census_data$geoid) %>% group_by(OFIPS,DFIPS) %>% summarize(FLOW = sum(FLOW)) %>% filter(OFIPS != DFIPS) padding_table <- tibble( - OFIPS = census_data$GEOID, - DFIPS = census_data$GEOID, + OFIPS = census_data$geoid, + DFIPS = census_data$geoid, FLOW = 0 ) @@ -62,20 +148,31 @@ t_commute_table <- tibble( ) rc <- padding_table %>% bind_rows(commute_data) %>% bind_rows(t_commute_table) + if(opt$w){ - rc <- rc %>%pivot_wider(OFIPS,names_from=DFIPS,values_from=FLOW, values_fill=c("FLOW"=0),values_fn = list(FLOW=sum)) + mobility_file <- 'mobility.txt' +} else if (length(config$spatial_setup$mobility) > 0) { + mobility_file <- config$spatial_setup$mobility +} else { + mobility_file <- 'mobility.csv' } -print(outdir) -if(opt$w){ - if(!isTRUE(all(rc$OFIPS == census_data$GEOID))){ +if(endsWith(mobility_file, '.txt')) { + rc <- rc %>% pivot_wider(OFIPS,names_from=DFIPS,values_from=FLOW, values_fill=c("FLOW"=0),values_fn = list(FLOW=sum)) + if(!isTRUE(all(rc$OFIPS == census_data$geoid))){ + print(rc$OFIPS) + print(census_data$geoid) stop("There was a problem generating the mobility matrix") } - write.table(file = file.path(outdir,'mobility.txt'), as.matrix(rc[,-1]), row.names=FALSE, col.names = FALSE, sep = " ") -} else { + write.table(file = file.path(outdir, mobility_file), as.matrix(rc[,-1]), row.names=FALSE, col.names = FALSE, sep = " ") +} else if(endsWith(mobility_file, '.csv')) { names(rc) <- c("ori","dest","amount") rc <- rc[rc$ori != rc$dest,] - write.csv(file = file.path(outdir,'mobility.csv'), rc, row.names=FALSE) + write.csv(file = file.path(outdir, mobility_file), rc, row.names=FALSE) +} else { + stop("Only .txt and .csv extensions supported for mobility matrix. Please check config's spatial_setup::mobility.") } -names(census_data) <- c("geoid","USPS","pop2010") -write.csv(file = file.path(outdir,'geodata.csv'), census_data,row.names=FALSE) + +print(paste("Wrote mobility file:", file.path(outdir, mobility_file))) + +## @endcond diff --git a/R/scripts/build_nonUS_setup.R b/R/scripts/build_nonUS_setup.R new file mode 100644 index 000000000..bc4d0360b --- /dev/null +++ b/R/scripts/build_nonUS_setup.R @@ -0,0 +1,120 @@ +## +# @file +# @brief Creates mobility and geodata for non-US location +# +# @details +# +# ## Configuration Items +# +# ```yaml +# spatial_setup: +# base_path: +# modeled_states: e.g. ZMB, BGD, CAN +# mobility: optional; default is 'mobility.csv' +# geodata: optional; default is 'geodata.csv' +# popnodes: optional; default is 'pop' +# +# +# ## Input Data +# +# None +# +# ## Output Data +# +# * {spatial_setup::base_path}/{spatial_setup::mobility} +# * {spatial_setup::base_path}/{spatial_setup::geodata} +# + +## @cond + +library(dplyr) +library(tidyr) + +option_list = list( + optparse::make_option(c("-c", "--config"), action="store", default="config.yml", type='character', help="path to the config file"), + optparse::make_option(c("-w", "--wide_form"), action="store",default=FALSE,type='logical',help="Whether to generate the old wide format mobility or the new long format"), + optparse::make_option(c("-n", "--population"), action="store",default="population_data.csv",type='character',help="Name of the popultion data file"), + optparse::make_option(c("-m", "--mobility"), action="store",default="mobility_data.csv",type='character',help="Name of the mobility data file") +) +opt = optparse::parse_args(optparse::OptionParser(option_list=option_list)) + +config <- covidcommon::load_config(opt$config) +if (length(config) == 0) { + stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") +} + +outdir <- config$spatial_setup$base_path +filterADMIN0 <- config$spatial_setup$modeled_states + +dir.create(outdir, showWarnings = FALSE, recursive = TRUE) + +# Read in needed data +commute_data <- readr::read_csv(file.path(config$spatial_setup$base_path, "geodata", opt$mobility)) %>% + mutate(OGEOID = as.character(OGEOID), + DGEOID = as.character(DGEOID)) +census_data <- readr::read_csv(file.path(config$spatial_setup$base_path, "geodata", opt$population)) %>% + mutate(GEOID = as.character(GEOID)) + +# Filter if needed +if (!(is.null(filterADMIN0) || is.na(filterADMIN0))){ + census_data <- census_data %>% + dplyr::filter(ADMIN0 %in% filterADMIN0) +} + +census_data <- census_data %>% + dplyr::select(ADMIN0,GEOID,ADMIN2,POP) %>% + dplyr::group_by(GEOID,ADMIN2) %>% + dplyr::summarize(ADMIN0 = unique(ADMIN0), POP = sum(POP)) %>% + dplyr::arrange(POP) + +commute_data <- commute_data %>% + dplyr::filter(OGEOID %in% census_data$GEOID, DGEOID %in% census_data$GEOID) %>% + dplyr::group_by(OGEOID, DGEOID) %>% + dplyr::summarize(FLOW = sum(FLOW)) %>% + dplyr::filter(OGEOID != DGEOID) + +padding_table <- tibble::tibble( + OGEOID = census_data$GEOID, + DGEOID = census_data$GEOID, + FLOW = 0 +) + +t_commute_table <- tibble::tibble( + OGEOID = commute_data$DGEOID, + DGEOID = commute_data$OGEOID, + FLOW = commute_data$FLOW +) + +rc <- padding_table %>% + dplyr::bind_rows(commute_data) %>% + dplyr::bind_rows(t_commute_table) + +# Make wide if specified +if(opt$w){ + rc <- rc %>% tidyr::pivot_wider(OGEOID, names_from=DGEOID, values_from=FLOW, values_fill=c("FLOW"=0), values_fn = list(FLOW=sum)) +} + + +if(opt$w){ + if(!isTRUE(all(rc$OGEOID == census_data$GEOID))){ + stop("There was a problem generating the mobility matrix") + } + write.table(file = file.path(outdir,'mobility.txt'), as.matrix(rc[,-1]), row.names=FALSE, col.names = FALSE, sep = " ") +} else { + names(rc) <- c("ori","dest","amount") + rc <- rc[rc$ori != rc$dest,] + write.csv(file = file.path(outdir,'mobility.csv'), rc, row.names=FALSE) +} + +# Save population geodata +names(census_data) <- c("geoid","admin2","admin0","pop") +write.csv(file = file.path(outdir,'geodata.csv'), census_data,row.names=FALSE) + +print("Census Data Check (up to 6 rows)") +print(head(census_data)) +print("Commute Data Check (up to 6 rows)") +print(head(commute_data)) + +print(paste0("mobility.csv/.txt and geodata.csv saved to: ", outdir)) + + diff --git a/R/scripts/create_seeding.R b/R/scripts/create_seeding.R index 9d79f3e84..9a8d6029c 100644 --- a/R/scripts/create_seeding.R +++ b/R/scripts/create_seeding.R @@ -1,6 +1,6 @@ ## # @file -# @brief Creates a filter file +# @brief Creates a seeding file # # @details # @@ -8,7 +8,6 @@ # ## Configuration Items # # ```yaml -# dynfilter_path: # start_date: # end_date: # @@ -17,6 +16,8 @@ # base_path: # geodata: # nodenames: +# lambda_file: + # ``` # # ## Input Data @@ -26,7 +27,7 @@ # ## Output Data # # * importation/{spatial_setup::setup_name}/case_data/jhucsse_case_data.csv is a csv with case data from JHU CSSE -# * {dynfilter_path}: filter file +# * {spatial_setup::lambda_file}: seeding file # ## @cond @@ -38,61 +39,146 @@ library(tidyr) library(purrr) option_list = list( - optparse::make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file") + optparse::make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file"), + optparse::make_option(c("-s", "--source"), action="store", default="CSSE", type='character', help="source of case data: USAFacts or CSSE"), + optparse::make_option(c("-d", "--data"), action="store", default=file.path("data","case_data","case_data.csv"), type='character', help="path to the case data file") ) -opts = optparse::parse_args(optparse::OptionParser(option_list=option_list)) +opt = optparse::parse_args(optparse::OptionParser(option_list=option_list)) -config <- covidcommon::load_config(opts$c) +print(paste0("Using config file: ", opt$config)) +config <- covidcommon::load_config(opt$config) if (length(config) == 0) { stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") } -jhucsse <- covidImportation::get_clean_JHUCSSE_data(aggr_level = "UID", - last_date = as.POSIXct(lubridate::ymd(config$end_date)), - case_data_dir = file.path('importation',config$spatial_setup$setup_name,"case_data"), - save_raw_data=TRUE, - us_data_only=FALSE) - -print("Successfully pulled JHU CSSE data for seeding.") - all_times <- lubridate::ymd(config$start_date) + seq_len(lubridate::ymd(config$end_date) - lubridate::ymd(config$start_date)) -geodata <- report.generation:::load_geodata_file(file.path(config$spatial_setup$base_path, config$spatial_setup$geodata),5,'0',TRUE) -all_geoids <- geodata[[config$spatial_setup$nodenames]] -incident_cases <- jhucsse %>% - dplyr::filter(FIPS %in% all_geoids) %>% - dplyr::select(Update, FIPS, incidI) -incident_cases$Update <- as.Date(incident_cases$Update) +# Get the data + + +# get data if a US model --------------------------------- + +if (is.null(config$spatial_setup$us_model) || config$spatial_setup$us_model==TRUE){ + + # Load either JHUCSSE or USAFacts data + if (tolower(opt$source) %in% c("csse", "jhucsse", "jhu csse")){ + + dir.create(file.path('importation',config$spatial_setup$setup_name,"case_data"), showWarnings = FALSE, recursive = TRUE) + + print("Pulling case data from JHU CSSE for US seeding.") + cases_deaths <- covidImportation::get_clean_JHUCSSE_data(aggr_level = "UID", + last_date = as.POSIXct(lubridate::ymd(config$end_date)), + case_data_dir = file.path('importation',config$spatial_setup$setup_name,"case_data"), + save_raw_data=TRUE, + us_data_only=FALSE) + print("Successfully pulled JHU CSSE data for seeding.") + + } else if (tolower(opt$source) %in% c("usafacts", "usa facts", "usa")){ + print("Pulling case data from USA Facts for US seeding.") + cases_deaths <- covidcommon::get_USAFacts_data() + print("Successfully pulled USAFacts data for seeding.") + } else { + stop(paste(opt$source,"is not a recognized source of case data")) + } + + geodata <- report.generation::load_geodata_file(filename = file.path(config$spatial_setup$base_path, config$spatial_setup$geodata), + geoid_len = 5, geoid_pad = '0', to_lower = TRUE) + + + all_geoids <- geodata[[config$spatial_setup$nodenames]] + + incident_cases <- cases_deaths %>% + dplyr::filter(FIPS %in% all_geoids) %>% + dplyr::select(Update, FIPS, incidI) + + incident_cases$Update <- as.Date(incident_cases$Update) + + if(is.null(config$seeding$delay_incidC)){ + config$seeding$delay_incidC <- 5 + } + if(is.null(config$seeding$ratio_incidC)){ + config$seeding$ratio_incidC <- 10 + } + + incident_cases <- incident_cases %>% + dplyr::group_by(FIPS) %>% + dplyr::group_modify(function(.x,.y){ + .x %>% + dplyr::arrange(Update) %>% + dplyr::filter(incidI > 0) %>% + .[seq_len(min(nrow(.x),5)),] %>% + dplyr::mutate( + Update = Update - lubridate::days(config$seeding$delay_incidC), + incidI = config$seeding$ratio_incidC * incidI + .05 + ) + }) + + + +# from file --------------------------------- + +} else { + + print(paste0("Using case data from ", opt$data, "for seeding ", config$spatial_setup$setup_name)) + + case_data <- readr::read_csv(opt$data) + if (!exists("case_data") || is.null(case_data)){ + stop(paste0("ERROR: ", opt$data, "does not exist!")) + } + + geodata <- report.generation::load_geodata_file(filename = file.path(config$spatial_setup$base_path, config$spatial_setup$geodata), + geoid_len = config$spatial_setup$geoid_len, geoid_pad = '0', to_lower = TRUE) + + all_geoids <- geodata[[config$spatial_setup$nodenames]] + + incident_cases <- case_data %>% + dplyr::filter(geoid %in% all_geoids) %>% + dplyr::select(date, geoid, incidI) + + incident_cases$date <- as.Date(incident_cases$date) + + if(is.null(config$seeding$delay_incidC)){ + config$seeding$delay_incidC <- 5 + } + if(is.null(config$seeding$ratio_incidC)){ + config$seeding$ratio_incidC <- 10 + } + + incident_cases <- incident_cases %>% + dplyr::group_by(geoid) %>% + dplyr::group_modify(function(.x,.y){ + .x %>% + dplyr::arrange(date) %>% + dplyr::filter(incidI > 0) %>% + .[seq_len(min(nrow(.x),5)),] %>% + dplyr::mutate( + date = date - lubridate::days(config$seeding$delay_incidC), + incidI = config$seeding$ratio_incidC * incidI + .05 + ) + }) +} -incident_cases <- incident_cases %>% - group_by(FIPS) %>% - group_modify(function(.x,.y){ - .x %>% - arrange(Update) %>% - filter(incidI > 0) %>% - .[seq_len(min(nrow(.x),5)),] %>% - mutate( - Update = Update - lubridate::days(5), - incidI = 10 * incidI + .05 - ) - - }) names(incident_cases) <- c('place','date','amount') incident_cases <- incident_cases %>% dplyr::filter(!is.na(amount) | !is.na(date)) -write.csv( +lambda_dir <- dirname(config$seeding$lambda_file) +if(!dir.exists(lambda_dir)){ + suppressWarnings(dir.create(lambda_dir,recursive=TRUE)) +} + +readr::write_csv( incident_cases, - file=file.path(config$seeding$lambda_file), - row.names=FALSE, - col.names=TRUE, + file.path(config$seeding$lambda_file) ) +print(paste("Saved seeding to",config$seeding$lambda_file)) + ## @endcond diff --git a/R/scripts/hosp_run.R b/R/scripts/hosp_run.R index b2e7acfb1..bf2d2ea14 100644 --- a/R/scripts/hosp_run.R +++ b/R/scripts/hosp_run.R @@ -9,6 +9,12 @@ # ```yaml # name # +# spatial_setup: +# us_model: [Defaults to TRUE if not specified] +# base_path: +# geodata: +# nodenames: +# # interventions: # scenarios: # - @@ -53,6 +59,7 @@ # * model\_output/{name}\_[scenario] is a directory of csv's. # + Each csv must have columns: "time", "comp", and each geoid of interest. # + The "comp" column must have a value of "diffI" in at least one row. +# * {spatial_setup::base_path}/{spatial_setup::geodata} is a csv with columns {spatial_setup::nodenames} and {spatial_setup::popnodes} # # ## Output Data # @@ -78,6 +85,7 @@ library(devtools) library(covidcommon) library(hospitalization) +library(report.generation) library(readr) library(dplyr) library(tidyr) @@ -85,6 +93,7 @@ library(magrittr) library(data.table) library(parallel) library(stringr) +library(doParallel) option_list = list( @@ -101,13 +110,19 @@ option_list = list( optparse::make_option(c("-j", "--jobs"), action="store", default=detectCores(), type='numeric', help="number of cores used"), #' @param -p The path to COVIDScenarioPipeline - optparse::make_option(c("-p", "--path"), action="store", default="COVIDScenarioPipeline", type='character', help="path to the COVIDScenarioPipeline directory") + optparse::make_option(c("-p", "--path"), action="store", default="COVIDScenarioPipeline", type='character', help="path to the COVIDScenarioPipeline directory"), + + #' @param -i The index of the first simulation to run against + optparse::make_option(c("-i", "--index-from-sim"), action="store", default=1, type='numeric', help="The index of the first simulation to run against"), + + #' @param -n The number of simulations to run + optparse::make_option(c("-n", "--num-sims"), action="store", default=-1, type='numeric', help="number of simulations to run") ) opt = optparse::parse_args(optparse::OptionParser(option_list=option_list)) #' @description Run the hospitalization results. #' @importFrom covidcommon load_config -config <- covidcommon::load_config(opt$c) +config <- covidcommon::load_config(opt$config) if (length(config) == 0) { stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") } @@ -136,6 +151,8 @@ names(p_death) = hosp_parameters$p_death_names cmd <- opt$d scenario <- opt$s ncore <- opt$j +start_sim <- opt$i +num_sims <- opt$n # Verify that the cmd maps to a known p_death value if (cmd == "all") { @@ -151,13 +168,40 @@ if (scenario == "all" ) { quit("yes", status=1) } +is_international <- config$spatial_setup$us_model +if(is.null(is_international)){ + is_international <- FALSE +} + ## Running age-adjusted script if(run_age_adjust){ - + # Specified geoparams or not (data for US model is included in CSP and does not need to be specified) + if (is.null(config$spatial_setup$geoid_params_file)){ + if(is_international) stop("International models require spatial_setup::geoid_params_file specified in the config") + config$spatial_setup$geoid_params_file <- paste(opt$p,"sample_data","geoid-params.csv",sep='/') + } + if (is.null(config$spatial_setup$geoid_len)){ + if(is_international) stop("International models require spatial_setup::geoid_len specified in the config") + config$spatial_setup$geoid_len <- 5 + } + + # Throw some warnings and errors. + print(paste0("Using ", config$spatial_setup$geoid_params_file, " for geounit-specific outcomes.")) + if (!file.exists(config$spatial_setup$geoid_params_file)){ + stop(paste0("ERROR: ", config$spatial_setup$geoid_params_file, " does not exist.")) + } + # read in probability file - # NOTE(jwills): this file would ideally live inside of the hospitalization package as an .Rdata object - prob_dat <- readr::read_csv(paste(opt$p,"sample_data","geoid-params.csv",sep='/')) + prob_dat <- readr::read_csv(config$spatial_setup$geoid_params_file) + prob_dat <- prob_dat %>% mutate(geoid = as.character(geoid)) # so it matches + + geodata <- report.generation:::load_geodata_file(file.path(config$spatial_setup$base_path, config$spatial_setup$geodata),config$spatial_setup$geoid_len,'0',TRUE) + in_geoids <- geodata[[config$spatial_setup$nodenames]] + missing_geoids <- setdiff(in_geoids, prob_dat$geoid) + if(length(missing_geoids) > 0) { + warning(paste("The hospitalization outcomes will not be calculated for geoids not present in geoid-params.csv:", missing_geoids)) + } time_onset_death_pars <- as_evaled_expression(hosp_parameters$time_onset_death) p_hosp_inf <- as_evaled_expression(hosp_parameters$p_hosp_inf) @@ -166,7 +210,7 @@ if(run_age_adjust){ if (length(p_death)!=length(p_hosp_inf)) { stop("Number of IFR and p_hosp_inf values do not match") } - + for (scn0 in scenario) { data_dir <- paste0("model_output/",config$name,"_",scn0) cat(paste(data_dir, "\n")) @@ -185,7 +229,9 @@ if(run_age_adjust){ cores = ncore, data_dir = data_dir, dscenario_name = cmd0, - use_parquet = TRUE + use_parquet = TRUE, + start_sim = start_sim, + num_sims = num_sims ) } } @@ -229,7 +275,9 @@ if(run_age_adjust){ cores = ncore, data_dir = data_dir, dscenario_name = cmd0, - use_parquet = TRUE + use_parquet = TRUE, + start_sim = start_sim, + num_sims = num_sims ) } } diff --git a/R/scripts/make_makefile.R b/R/scripts/make_makefile.R index b724198c3..2b18e8355 100644 --- a/R/scripts/make_makefile.R +++ b/R/scripts/make_makefile.R @@ -3,7 +3,8 @@ option_list = list( optparse::make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file"), optparse::make_option(c("-p", "--pipepath"), action="store", default="COVIDScenarioPipeline", type='character', help="path to the COVIDScenarioPipeline directory"), optparse::make_option(c("-n", "--ncoreper"), action="store", default="1", type='character', help="Number of CPUS/jobs for pipeline"), - optparse::make_option(c("-y", "--python"), action="store", default="python3", type='character', help="path to python executable") + optparse::make_option(c("-y", "--python"), action="store", default="python3", type='character', help="path to python executable"), + optparse::make_option(c("-f", "--file_prefix"), action="store", default=FALSE, type='logical', help="whether to use the config$spatial_setup$setup_name as the file prefix") ) parser=optparse::OptionParser(option_list=option_list) @@ -28,7 +29,8 @@ if(isTRUE(config$this_file_is_unedited)){ simulations = config$nsimulations scenarios = config$interventions$scenarios deathrates = config$hospitalization$parameters$p_death_names - +use_file_prefix = opt$file_prefix + cat(simulations) cat("\n") cat(scenarios) @@ -38,11 +40,19 @@ cat("\n") using_importation <- ("importation" %in% names(config)) generating_report <- ("report" %in% names(config)) +if(is.null(config$spatial_setup$us_model)) { + config$spatial_setup$us_model <- FALSE + if("modeled_states" %in% names(config$spatial_setup)){ + config$spatial_setup$us_model <- TRUE + } +} +building_US_setup <- config$spatial_setup$us_model +file_prefix <- ifelse(use_file_prefix, config$spatial_setup$setup_name, "") # prefix of file names if(generating_report) { # Create report name (no suffix) for the .Rmd and .html - report_name = "" + report_name <- "" if(length(config$report_location_name) != 0){ report_name = config$report_location_name } else if(length(config$name) != 0){ @@ -50,7 +60,7 @@ if(generating_report) } else { stop(paste("Please specify report_location_name or name in the config")) } - report_name = paste0(report_name, "_", format(Sys.Date(), format="%Y%m%d")) + report_name <- paste0(report_name, "_", format(Sys.Date(), format="%Y%m%d")) } importation_target_name <- function(simulation, prefix = ""){ @@ -60,7 +70,7 @@ importation_target_name <- function(simulation, prefix = ""){ importation_make_command <- function(simulation,prefix=""){ target_name <- importation_target_name(simulation,prefix) dependency_name <- "" - command_name <- paste0("$(RSCRIPT) $(PIPELINE)/R/scripts/importation.R -c $(CONFIG) -j $(NCOREPER)") + command_name <- "$(RSCRIPT) $(PIPELINE)/R/scripts/importation.R -c $(CONFIG) -j $(NCOREPER)" touch_name <- paste0("touch ",target_name) return(paste0( target_name, ": ", @@ -70,21 +80,58 @@ importation_make_command <- function(simulation,prefix=""){ )) } -filter_target_name <- function(simulation, prefix = "" ){ - paste0(".files/",prefix,simulation,"_filter") +build_location_setup_target_name <- function() { + return(file.path(config$spatial_setup$base_path, config$spatial_setup$mobility)) } -filter_make_command <- function(simulation,prefix=""){ - target_name <- filter_target_name(simulation,prefix) - dependency_name <- importation_target_name(simulation, prefix=prefix) - command_name<- paste0("$(RSCRIPT) $(PIPELINE)/R/scripts/create_filter.R -c $(CONFIG)") - touch_name <- paste0("touch ",target_name) - return(paste0( - target_name, ": .files/directory_exists ", - dependency_name, "\n", - "\t",command_name, "\n", - "\t",touch_name, "\n" - )) +geodata_name <- function() { + return(file.path(config$spatial_setup$base_path, config$spatial_setup$geodata)) +} + +build_US_setup_make_command <- function() { + command_name <- paste0(build_location_setup_target_name(),":\n") + command_name <- paste0(command_name, "\tmkdir -p ", config$spatial_setup$base_path, "\n") + command_name <- paste0(command_name, "\t$(RSCRIPT) $(PIPELINE)/R/scripts/build_US_setup.R -c $(CONFIG) -p $(PIPELINE)") + return(command_name) +} + +build_nonUS_pop_setup_name <- function() { + return(file.path(config$spatial_setup$base_path, config$spatial_setup$nonUS_pop_setup)) +} + +build_nonUS_mobility_setup_name <- function() { + return(file.path(config$spatial_setup$base_path, config$spatial_setup$nonUS_mobility_setup)) +} + +build_nonUS_setup_make_command <- function() { + command_name <- paste0(build_location_setup_target_name(),":\n") + command_name <- paste0(command_name, "\tmkdir -p ", config$spatial_setup$base_path, "\n") + command_name <- paste0(command_name, "\t$(RSCRIPT) $(PIPELINE)/R/scripts/build_nonUS_setup.R -c $(CONFIG) -p $(PIPELINE) -n ", build_nonUS_pop_setup_name(), " -m ", build_nonUS_mobility_setup_name()) + return(command_name) +} + +create_seeding_target_name <- function() { + return(file.path(config$seeding$lambda_file)) +} + +create_US_seeding_make_command <- function() { + command_name <- paste0(create_seeding_target_name(),":\n") + command_name <- paste0(command_name, "\t$(RSCRIPT) $(PIPELINE)/R/scripts/create_seeding.R -c $(CONFIG)") + return(command_name) +} + +create_nonUS_seeding_casedata_name <- function() { + return(file.path(config$seeding$casedata_file)) +} + +create_US_seeding_casedata_name <- function() { + return(file.path("data/case_data/case_data.csv")) +} + +create_nonUS_seeding_make_command <- function() { + command_name <- paste0(create_seeding_target_name(),":\n") + command_name <- paste0(command_name, "\t$(RSCRIPT) $(PIPELINE)/R/scripts/create_seeding.R -c $(CONFIG) -d ", create_nonUS_seeding_casedata_name()) + return(command_name) } hospitalization_target_name <- function(simulation,scenario,deathrate, prefix = ''){ @@ -118,9 +165,11 @@ simulation_make_command <- function(simulation,scenario,previous_simulation, pre previous_simulation <- 0 } if(using_importation){ - dependency_name <- paste(dependency_name,filter_target_name(simulation,prefix),importation_target_name(simulation,prefix)) + dependency_name <- paste(dependency_name,importation_target_name(simulation,prefix)) } - command_name <- paste0("$(PYTHON) $(PIPELINE)/simulate.py -c $(CONFIG) -s ",scenario," -n ",simulation - previous_simulation," -j $(NCOREPER)") + dependency_name <- paste(dependency_name, build_location_setup_target_name()) + dependency_name <- paste(dependency_name, create_seeding_target_name()) + command_name <- paste0("$(PYTHON) -m SEIR -c $(CONFIG) -s ",scenario," -n ",simulation - previous_simulation," -j $(NCOREPER)") touch_name <- paste0("touch ",target_name) return(paste0( target_name, ": .files/directory_exists ", @@ -130,6 +179,52 @@ simulation_make_command <- function(simulation,scenario,previous_simulation, pre )) } +report_html_target_name <- function(report_name) { + return(sprintf("notebooks/%s/%s_report.html", report_name, report_name)) +} + +report_html_make_command <- function(report_name, scenarios, simulations, deathrates, config) { + rmd_file = report_rmd_target_name(report_name) + s <- run_dependencies(scenarios, simulations, deathrates) + s <- paste0(s, " ", rmd_file,"\n") + + renderCmd = sprintf("\t$(RSCRIPT) -e 'rmarkdown::render(\"%s\"", rmd_file) + renderCmd = paste0(renderCmd, sprintf(", params=list(state_usps=\"%s\"", config$report$state_usps)) + if(length(config$report$continue_on_error) != 0) + { + renderCmd = paste0(renderCmd, + sprintf(", continue_on_error=%s", config$report$continue_on_error)) + } + renderCmd = paste0(renderCmd, "))'") + + s <- paste0(s, renderCmd, "\n") + return(s) +} + +report_rmd_target_name <- function(report_name) { + return(sprintf("notebooks/%s/%s_report.Rmd", report_name, report_name)) +} + +report_rmd_make_command <- function(report_name) { + return(sprintf("%s: +\tmkdir -p notebooks/%s +\t$(RSCRIPT) -e 'rmarkdown::draft(\"$@\",template=\"state_report\",package=\"report.generation\",edit=FALSE)'\n", +report_rmd_target_name(report_name), report_name)) +} + +run_dependencies <- function(scenarios, simulations, deathrates, prefix="") { + s <- ":" + for(scenario in scenarios) + { + s <- paste0(s, " ", simulation_target_name(simulations, scenario, prefix = prefix)) + for(deathrate in deathrates) + { + s <- paste0(s, " ", hospitalization_target_name(simulations, scenario, deathrate, prefix=prefix)) + } + } + return(s) +} + sink("Makefile") @@ -147,54 +242,35 @@ cat(paste0("CONFIG=",opt$config,"\n\n")) # If generating report, first target is the html file. # Otherwise, first target is run. # For both, the dependencies include all the simulation targets. -if(generating_report) -{ - rmd_file = sprintf("notebooks/%s/%s_report.Rmd", report_name, report_name) - report_html_target_name = sprintf("notebooks/%s/%s_report.html", report_name, report_name) - cat(paste0(report_html_target_name,":")) +if(generating_report) { + cat(report_html_target_name(report_name)) + cat(report_html_make_command(report_name, scenarios, simulations, deathrates, config)) + cat(report_rmd_make_command(report_name)) } else { - cat("run:") + cat("run") + cat(run_dependencies(scenarios, simulations, deathrates, prefix = file_prefix)) } -for(scenario in scenarios) -{ - cat(" ") - cat(simulation_target_name(simulations,scenario)) - for(deathrate in deathrates) - { - cat(" ") - cat(hospitalization_target_name(simulations,scenario,deathrate)) - } -} +cat("\n") -if(generating_report) -{ - # final target dependency for .html is the Rmd - cat(sprintf(" %s\n", rmd_file)) +if(building_US_setup){ + cat(build_US_setup_make_command()) +} else{ + cat(build_nonUS_setup_make_command()) +} - renderCmd = sprintf("\t$(RSCRIPT) -e 'rmarkdown::render(\"%s\"", rmd_file) - renderCmd = paste0(renderCmd, sprintf(", params=list(state_usps=\"%s\"", config$report$state_usps)) - if(length(config$report$continue_on_error) != 0) - { - renderCmd = paste0(renderCmd, - sprintf(", continue_on_error=%s", config$report$continue_on_error)) - } - renderCmd = paste0(renderCmd, "))'") - cat(renderCmd) +cat("\n") - rmd_target = sprintf(" -%s: -\tmkdir -p notebooks/%s -\t$(RSCRIPT) -e 'rmarkdown::draft(\"$@\",template=\"state_report\",package=\"report.generation\",edit=FALSE)'", -rmd_file, report_name) - cat(rmd_target) +if(building_US_setup){ + cat(create_US_seeding_make_command()) +} else{ + cat(create_nonUS_seeding_make_command()) } + cat("\n") if(using_importation){ for(sim_idx in seq_len(length(simulations))){ - - cat(filter_make_command(simulations[sim_idx])) cat(importation_make_command(simulations[sim_idx])) } } @@ -203,51 +279,68 @@ for(sim_idx in seq_len(length(simulations))){ sim <- simulations[sim_idx] prev_sim <- dplyr::lag(simulations)[sim_idx] for(scenario in scenarios){ - cat(simulation_make_command(sim,scenario,prev_sim)) + cat(simulation_make_command(sim,scenario,prev_sim, prefix = file_prefix)) for(deathrate in deathrates){ - cat(hospitalization_make_command(sim,scenario,deathrate)) + cat(hospitalization_make_command(sim,scenario,deathrate, prefix = file_prefix)) } } } cat(" .files/directory_exists: -\tmkdir .files +\tmkdir -p .files \ttouch .files/directory_exists ") -cat(paste0(" +cat("\n\nrerun: rerun_simulations rerun_hospitalization") -rerun: rerun_simulations rerun_hospitalization" -)) +if(using_importation){ + cat(" rerun_importation") +} +cat("\n") if(using_importation){ - cat(paste0("rerun_importation rerun_filter -clean_filter: rerun_filter -\trm -rf ",config$dynfilter_path," +cat(paste0(" clean_importation: rerun_importation \trm -rf data/case_data \trm -rf importation +rerun_importation: +\trm -f .files/*_importation ")) } +if(use_file_prefix){ +cat(paste0(" +rerun_simulations: clean_simulations +\trm -f .files/*", file_prefix, scenario, "_simulation* +rerun_hospitalization: +\trm -f .files/*", file_prefix, simulations, "_hospitalization* +clean: clean_simulations clean_hospitalization" +)) +}else{ cat(paste0(" -rerun_filter: -\trm -f .files/1*_filter -rerun_importation: -\trm -f .files/1*_importation rerun_simulations: clean_simulations -\trm -f .files/1*_simulation* +\trm -f .files/*_simulation* rerun_hospitalization: -\trm -f .files/1*_hospitalization* -clean: clean_simulations clean_hospitalization")) +\trm -f .files/*_hospitalization* +clean: clean_simulations clean_hospitalization clean_location_setup" +)) +} if(using_importation){ - cat(" clean_importation clean_filter") + cat(" clean_importation") } if(generating_report) { cat(" clean_reports") } +if(use_file_prefix){ +cat(" +\trm -rf .files +clean_simulations: rerun_simulations +\trm -rf model_output/", file_prefix, +"clean_hospitalization: rerun_hospitalization +\trm -rf hospitalization/", file_prefix) +}else{ cat(" \trm -rf .files clean_simulations: rerun_simulations @@ -255,11 +348,24 @@ clean_simulations: rerun_simulations clean_hospitalization: rerun_hospitalization \trm -rf hospitalization ") +} if(generating_report) { - cat(paste0(" +cat(paste0(" clean_reports: -\trm -f ",report_html_target_name)) +\trm -f ",report_html_target_name(report_name))) +} +if(building_US_setup) +{ +cat(paste0(" +clean_location_setup: +\trm -f ", build_location_setup_target_name(), " ", geodata_name(), " ", create_US_seeding_casedata_name() +)) +}else{ +cat(paste0(" +clean_location_setup: +\techo 'NOT REMOVING ANYTHING'" +)) } diff --git a/R/scripts/setup_initial_nonUS_data.R b/R/scripts/setup_initial_nonUS_data.R new file mode 100644 index 000000000..659a2af9e --- /dev/null +++ b/R/scripts/setup_initial_nonUS_data.R @@ -0,0 +1,281 @@ +## +# @file +# @brief Creates a filter file +# +# @details +# +# +# ## Configuration Items +# +# ```yaml +# dynfilter_path: +# start_date: +# end_date: +# +# spatial_setup: +# setup_name: +# base_path: +# geodata: +# nodenames: +# ``` +# +# ## Input Data +# +# * {spatial_setup::base_path}/{spatial_setup::geodata} is a csv with column {spatial_setup::nodenames} that denotes the geoids +# +# ## Output Data +# +# * importation/{spatial_setup::setup_name}/case_data/jhucsse_case_data.csv is a csv with case data from JHU CSSE +# * {dynfilter_path}: filter file +# + +## @cond + +# SETUP ------------------------------------------------------------------- + +library(tidyverse) +library(covidSeverity) +library(sf) +library(globaltoolboxlite) +library(foreach) + + + +#................................................................. + +# Pulling arguments from command line (comment out if using the next section) + +option_list = list( + optparse::make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file"), + optparse::make_option(c("-w", "--worldpop"), action="store", default=FALSE, type='logical', help="whether to download worldpop data"), # should be set to TRUE for first run, then FALSE after that + optparse::make_option(c("-v", "--varname"), action="store", default="ADMIN2", type='character', help="variable name of geounits in shapefile. this is changed by this script to 'ADMIN2'"), + optparse::make_option(c("-j", "--jobs"), action="store", default="4", type='integer', help="Number of cores (jobs) to run in parallel") +) +opts = optparse::parse_args(optparse::OptionParser(option_list=option_list)) + +# Variables defined by the command line arguments +config <- covidcommon::load_config(opts$config) +cores <- opts$jobs +shp_loc_var <- opts$varname # Admin2 variable name in the shapefile +download_worldpop <- opts$worldpop # Set to TRUE for the first run. Otherwise false as this takes a while + + +#................................................................. + +# ## IF RUNNING FROM THE SCRIPT AND NOT COMMAND LINE, UNCOMMENT THIS SECTION, COMMENT OUT THE ABOVE SECTION, AND SET THESE PARAMETERS +# config <- covidcommon::load_config("config.yml") +# cores <- 4 +# shp_loc_var <- "ADMIN2" # Admin2 variable name in the shapefile +# download_worldpop <- TRUE # Set to TRUE for the first run. Otherwise false as this takes a while + +#................................................................. + + + +if (length(config) == 0) { + stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") +} + + + + +# Pull variables from config +base_data_path <- config$spatial_setup$base_path +country_code <- config$spatial_setup$modeled_states +country_name <- globaltoolboxlite::get_country_name_ISO3(country_code) +# check that the codes is valid +if(any(is.na(country_name))){ + # In case we are using fake countries + if (exists(config$spatial_setup$modeled_states_names) & exists(config$spatial_setup$modeled_states_nums)){ + country_name <- config$spatial_setup$modeled_states_names + country_num <- stringr::str_pad(config$spatial_setup$modeled_states_nums, 3, "left", 0) + } else { + stop(paste0("Country code(s): [", paste(country_code, collapse = ", "), "] not recognized as an official ISO-3 code. Please revise in the config.")) + } +} else { + country_num <- stringr::str_pad(globaltoolboxlite::get_UNcode_from_ISO3(country_code), 3, "left", 0) +} + +census_year <- config$spatial_setup$census_year +geoid_len <- config$spatial_setup$geoid_len +shp <- file.path(base_data_path, config$spatial_setup$shapefile) + +# OD matrix of mobility with row +mobility_od_matrix <- file.path(base_data_path, "geodata/mobility_data_counts.csv") + + + + +# SEVERITY ---------------------------------------------------------- + +#devtools::install_github(repo='HopkinsIDD/covidSeverity') + +# Download the geotiffs +if (download_worldpop){ + filenames <- NULL + for (c in seq_len(length(country_code))){ + filenames_ <- globaltoolboxlite::download_worldpop_agetifs(country=country_code[c], + year=census_year, + save_dir=file.path(base_data_path, "worldpop"), + cores=cores) + filenames_ <- c(filenames, filenames_) + } +} else { + # if not downloading, check that these files exist + all_wp_files_downloaded <- NULL + for (c in seq_len(length(country_code))){ + all_wp_files_downloaded_ <- length(list.files(file.path(base_data_path, "worldpop", country_code[c]))) == 36 # should be 36 files for every country + all_wp_files_downloaded <- c(all_wp_files_downloaded, all_wp_files_downloaded_) + } + if (!all(all_wp_files_downloaded)){ + stop(cat(paste( + paste0("ERROR: Worldpop geotiffs were not completely downloaded for: ", paste(country_code[!all_wp_files_downloaded], collapse = ", "), "."), + "Please set command line argument of '-w TRUE' and rerun to download all files", sep="\n"))) + } +} + + +# Combine data and consolidate to districts + +age_pop_data <- NULL +age_pop_10yr <- NULL + + +for (c in seq_len(length(country_code))){ + + age_pop_data_ <- globaltoolboxlite::load_worldpop_age(shp=shp, + country=country_code[c], + year=census_year, + loc_var=shp_loc_var, + save_dir=file.path(base_data_path,"worldpop"), + add_pop_to_shapefile = TRUE, + cores=cores) + + # Setup geoids + age_pop_data_ <- age_pop_data_ %>% + tibble::as_tibble() %>% + dplyr::rename(setNames(shp_loc_var, "adm2")) %>% # Rename + dplyr::arrange(as.numeric(age_l), adm2) %>% + dplyr::mutate(geoid = as.character(paste0(country_num, stringr::str_pad(as.integer(as.factor(adm2)), geoid_len-3, "left", 0))), + adm0 = country_code[c]) + + # Convert to 10-year age groups + age_pop_10yr_ <- globaltoolboxlite::convert_wp_10yr(age_pop_data_) %>% + mutate(adm0 = country_code[c]) %>% + left_join(age_pop_data_ %>% dplyr::select(adm2, geoid, adm0) %>% + dplyr::distinct(), + by=c("adm2", "adm0")) + + # Get proportions + age_pop_10yr_ <- age_pop_10yr_ %>% + dplyr::group_by(adm2, adm0, geoid) %>% + dplyr::mutate(prop = pop / sum(pop)) %>% + dplyr::ungroup() + + ## Save individual countries (not sure if needed right now) + # dir.create(file.path(base_data_path, country_code[c]), recursive = TRUE) + # readr::write_csv(age_pop_10yr_, file.path(base_data_path, country_code[c], paste0(country_code[c], "_age_pop_10yr.csv"))) + # readr::write_csv(age_pop_data_, file.path(base_data_path, country_code[c], paste0(country_code[c], "_age_pop_data.csv"))) + + age_pop_data <- dplyr::bind_rows(age_pop_data, age_pop_data_) + age_pop_10yr <- dplyr::bind_rows(age_pop_10yr, age_pop_10yr_) + +} + +readr::write_csv(age_pop_10yr, file.path(base_data_path, paste0("age_pop_10yr.csv"))) +readr::write_csv(age_pop_data, file.path(base_data_path, paste0("age_pop_data.csv"))) + + +# Estimate parameters - All included countries done at once +geo_age_params <- covidSeverity::get_ageadjustments(age_pop_10yr, + cores=cores, + n_sims=40, + n_preds=1000, + age_grps=c(seq(0,80,by=10),100), + googlesheet_access=FALSE, + output_dir=base_data_path, + pop_name=NULL) + + + + +# POPULATION_DATA.CSV ----------------------------------------------------- +# Use WorldPop data to get total population by geounit -- this is used by the mobility component + +age_pop_data <- readr::read_csv(file.path(base_data_path, paste0("age_pop_data.csv"))) + +population_data <- age_pop_data %>% + dplyr::group_by(geoid, adm2, adm0) %>% + dplyr::summarise(POP = round(sum(pop))) %>% + dplyr::select(ADMIN0=adm0, ADMIN2=adm2, GEOID=geoid, POP) + +dir.create(file.path(base_data_path, "geodata"), recursive = TRUE, showWarnings = FALSE) +readr::write_csv(population_data, file.path(base_data_path, "geodata/population_data.csv")) + + + + + +# SHAPEFILE --------------------------------------------------------------- +# This section verifies that the shapefile has a variable `GEOID` +# that matches with the other data + +# Read +adm2 <- sf::read_sf(shp) %>% dplyr::rename(setNames(shp_loc_var, "ADMIN2")) +population_data <- readr::read_csv(file.path(base_data_path, "geodata/population_data.csv")) + +# Add population +if ("pop" %in% colnames(adm2)){ + adm2 <- adm2 %>% dplyr::select(-pop) +} +adm2 <- adm2 %>% + dplyr::left_join(population_data %>% dplyr::select(POP, GEOID, ADMIN0, ADMIN2), + by=c("ADMIN2")) +adm2 <- adm2 %>% dplyr::rename(pop=POP, geoid=GEOID) + + +# Save it back in the same name +sf::st_write(adm2, shp, delete_layer=TRUE) + + + +# mobility_data.csv ------------------------------------------------------------ + +mobility <- readr::read_csv(mobility_od_matrix) %>% as.data.frame() +rownames_ <- as.character(mobility[,1]) +mobility <- as.matrix(mobility[,-1]) +row.names(mobility) <- rownames_ + +# Get names and geoids from the shapefile +geoid_info <- adm2 %>% + dplyr::select(geoid, ADMIN0, ADMIN2) %>% + sf::st_set_geometry(NULL) %>% + dplyr::arrange(geoid, ADMIN0) + +# first check that the names match those of the population data +if(all.equal(sort(colnames(mobility)), sort(geoid_info$ADMIN2))==TRUE){ + mobility <- mobility %>% + tibble::as_tibble(rownames = NA) %>% + tibble::rownames_to_column(var="origin") %>% + tidyr::pivot_longer(cols = -origin, names_to = "destination", values_to = "FLOW") + + mobility <- mobility %>% + dplyr::full_join(population_data %>% dplyr::select(ADMIN2, POP, GEOID), by = c("origin"="ADMIN2")) %>% + rename(pop_orig = POP, + OGEOID = GEOID) %>% + dplyr::full_join(population_data %>% dplyr::select(ADMIN2, POP, GEOID), by = c("destination"="ADMIN2")) %>% + rename(pop_dest = POP, + DGEOID = GEOID) + + readr::write_csv(mobility, file.path(base_data_path, "geodata/mobility_data.csv")) + + print(paste0("SUCCESS: Mobility data saved to ", file.path(base_data_path, "geodata/mobility_data.csv"))) + +} else { + + print(paste0("ERROR: Location names not equal between ", mobility_od_matrix, " and population_data.csv. Please check and re-run MOBILITY setup.")) + +} + + + diff --git a/README.md b/README.md index 251a4393b..82a4ea538 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,9 @@ Welcome to the Johns Hopkins University Infectious Disease Dynamics COVID-19 Wor We recommend that most new users use the code from the stable `master` branch. Please post questions to GitHub issues with the `question` tag. We are prioritizing direct support for individuals engaged in public health planning and emergency response. -For more information on getting started, please visit our [Getting Started wiki](https://github.com/HopkinsIDD/COVID19_Minimal/wiki/Getting-Started) at [HopkinsIDD/COVID19_Minimal](https://github.com/HopkinsIDD/COVID19_Minimal). We are trying to keep this page up-to-date for use with the `master` branch. +For more information on getting started, please visit our [wiki](https://github.com/HopkinsIDD/COVID19_Minimal/wiki) at [HopkinsIDD/COVID19_Minimal](https://github.com/HopkinsIDD/COVID19_Minimal). We are trying to keep this page up-to-date for use with the `master` branch. + +For more details on the methods and features of our model, visit our [preprint on medRxiv](https://www.medrxiv.org/content/10.1101/2020.06.11.20127894v1). This open-source project is licensed under GPL v3.0. @@ -30,7 +32,7 @@ To start the container: docker run -v ~/mysrcdir:/home/app/src -it hopkinsidd/covidscenariopipeline:latest ``` -Replace `mysrcdir` with where the code is mounted on your machine; it will +replacing `mysrcdir` with the path where the code is mounted on your machine. This code will then be available in the `/home/app/src` directory inside the container. You'll be dropped to the bash prompt where you can run the Python or diff --git a/SEIR/NPI/Reduce.py b/SEIR/NPI/Reduce.py new file mode 100644 index 000000000..d0ba9c951 --- /dev/null +++ b/SEIR/NPI/Reduce.py @@ -0,0 +1,106 @@ +import pandas as pd +import pyarrow as pa +import numpy as np + +from .base import NPIBase + +REDUCE_PARAMS = ["alpha", "r0", "gamma", "sigma"] + +class Reduce(NPIBase): + def __init__(self, *, npi_config, global_config, geoids): + self.start_date = global_config["start_date"].as_date() + self.end_date = global_config["end_date"].as_date() + + self.geoids = geoids + + # Optional config fields "period_start_date" and "period_end_date" + # If unspecified, runs from global start_date to end_date + self.period_start_date = npi_config["period_start_date"].as_date() \ + if npi_config["period_start_date"].exists() else self.start_date + self.period_end_date = npi_config["period_end_date"].as_date() \ + if npi_config["period_end_date"].exists() else self.end_date + + if not (self.start_date <= self.period_start_date <= self.end_date): + raise ValueError(f"period_start_date ({self.period_start_date}) is not between global dates [{self.start_date}, {self.end_date}]") + if not (self.start_date <= self.period_end_date <= self.end_date): + raise ValueError(f"period_end_date ({self.period_end_date}) is not between global dates [{self.start_date}, {self.end_date}]") + if self.period_end_date < self.start_date: + raise ValueError(f"period_end_date ({self.period_end_date}) is less than period_start_date ({self.period_start_date})") + + # Optional config field "affected_geoids" + # If values of "affected_geoids" is "all" or unspecified, run on all geoids. + # Otherwise, run only on geoids specified. + affected = geoids + if "affected_geoids" in npi_config and npi_config["affected_geoids"].get() != "all": + affected = [] + for n in npi_config["affected_geoids"]: + node = str(n.get()) # because confuse may read as an int + if node not in geoids: + raise ValueError(f"Invalid config value {n.name} ({node}) not in geoids") + affected.append(node) + + # Get name of the parameter to reduce + param_name = npi_config["parameter"].as_str().lower() + if param_name not in REDUCE_PARAMS: + raise ValueError(f"Invalid parameter name: {param_name}. Must be one of {REDUCE_PARAMS}") + self.reduced_param = param_name + + # Create reduction + self.npi = pd.DataFrame(0.0, index=self.geoids, + columns=pd.date_range(self.start_date, self.end_date)) + self.dist = npi_config["value"].as_random_distribution() + period_range = pd.date_range(self.period_start_date, self.period_end_date) + npi_draw = np.tile(self.dist(size=len(affected)), (len(period_range), 1)).T + self.npi.loc[affected, period_range] = npi_draw + + if "fatigue_rate" in npi_config: + self.fatig_rate = npi_config["fatigue_rate"].as_random_distribution() + if "fatigue_min" in npi_config: + self.fatig_min = npi_config["fatigue_min"].as_evaled_expression() + else: + self.fatig_min = 0 + + self.fatig_freq = npi_config["fatigue_frequency_days"].as_evaled_expression() + if ("fatigue_type" in npi_config) and (npi_config["fatigue_type"].as_str() == 'geometric'): + self.fatig_rate = 1 - self.fatig_rate(size=len(affected)) + self.npi.loc[affected, period_range] =( npi_draw * \ + np.tile(self.fatig_rate, (len(period_range), 1)).T ** \ + (np.arange(0,len(period_range))/self.fatig_freq) \ + ).clip(self.fatig_min) + + else: + self.fatig_rate = self.fatig_rate(size=len(affected)) + self.npi.loc[affected, period_range] =(npi_draw - \ + np.tile(self.dist(size=len(affected)), (len(period_range), 1)).T * \ + np.tile(self.fatig_rate, (len(period_range), 1)).T * \ + (np.arange(0,len(period_range))/self.fatig_freq)).clip(self.fatig_min) + + if "fatigue_min_relative" in npi_config: + fatig_relmin = npi_config["fatigue_min_relative"].as_evaled_expression() + self.npi.loc[affected, period_range] = self.npi.loc[affected, period_range].clip(npi_draw*fatig_relmin) + + # Validate + if (self.npi == 0).all(axis=None): + print(f"Warning: The intervention in config: {npi_config.name} does nothing.") + + if (self.npi > 1).all(axis=None): + raise ValueError(f"The intervention in config: {npi_config.name} has reduction of {param_name} is greater than 1") + + def getReduction(self, param): + if param == self.reduced_param: + return self.npi + return pd.DataFrame(0.0, index=self.geoids, + columns=pd.date_range(self.start_date, self.end_date)) + + def writeReductions(self, fname, extension): + out_df = self.npi.T.assign(parameter=self.reduced_param) + + if extension == "csv": + out_df.to_csv(f"{fname}.{extension}", index_label="time") + elif extension == "parquet": + out_df["parameter"] = out_df.index + out_df = pa.Table.from_pandas(out_df, preserve_index = False) + pa.parquet.write_table(out_df,f"{fname}.{extension}") + else: + raise NotImplementedError(f"Invalid extension {extension}. Must be 'csv' or 'parquet'") + diff --git a/SEIR/NPI/ReduceR0.py b/SEIR/NPI/ReduceR0.py index 29b978564..79fc0e270 100644 --- a/SEIR/NPI/ReduceR0.py +++ b/SEIR/NPI/ReduceR0.py @@ -1,14 +1,21 @@ import pandas as pd import numpy as np +import pyarrow as pa from .base import NPIBase +# ReduceR0 is redundant with the newer Reduce NPI configured with parameter: 'r0' +# Kept for backwards compatibility class ReduceR0(NPIBase): def __init__(self, *, npi_config, global_config, geoids): self.start_date = global_config["start_date"].as_date() self.end_date = global_config["end_date"].as_date() + self.geoids = geoids + + # Optional config fields "period_start_date" and "period_end_date" + # If unspecified, runs from global start_date to end_date self.period_start_date = npi_config["period_start_date"].as_date() \ if npi_config["period_start_date"].exists() else self.start_date self.period_end_date = npi_config["period_end_date"].as_date() \ @@ -23,7 +30,7 @@ def __init__(self, *, npi_config, global_config, geoids): self.dist = npi_config["value"].as_random_distribution() - # Optional "affected_geoids" config field. + # Optional config field "affected_geoids" # If values of "affected_geoids" is "all" or unspecified, run on all geoids. # Otherwise, run only on geoids specified. affected = geoids @@ -38,10 +45,55 @@ def __init__(self, *, npi_config, global_config, geoids): self.npi = pd.DataFrame(0.0, index=geoids, columns=pd.date_range(self.start_date, self.end_date)) period_range = pd.date_range(self.period_start_date, self.period_end_date) - self.npi.loc[affected, period_range] = np.tile(self.dist(size=len(affected)), (len(period_range), 1)).T + npi_draw = np.tile(self.dist(size=len(affected)), (len(period_range), 1)).T + self.npi.loc[affected, period_range] = npi_draw + + if "fatigue_rate" in npi_config: + self.fatig_rate = npi_config["fatigue_rate"].as_random_distribution() + if "fatigue_min" in npi_config: + self.fatig_min = npi_config["fatigue_min"].as_evaled_expression() + else: + self.fatig_min = 0 + + self.fatig_freq = npi_config["fatigue_frequency_days"].as_evaled_expression() + if ("fatigue_type" in npi_config) and (npi_config["fatigue_type"].as_str() == 'geometric'): + self.fatig_rate = 1 - self.fatig_rate(size=len(affected)) + self.npi.loc[affected, period_range] =( npi_draw * \ + np.tile(self.fatig_rate, (len(period_range), 1)).T ** \ + (np.arange(0,len(period_range))/self.fatig_freq) \ + ).clip(self.fatig_min) - if self.npi.to_numpy(copy=True).nonzero()[0].size == 0: + else: + self.fatig_rate = self.fatig_rate(size=len(affected)) + self.npi.loc[affected, period_range] =(npi_draw - \ + np.tile(self.dist(size=len(affected)), (len(period_range), 1)).T * \ + np.tile(self.fatig_rate, (len(period_range), 1)).T * \ + (np.arange(0,len(period_range))/self.fatig_freq)).clip(self.fatig_min) + + if "fatigue_min_relative" in npi_config: + fatig_relmin = npi_config["fatigue_min_relative"].as_evaled_expression() + self.npi.loc[affected, period_range] = self.npi.loc[affected, period_range].clip(npi_draw*fatig_relmin) + + if (self.npi == 0).all(axis=None): print(f"Warning: The intervention in config: {npi_config.name} does nothing.") - def get(self): - return self.npi + print("Warning: The ReduceR0 is redundant with the newer Reduce NPI template configured with parameter: r0") + + def getReduction(self, param): + if param == 'r0': + return self.npi + return pd.DataFrame(0.0, index=self.geoids, + columns=pd.date_range(self.start_date, self.end_date)) + + def writeReductions(self, fname, extension): + out_df = self.npi.T.assign(parameter="r0") + + if extension == "csv": + out_df.to_csv(f"{fname}.{extension}", index_label="time") + elif extension == "parquet": + out_df["parameter"] = out_df.index + out_df = pa.Table.from_pandas(out_df, preserve_index = False) + pa.parquet.write_table(out_df,f"{fname}.{extension}") + else: + raise NotImplementedError(f"Invalid extension {extension}. Must be 'csv' or 'parquet'") + diff --git a/SEIR/NPI/Stacked.py b/SEIR/NPI/Stacked.py index a1aff0654..a21744abf 100644 --- a/SEIR/NPI/Stacked.py +++ b/SEIR/NPI/Stacked.py @@ -1,11 +1,21 @@ import functools +import pandas as pd +import pyarrow as pa from .base import NPIBase +REDUCE_PARAMS = ["alpha", "r0", "gamma", "sigma"] class Stacked(NPIBase): def __init__(self, *, npi_config, global_config, geoids): - npis = [] + self.start_date = global_config["start_date"].as_date() + self.end_date = global_config["end_date"].as_date() + + # Gather parameter reductions + reduction_lists = {} + for param in REDUCE_PARAMS: + reduction_lists[param] = [] + for scenario in npi_config["scenarios"]: # if it's a string, look up the scenario name's config if isinstance(scenario.get(), str): @@ -16,10 +26,32 @@ def __init__(self, *, npi_config, global_config, geoids): # otherwise use the specified map as the config scenario_npi_config = scenario - npi = NPIBase.execute(npi_config=scenario_npi_config, global_config=global_config, geoids=geoids) - npis.append(npi.get()) + sub_npi = NPIBase.execute(npi_config=scenario_npi_config, global_config=global_config, geoids=geoids) + + for p in REDUCE_PARAMS: + reduction_lists[p].append(sub_npi.getReduction(p)) + + # Calculate reductions + self.reductions = {} + for param, reduction_list in reduction_lists.items(): + self.reductions[param] = 1 - functools.reduce(lambda a,b : a * (1-b) , reduction_list, 1) + + def getReduction(self, param): + return self.reductions[param] + + def writeReductions(self, fname, extension): + p_dfs = [] + for p_name, p_df in self.reductions.items(): + if (p_df == 0.0).all(axis=None): + continue + p_dfs.append(p_df.T.assign(parameter=p_name)) + out_df = pd.concat(p_dfs) - #self.npi = 1 - functools.reduce(lambda a, b: a * (1 - b), npis) - self.npi = 1 - functools.reduce(lambda a,b : a * (1-b) , npis, 1) - def get(self): - return self.npi + if extension == "csv": + out_df.to_csv(f"{fname}.{extension}", index_label="time") + elif extension == "parquet": + out_df["parameter"] = out_df.index + out_df = pa.Table.from_pandas(out_df, preserve_index = False) + pa.parquet.write_table(out_df,f"{fname}.{extension}") + else: + raise NotImplementedError(f"Invalid extension {extension}. Must be 'csv' or 'parquet'") diff --git a/SEIR/NPI/base.py b/SEIR/NPI/base.py index fa68cbfc2..71cffc597 100644 --- a/SEIR/NPI/base.py +++ b/SEIR/NPI/base.py @@ -9,7 +9,11 @@ def __init_subclass__(cls, **kwargs): NPIBase.__plugins__[cls.__name__] = cls @abc.abstractmethod - def get(self): + def getReduction(self, param): + pass + + @abc.abstractmethod + def writeReductions(self, fname, extension): pass def execute(*, npi_config, global_config, geoids): diff --git a/SEIR/__main__.py b/SEIR/__main__.py new file mode 100644 index 000000000..883ce106a --- /dev/null +++ b/SEIR/__main__.py @@ -0,0 +1,4 @@ +from . import simulate + +if __name__ == "__main__": + simulate.simulate() diff --git a/SEIR/seir.py b/SEIR/seir.py index 816e74e2b..75414e27a 100644 --- a/SEIR/seir.py +++ b/SEIR/seir.py @@ -1,12 +1,10 @@ import itertools import time -import uuid +import warnings -from numba import jit import numpy as np import pandas as pd import scipy -import os import tqdm.contrib.concurrent from . import NPI, setup @@ -14,6 +12,15 @@ import pyarrow.parquet as pq import pyarrow as pa +try: + # ignore DeprecationWarning inside numba + with warnings.catch_warnings() as w: + warnings.simplefilter("ignore") + + from steps import steps_SEIR_nb +except ModuleNotFoundError as e: + raise RuntimeError("Missing compiled module, please run `python setup.py install`") from e + ncomp = 7 S, E, I1, I2, I3, R, cumI = np.arange(ncomp) @@ -21,19 +28,17 @@ def onerun_SEIR(sim_id, s): scipy.random.seed() - sim_id_str = str(sim_id).zfill(9) - npi = NPI.NPIBase.execute(npi_config=s.npi_config, global_config=config, geoids=s.spatset.nodenames) - npi = npi.get().T seeding = setup.seeding_draw(s, sim_id) mobility_geoid_indices = s.mobility.indices mobility_data_indices = s.mobility.indptr mobility_data = s.mobility.data - parameters = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes, s.dt, npi) + p_draw = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes) + parameters = setup.parameters_reduce(p_draw, npi, s.dt) - states = steps_SEIR_nb(parameters, + states = steps_SEIR_nb(*parameters, seeding, s.dt, s.t_inter, s.nnodes, s.popnodes, mobility_geoid_indices, mobility_data_indices, mobility_data, s.dynfilter) @@ -64,19 +69,18 @@ def onerun_SEIR(sim_id, s): out_df['comp'].replace(R, 'R', inplace=True) out_df['comp'].replace(cumI, 'cumI', inplace=True) out_df['comp'].replace(ncomp, 'diffI', inplace=True) + sim_id_str = str(sim_id + s.first_sim_index - 1).zfill(9) if s.write_csv: - npi.to_csv(f"{s.paramdir}{sim_id}.snpi.csv", index_label="time") - setup.parameters_write(parameters, f"{s.paramdir}{sim_id_str}.spar","csv") + npi.writeReductions(f"{s.paramdir}{sim_id_str}.snpi","csv") + setup.parameters_write(parameters, f"{s.paramdir}{sim_id_str}.spar", "csv") + out_df.to_csv( f"{s.datadir}{sim_id}.seir.csv", index='time', index_label='time') if s.write_parquet: - npi['time'] = npi.index - pa_npi = pa.Table.from_pandas(npi,preserve_index = False) - pa.parquet.write_table(pa_npi,f"{s.paramdir}{sim_id_str}.snpi.parquet") - - setup.parameters_write(parameters, f"{s.paramdir}{sim_id_str}.spar","parquet") + npi.writeReductions(f"{s.paramdir}{sim_id_str}.snpi", "parquet") + setup.parameters_write(p_draw, f"{s.paramdir}{sim_id_str}.spar", "parquet") out_df['time'] = out_df.index pa_df = pa.Table.from_pandas(out_df, preserve_index = False) @@ -99,71 +103,3 @@ def run_parallel(s, *, n_jobs=1): >> {s.nsim} simulations completed in {time.monotonic()-start:.1f} seconds """) - -@jit(nopython=True) -def steps_SEIR_nb(p_vec, seeding, dt, t_inter, nnodes, popnodes, - mobility_row_indices, mobility_data_indices, mobility_data, dynfilter): - """ - Made to run just-in-time-compiled by numba, hence very descriptive and using loop, - because loops are expanded by the compiler hence not a problem. - as there is very few authorized function. Needs the nopython option to be fast. - """ - alpha, beta, sigma, gamma = p_vec - t = 0 - - y = np.zeros((ncomp, nnodes)) - y[S, :] = popnodes - states = np.zeros((ncomp, nnodes, len(t_inter))) - - exposeCases = np.empty(nnodes) - incidentCases = np.empty(nnodes) - incident2Cases = np.empty(nnodes) - incident3Cases = np.empty(nnodes) - recoveredCases = np.empty(nnodes) - - p_infect = 1 - np.exp(-dt * sigma) - p_recover = 1 - np.exp(-dt * gamma) - - percent_who_move = np.zeros(nnodes) - percent_day_away = 0.5 - for j in range(nnodes): - percent_who_move[j] = mobility_data[mobility_data_indices[j]:mobility_data_indices[j+1] ].sum() / popnodes[j] - - for it, t in enumerate(t_inter): - if (it % int(1 / dt) == 0): - y[E] = y[E] + seeding[int(t)] - y[S] = y[S] - seeding[int(t)] - y[S] = y[S] * (y[S] > 0) - - for i in range(nnodes): - p_expose = 1.0 - np.exp(-dt * ( - ((1 - percent_day_away * percent_who_move[i] ) * beta[it][i] * (y[I1][i] + y[I2][i] + y[I3][i])**alpha / popnodes[i] ) + # Staying at home FoI - ( - percent_day_away * mobility_data[mobility_data_indices[i]:mobility_data_indices[i+1] ] / popnodes[i] * # Probability of going there - beta[it][mobility_row_indices[mobility_data_indices[i]:mobility_data_indices[i+1] ] ] * # The beta for there - ( # num infected tehre - y[I1][mobility_row_indices[mobility_data_indices[i]:mobility_data_indices[i+1] ] ] + - y[I2][mobility_row_indices[mobility_data_indices[i]:mobility_data_indices[i+1] ] ] + - y[I3][mobility_row_indices[mobility_data_indices[i]:mobility_data_indices[i+1] ] ] - )**alpha / popnodes[mobility_row_indices[mobility_data_indices[i]:mobility_data_indices[i+1] ] ] # population there - ).sum() - )) - - exposeCases[i] = np.random.binomial(y[S][i], p_expose) - incidentCases[i] = np.random.binomial(y[E][i], p_infect) - incident2Cases[i] = np.random.binomial(y[I1][i], p_recover) - incident3Cases[i] = np.random.binomial(y[I2][i], p_recover) - recoveredCases[i] = np.random.binomial(y[I3][i], p_recover) - - y[S] += -exposeCases - y[E] += exposeCases - incidentCases - y[I1] += incidentCases - incident2Cases - y[I2] += incident2Cases - incident3Cases - y[I3] += incident3Cases - recoveredCases - y[R] += recoveredCases - y[cumI] += incidentCases - states[:, :, it] = y - if (it%(1/dt) == 0 and (y[cumI] < dynfilter[int(it%(1/dt))]).any()): - return -np.ones((ncomp, nnodes, len(t_inter))) - - return states diff --git a/SEIR/setup.py b/SEIR/setup.py index cdee4cc4a..ca2ee8f00 100644 --- a/SEIR/setup.py +++ b/SEIR/setup.py @@ -26,6 +26,8 @@ def __init__(self, *, setup_name, geodata_file, mobility_file, popnodes_key, nod if popnodes_key not in self.data: raise ValueError(f"popnodes_key: {popnodes_key} does not correspond to a column in geodata."); self.popnodes = self.data[popnodes_key].to_numpy() # population + if len(np.argwhere(self.popnodes == 0)): + raise ValueError(f"There are {len(np.argwhere(self.popnodes == 0))} nodes with population zero, this is not supported.") # nodenames_key is the name of the column in geodata_file with geoids if nodenames_key not in self.data: @@ -53,9 +55,6 @@ def __init__(self, *, setup_name, geodata_file, mobility_file, popnodes_key, nod else: raise ValueError(f"Mobility data must either be a .csv file in longform (recommended) or a .txt matrix file. Got {mobility_file}") - # if (self.mobility - self.mobility.T).nnz != 0: - # raise ValueError(f"mobility data is not symmetric.") - # Make sure mobility values <= the population of src node tmp = (self.mobility.T - self.popnodes).T tmp[tmp < 0] = 0 @@ -65,9 +64,18 @@ def __init__(self, *, setup_name, geodata_file, mobility_file, popnodes_key, nod for r,c,v in zip(rows, cols, values): errmsg += f"\n({r}, {c}) = {self.mobility[r,c]} > population of '{self.nodenames[r]}' = {self.popnodes[r]}" raise ValueError(f"The following entries in the mobility data exceed the source node populations in geodata:{errmsg}") + + tmp = self.popnodes - np.squeeze(np.asarray(self.mobility.sum(axis=1))) + tmp[tmp > 0] = 0 + if tmp.any(): + row, = np.where(tmp) + errmsg = "" + for r in row: + errmsg += f"\n sum accross row {r} exceed population of node '{self.nodenames[r]}' ({self.popnodes[r]}), by {-tmp[r]}" + raise ValueError(f'The following rows in the mobility data exceed the source node populations in geodata:{errmsg}') -class Setup(): +class Setup: """ This class hold a setup model setup. """ @@ -84,7 +92,8 @@ def __init__(self, *, write_csv=False, write_parquet=False, dt=1 / 6, # step size, in days - nbetas=None): # # of betas, which are rates of infection + nbetas=None, + first_sim_index = 1): # # of betas, which are rates of infection self.setup_name = setup_name self.nsim = nsim self.dt = dt @@ -98,6 +107,7 @@ def __init__(self, *, self.interactive = interactive self.write_csv = write_csv self.write_parquet = write_parquet + self.first_sim_index = first_sim_index if nbetas is None: nbetas = nsim @@ -133,6 +143,22 @@ def load_filter(self, dynfilter_path): def seeding_draw(s, sim_id): importation = np.zeros((s.t_span+1, s.nnodes)) method = s.seeding_config["method"].as_str() + if (method == 'NegativeBinomialDistributed'): + seeding = pd.read_csv(s.seeding_config["lambda_file"].as_str(), + converters={'place': lambda x: str(x)}, + parse_dates=['date']) + + dupes = seeding[seeding.duplicated(['place', 'date'])].index + 1 + if not dupes.empty: + raise ValueError(f"Repeated place-date in rows {dupes.tolist()} of seeding::lambda_file.") + + for _, row in seeding.iterrows(): + if row['place'] not in s.spatset.nodenames: + raise ValueError(f"Invalid place '{row['place']}' in row {_ + 1} of seeding::lambda_file. Not found in geodata.") + + importation[(row['date'].date()-s.ti).days][s.spatset.nodenames.index(row['place'])] = \ + np.random.negative_binomial(n= 5, p = 5/(row['amount'] + 5)) + if (method == 'PoissonDistributed'): seeding = pd.read_csv(s.seeding_config["lambda_file"].as_str(), converters={'place': lambda x: str(x)}, @@ -160,38 +186,69 @@ def seeding_draw(s, sim_id): raise NotImplementedError(f"unknown seeding method [got: {method}]") return importation -# Returns alpha, beta, sigma, and gamma parameters in a tuple -# alpha, sigma and gamma are scalars -# alpha is percentage of day spent commuting -# beta is an array of shape (nt_inter, nnodes) -def parameters_quick_draw(p_config, nt_inter, nnodes, dt, npi): - if nnodes <= 0 or nt_inter <= 0: - raise ValueError("Invalid nt_inter or nnodes") - +# Returns alpha, beta, sigma, and gamma parameters in a tuple. +# All parameters are arrays of shape (nt_inter, nnodes). +# They are returned as a tuple because it is numba-friendly for steps_SEIR_nb(). +# +# These are drawn based on the seir::parameters section of the config, passed in as p_config. +# In the config, alpha is optional with a default of 1.0. +# The other parameters sigma, gamma, and R0s are required. +def parameters_quick_draw(p_config, nt_inter, nnodes): alpha = 1.0 if "alpha" in p_config: alpha = p_config["alpha"].as_evaled_expression() + alpha = np.full((nt_inter, nnodes), alpha) sigma = p_config["sigma"].as_evaled_expression() + sigma = np.full((nt_inter, nnodes), sigma) + gamma = p_config["gamma"].as_random_distribution()() * n_Icomp - R0s = p_config["R0s"].as_random_distribution()() + gamma = np.full((nt_inter, nnodes), gamma) + R0s = p_config["R0s"].as_random_distribution()() beta = R0s * gamma / n_Icomp + beta = np.full((nt_inter, nnodes), beta) + + return (alpha, beta, sigma, gamma) + +# Returns alpha, beta, sigma, and gamma parameters in a tuple. +# All parameters are arrays of shape (nt_inter, nnodes). +# They are returned as a tuple because it is numba-friendly for steps_SEIR_nb(). +# +# They are reduced according to the NPI provided. +def parameters_reduce(p_draw, npi, dt): + alpha, beta, sigma, gamma = p_draw # tuple of dataframes - beta = np.full((nnodes, nt_inter), beta) + alpha = _parameter_reduce(alpha, npi.getReduction("alpha"), dt) + beta = _parameter_reduce(beta, npi.getReduction("r0"), dt) + sigma = _parameter_reduce(sigma, npi.getReduction("sigma"), dt) + gamma = _parameter_reduce(gamma, npi.getReduction("gamma"), dt) - npi.index = pd.to_datetime(npi.index.astype(str)) - npi = npi.resample(str(dt * 24) + 'H').ffill() - beta = np.multiply(beta, np.ones_like(beta) - npi.to_numpy().T) + return (alpha, beta, sigma, gamma) - return (alpha, beta.T, sigma, gamma) +# Helper function +def _parameter_reduce(parameter, reduction, dt): + reduction = reduction.T + reduction.index = pd.to_datetime(reduction.index.astype(str)) + reduction = reduction.resample(str(dt * 24) + 'H').ffill().to_numpy() + return parameter * (1 - reduction) +# Write parameters generated by parameters_quick_draw() to file def parameters_write(parameters, fname, extension): - out_df = pd.DataFrame([parameters[0], parameters[1][0][0]*n_Icomp / parameters[3], parameters[2], parameters[3]], index = ["alpha","R0","sigma","gamma"], columns = ["value"]) + alpha, beta, sigma, gamma = parameters + out_df = pd.DataFrame([alpha[0][0], + beta[0][0] * n_Icomp / gamma[0][0], + sigma[0][0], + gamma[0][0]], \ + index = ["alpha","R0","sigma","gamma"], columns = ["value"]) + if extension == "csv": - out_dict.to_csv(f"{fname}.{extension}", index_label="parameter") - if extension == "parquet": + out_df.to_csv(f"{fname}.{extension}", index_label="parameter") + elif extension == "parquet": out_df["parameter"] = out_df.index pa_df = pa.Table.from_pandas(out_df, preserve_index = False) pa.parquet.write_table(pa_df,f"{fname}.{extension}") + else: + raise NotImplementedError(f"Invalid extension {extension}. Must be 'csv' or 'parquet'") + diff --git a/simulate.py b/SEIR/simulate.py similarity index 80% rename from simulate.py rename to SEIR/simulate.py index 5d519c5dd..f6cf8b1a5 100755 --- a/simulate.py +++ b/SEIR/simulate.py @@ -37,10 +37,10 @@ # - ... # settings: # : -# template: choose one - "ReduceR0", "Stacked" +# template: choose one - "Reduce", ReduceR0", "Stacked" # ... # : -# template: choose one - "Reduce R0", "Stacked" +# template: choose one - "Reduce", "ReduceR0", "Stacked" # ... # # seeding: @@ -54,6 +54,19 @@ # interventions: # scenarios: # : +# template: Reduce +# parameter: choose one - "alpha, sigma, gamma, r0" +# period_start_date: +# period_end_date: +# value: +# affected_geoids: optional +# ``` +# +# If {template} is ReduceR0 +# ```yaml +# interventions: +# scenarios: +# : # template: ReduceR0 # period_start_date: # period_end_date: @@ -101,7 +114,7 @@ # # * model_output/{spatial_setup::setup_name}_[scenario]/[simulation ID].seir.[csv/parquet] # * model_parameters/{spatial_setup::setup_name}_[scenario]/[simulation ID].spar.[csv/parquet] -# * model_parameters/{spatial_setup::setup_name}_[scenario]/[simulation ID].npi.[csv/parquet] +# * model_parameters/{spatial_setup::setup_name}_[scenario]/[simulation ID].snpi.[csv/parquet] ## @cond @@ -124,6 +137,9 @@ help="override the scenario(s) run for this simulation [supports multiple scenarios: `-s Wuhan -s None`]") @click.option("-n", "--nsim", type=click.IntRange(min=1), help="override the # of simulation runs in the config file") +@click.option("-i", "--index", type=click.IntRange(min=1), + default=1, show_default=True, + help="The index of the first simulation") @click.option("-j", "--jobs", type=click.IntRange(min=1), default=multiprocessing.cpu_count(), show_default=True, help="the parallelization factor") @@ -134,7 +150,7 @@ @click.option("--write-parquet/--no-write-parquet", default=True, show_default=True, help="write parquet file output at end of simulation") @profile_options -def simulate(config_file, scenarios, nsim, jobs, interactive, write_csv, write_parquet): +def simulate(config_file, scenarios, nsim, jobs, interactive, write_csv, write_parquet,index): config.set_file(config_file) spatial_config = config["spatial_setup"] @@ -147,16 +163,17 @@ def simulate(config_file, scenarios, nsim, jobs, interactive, write_csv, write_p if not nsim: nsim = config["nsimulations"].as_number() + spatial_setup = setup.SpatialSetup( + setup_name=spatial_config["setup_name"].get(), + geodata_file=spatial_base_path / spatial_config["geodata"].get(), + mobility_file=spatial_base_path / spatial_config["mobility"].get(), + popnodes_key=spatial_config["popnodes"].get(), + nodenames_key=spatial_config["nodenames"].get()) + start = time.monotonic() for scenario in scenarios: s = setup.Setup(setup_name=config["name"].get() + "_" + str(scenario), - spatial_setup=setup.SpatialSetup( - setup_name=spatial_config["setup_name"].get(), - geodata_file=spatial_base_path / spatial_config["geodata"].get(), - mobility_file=spatial_base_path / spatial_config["mobility"].get(), - popnodes_key=spatial_config["popnodes"].get(), - nodenames_key=spatial_config["nodenames"].get() - ), + spatial_setup=spatial_setup, nsim=nsim, npi_scenario=scenario, npi_config=config["interventions"]["settings"][scenario], @@ -166,7 +183,8 @@ def simulate(config_file, scenarios, nsim, jobs, interactive, write_csv, write_p interactive=interactive, write_csv=write_csv, write_parquet=write_parquet, - dt=config["dt"].as_number()) + dt=config["dt"].as_number(), + first_sim_index = index) try: s.load_filter(config["dynfilter_path"].get()) print(' We are using a filter') @@ -175,7 +193,7 @@ def simulate(config_file, scenarios, nsim, jobs, interactive, write_csv, write_p print(f""" >> Scenario: {scenario} ->> Starting {s.nsim} model runs on {jobs} processes +>> Starting {s.nsim} model runs beginning from {s.first_sim_index} on {jobs} processes >> Setup *** {s.setup_name} *** from {s.ti} to {s.tf} >> writing to folder : {s.datadir}{s.setup_name} """) diff --git a/SEIR/steps_source.py b/SEIR/steps_source.py new file mode 100644 index 000000000..9f2c34b48 --- /dev/null +++ b/SEIR/steps_source.py @@ -0,0 +1,84 @@ +from numba.pycc import CC +import numpy as np + +cc = CC("steps") +cc.verbose = True + +ncomp = 7 +S, E, I1, I2, I3, R, cumI = np.arange(ncomp) + + +@cc.export( + "steps_SEIR_nb", + "float64[:,:,:](float64[:,:], float64[:,:], float64[:,:], float64[:,:], float64[:,:]," + "float64, float64[:], int64, int64[:], int32[:], int32[:], float64[:], float64[:,:])" +) +def steps_SEIR_nb(alpha, beta, sigma, gamma, seeding, dt, t_inter, nnodes, popnodes, + mobility_row_indices, mobility_data_indices, mobility_data, dynfilter): + """ + Made to run just-in-time-compiled by numba, hence very descriptive and using loop, + because loops are expanded by the compiler hence not a problem. + as there is very few authorized function. Needs the nopython option to be fast. + """ + y = np.zeros((ncomp, nnodes)) + y[S, :] = popnodes + states = np.zeros((ncomp, nnodes, len(t_inter))) + + exposeCases = np.empty(nnodes) + incidentCases = np.empty(nnodes) + incident2Cases = np.empty(nnodes) + incident3Cases = np.empty(nnodes) + recoveredCases = np.empty(nnodes) + + percent_who_move = np.zeros(nnodes) + percent_day_away = 0.5 + for j in range(nnodes): + percent_who_move[j] = mobility_data[mobility_data_indices[j]:mobility_data_indices[j+1]].sum() / popnodes[j] + + for it, t in enumerate(t_inter): + if (it % int(1 / dt) == 0): + y[E] = y[E] + seeding[int(t)] + y[S] = y[S] - seeding[int(t)] + y[S] = y[S] * (y[S] > 0) + + for i in range(nnodes): + index = np.arange(mobility_data_indices[i], mobility_data_indices[i+1]) + row_index = mobility_row_indices[index] + p_expose = 1.0 - np.exp(-dt * ( + ((1 - percent_day_away * percent_who_move[i]) * beta[it][i] * + (y[I1][i] + y[I2][i] + y[I3][i]) ** alpha[it][i] / popnodes[i]) + # Staying at home FoI + ( + percent_day_away * mobility_data[index] / popnodes[i] * # Probability of going there + beta[it][row_index] * # The beta for there + ( # num infected there + y[I1][row_index] + + y[I2][row_index] + + y[I3][row_index] + ) ** alpha[it][i] / popnodes[row_index] # population there + ).sum() + )) + + exposeCases[i] = np.random.binomial(y[S][i], p_expose) + p_infect = 1 - np.exp(-dt * sigma[it][i]) + incidentCases[i] = np.random.binomial(y[E][i], p_infect) + p_recover = 1 - np.exp(-dt * gamma[it][i]) + incident2Cases[i] = np.random.binomial(y[I1][i], p_recover) + incident3Cases[i] = np.random.binomial(y[I2][i], p_recover) + recoveredCases[i] = np.random.binomial(y[I3][i], p_recover) + + y[S] += -exposeCases + y[E] += exposeCases - incidentCases + y[I1] += incidentCases - incident2Cases + y[I2] += incident2Cases - incident3Cases + y[I3] += incident3Cases - recoveredCases + y[R] += recoveredCases + y[cumI] += incidentCases + states[:, :, it] = y + if (it % (1/dt) == 0 and (y[cumI] < dynfilter[int(it % (1/dt))]).any()): + return -np.ones((ncomp, nnodes, len(t_inter))) + + return states + + +if __name__ == "__main__": + cc.compile() diff --git a/SEIR/test/data/config.yml b/SEIR/test/data/config.yml index 5d5320063..599001810 100644 --- a/SEIR/test/data/config.yml +++ b/SEIR/test/data/config.yml @@ -13,14 +13,6 @@ spatial_setup: popnodes: population nodenames: geoid -seeding: ## If removing the importation, comment out this seeding block - method: FolderDraw - folder_path: importation/minimal/ - -# seeding: ## If removing importation, uncomment this seeding block -# method: PoissonDistributed -# lambda_file: data/minimal/seeding.csv - seir: parameters: alpha: 0.5 @@ -39,14 +31,16 @@ interventions: - None settings: None: - template: ReduceR0 + template: Reduce + parameter: r0 period_start_date: 2020-04-01 period_end_date: 2020-05-15 value: distribution: fixed value: 0 Wuhan: - template: ReduceR0 + template: Reduce + parameter: r0 period_start_date: 2020-04-01 period_end_date: 2020-05-15 value: @@ -55,6 +49,7 @@ interventions: high: .33 KansasCity: template: ReduceR0 + parameter: r0 period_start_date: 2020-04-01 period_end_date: 2020-05-15 value: diff --git a/SEIR/test/data/test_ReduceR0_trivial.yml b/SEIR/test/data/test_ReduceR0_trivial.yml index 08b9a5a00..a14901658 100644 --- a/SEIR/test/data/test_ReduceR0_trivial.yml +++ b/SEIR/test/data/test_ReduceR0_trivial.yml @@ -1,20 +1,81 @@ -trivial: +# Global Configs +trivial_global: start_date: 2020-01-01 end_date: 2020-01-01 - interventions: - settings: - Test: - template: ReduceR0 - value: - distribution: fixed - value: 1 -daterange: + +month_global: start_date: 2020-01-01 - end_date: 2020-01-31 - interventions: - settings: - Test: - template: ReduceR0 - value: - distribution: fixed - value: 1 + end_date: 2020-02-01 + + +# NPI Configs +trivial: + value: + distribution: fixed + value: 1 + parameter: gamma + value: + distribution: fixed + value: 0.5 + +bad_geoid: + parameter: gamma + value: + distribution: fixed + value: 0.5 + affected_geoids: + - does_not_exit + +geoidrange: + parameter: gamma + value: + distribution: fixed + value: 0.5 + affected_geoids: + - 10001 + - 2020 + +invalid_parameter: + parameter: NOT_A_PARAMETER + value: + distribution: fixed + value: 0.5 + +bad_start_date: + period_start_date: 2019-12-31 # period_start_date before global start date + period_end_date: 2020-01-31 + value: + distribution: fixed + value: 1 + +bad_end_date: + period_start_date: 2019-01-31 + period_end_date: 2020-02-23 # period_end_date after global end date + value: + distribution: fixed + value: 1 + +daterange: + period_start_date: 2020-01-05 + period_end_date: 2020-01-20 + parameter: gamma + value: + distribution: fixed + value: 0.5 + +fullrange: + parameter: gamma + value: + distribution: fixed + value: 0.5 + period_start_date: 2020-01-31 + period_end_date: 2020-01-20 + affected_geoids: + - 10001 + - 2020 + +toobig: + parameter: gamma + value: + distribution: fixed + value: 1.1 diff --git a/SEIR/test/test_npi.py b/SEIR/test/test_npi.py index fb27cbc5d..d8b980a75 100644 --- a/SEIR/test/test_npi.py +++ b/SEIR/test/test_npi.py @@ -5,7 +5,7 @@ import pytest import confuse -from SEIR.NPI import ReduceR0 +from SEIR.NPI import ReduceR0, Reduce from ..utils import config @@ -14,29 +14,168 @@ class TestInterventionsReduceR0: def test_ReduceR0_constructor_trivial(self): config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") - test_result = ReduceR0(global_config = config["trivial"],npi_config = config["trivial"]["interventions"]["settings"]["Test"],geoids = ["10001"]) - assert type(test_result.get()).__module__ == 'pandas.core.frame' - assert test_result.get().shape == (1,1) - assert (test_result.get().keys() == [config["trivial"]["start_date"].as_date()]).all() - assert (test_result.get().index.values == ["10001"]).all() - def test_ReduceR0_constructor_geoidrage(self): - config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") - test_result = ReduceR0(global_config = config["trivial"],npi_config = config["trivial"]["interventions"]["settings"]["Test"],geoids = ["10001","2020","40"]) - assert type(test_result.get()).__module__ == 'pandas.core.frame' - assert test_result.get().shape == (3,1) - assert (test_result.get().keys() == [config["trivial"]["start_date"].as_date()]).all() - assert (test_result.get().index.values == ["10001","2020","40"]).all() + global_config = config["trivial_global"] + test_result = ReduceR0(global_config = global_config, + npi_config = config["trivial"], + geoids = ["10001"]) + assert type(test_result.getReduction('r0')).__module__ == 'pandas.core.frame' + assert test_result.getReduction('r0').shape == (1,1) + assert (test_result.getReduction('r0').keys() == [global_config["start_date"].as_date()]).all() + assert (test_result.getReduction('r0').index.values == ["10001"]) + + def test_ReduceR0_constructor_geoidrange(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + global_config = config["trivial_global"] + test_result = ReduceR0(global_config = global_config, + npi_config = config["geoidrange"], + geoids = ["10001","2020","40"]) + + reduction = test_result.getReduction('r0') + assert type(reduction).__module__ == 'pandas.core.frame' + assert reduction.shape == (3,1) + assert (reduction.keys() == [global_config["start_date"].as_date()]).all() + assert (reduction.index.values == ["10001","2020","40"]).all() + assert (reduction.index.values == ["10001", "2020", "40"]).all() + assert (reduction.loc[["10001", "2020"]] == 0.5).all(axis=None) + assert (reduction.loc["40"] == 0).all() + def test_ReduceR0_constructor_daterange(self): + # Test period date range config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") - test_result = ReduceR0(global_config = config["trivial"],npi_config = config["daterange"]["interventions"]["settings"]["Test"],geoids = ["10001"]) - assert type(test_result.get()).__module__ == 'pandas.core.frame' - assert test_result.get().shape == (1,1) - assert (test_result.get().keys() == pd.date_range(config["trivial"]["start_date"].as_date(), config["trivial"]["end_date"].as_date())).all() - assert (test_result.get().index.values == ["10001"]).all() + global_config = config["month_global"] + npi_config = config["daterange"] + test_result = ReduceR0(global_config = global_config, + npi_config = npi_config, + geoids = ["10001"]) + reduction = test_result.getReduction('r0') + + global_start_date = global_config["start_date"].as_date() + global_end_date = global_config["end_date"].as_date() + period_start_date = npi_config["period_start_date"].as_date() + period_end_date = npi_config["period_end_date"].as_date() + assert type(reduction).__module__ == 'pandas.core.frame' + assert reduction.shape == (1,32) + assert (reduction.keys() == pd.date_range(global_start_date, global_end_date)).all() + assert (reduction.index.values == ["10001"]) + + # Test values in date ranges + assert (reduction[pd.date_range(global_start_date, period_start_date, closed="left")] == 0).all(axis=None) + assert (reduction[pd.date_range(period_start_date, period_end_date)] == 0.5).all(axis=None) + assert (reduction[pd.date_range(period_end_date, global_end_date, closed="right")] == 0).all(axis=None) + def test_ReduceR0_constructor_fullrange(self): + # Test affected geoids and period date range + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + global_config = config["month_global"] + npi_config = config["fullrange"] + test_result = ReduceR0(global_config = global_config, + npi_config = npi_config, + geoids = ["10001","2020","40"]) + reduction = test_result.getReduction('r0') + + assert type(reduction).__module__ == 'pandas.core.frame' + assert reduction.shape == (3,32) + assert (reduction.keys() == pd.date_range(global_config["start_date"].as_date(), + global_config["end_date"].as_date())).all() + assert (reduction.index.values == ["10001","2020","40"]).all() + assert (reduction.loc[["10001","2020"],pd.date_range(npi_config["period_start_date"].as_date(), + npi_config["period_end_date"].as_date())] == 0.5).all(axis=None) + +class TestInterventionsReduce: + def test_Reduce_constructor_trivial(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + global_config = config["trivial_global"] + test_result = Reduce(global_config = global_config, + npi_config = config["trivial"], + geoids = ["10001"]) + reduction = test_result.getReduction('gamma') + + assert type(reduction).__module__ == 'pandas.core.frame' + assert reduction.shape == (1,1) + assert (reduction.keys() == [global_config["start_date"].as_date()]) + assert (reduction.index.values == ["10001"]).all() + assert (reduction == 0.5).all(axis=None) + + def test_Reduce_constructor_geoidrange(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + test_result = Reduce(global_config = config["trivial_global"], + npi_config = config["geoidrange"], + geoids = ["10001","2020","40"]) + reduction = test_result.getReduction('gamma') + + assert reduction.shape == (3,1) + assert (reduction.index.values == ["10001", "2020", "40"]).all() + assert (reduction.loc[["10001", "2020"]] == 0.5).all(axis=None) + assert (reduction.loc["40"] == 0).all() + + def test_Reduce_constructor_daterange(self): config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") - test_result = ReduceR0(global_config = config["trivial"],npi_config = config["daterange"]["interventions"]["settings"]["Test"],geoids = ["10001","2020","40"]) - assert type(test_result.get()).__module__ == 'pandas.core.frame' - assert test_result.get().shape == (3,1) - assert (test_result.get().keys() == pd.date_range(config["trivial"]["start_date"].as_date(), config["trivial"]["end_date"].as_date())).all() - assert (test_result.get().index.values == ["10001","2020","40"]).all() + global_config = config["month_global"] + npi_config = config["daterange"] + test_result = Reduce(global_config = global_config, + npi_config = npi_config, + geoids = ["10001"]) + reduction = test_result.getReduction('gamma') + + global_start_date = global_config["start_date"].as_date() + global_end_date = global_config["end_date"].as_date() + period_start_date = npi_config["period_start_date"].as_date() + period_end_date = npi_config["period_end_date"].as_date() + + assert type(reduction).__module__ == 'pandas.core.frame' + assert reduction.shape == (1,32) + assert (reduction.keys() == pd.date_range(global_start_date, global_end_date)).all() + assert (reduction.index.values == ["10001"]) + + # Test values in date ranges + assert (reduction[pd.date_range(global_start_date, period_start_date, closed="left")] == 0).all(axis=None) + assert (reduction[pd.date_range(period_start_date, period_end_date)] == 0.5).all(axis=None) + assert (reduction[pd.date_range(period_end_date, global_end_date, closed="right")] == 0).all(axis=None) + + def test_Reduce_constructor_fullrange(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + global_config = config["month_global"] + npi_config = config["fullrange"] + test_result = Reduce(global_config = global_config, + npi_config = npi_config, + geoids = ["10001","2020","40"]) + reduction = test_result.getReduction('gamma') + + assert type(reduction).__module__ == 'pandas.core.frame' + assert reduction.shape == (3,32) + assert (reduction.keys() == pd.date_range(global_config["start_date"].as_date(), + global_config["end_date"].as_date())).all() + assert (reduction.index.values == ["10001","2020","40"]).all() + assert (reduction.loc[["10001","2020"],pd.date_range(npi_config["period_start_date"].as_date(), + npi_config["period_end_date"].as_date())] == 0.5).all(axis=None) + + def test_Reduce_constructor_toobig(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + with pytest.raises(ValueError, match=r'.*greater than.*'): + test_result = Reduce(global_config = config["trivial_global"], + npi_config = config["toobig"], + geoids = ["10001","2020","40"]) + + def test_Reduce_invalid_parameter(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + with pytest.raises(ValueError, match=r'Invalid parameter name.*'): + test_result = Reduce(global_config = config["trivial_global"], + npi_config = config["invalid_parameter"], + geoids = ["10001","2020","40"]) + + def test_Reduce_bad_start_date(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + with pytest.raises(ValueError, match=r'.*not between global dates.*'): + test_result = Reduce(global_config = config["trivial_global"], + npi_config = config["bad_start_date"], + geoids = ["10001","2020","40"]) + + def test_Reduce_bad_end_date(self): + config.set_file(f"{DATA_DIR}/test_ReduceR0_trivial.yml") + with pytest.raises(ValueError, match=r'.*not between global dates.*'): + test_result = Reduce(global_config = config["trivial_global"], + npi_config = config["bad_end_date"], + geoids = ["10001","2020","40"]) + + +# TODO Stacked Tests diff --git a/SEIR/test/test_seir.py b/SEIR/test/test_seir.py index d879da373..9e0abaa23 100644 --- a/SEIR/test/test_seir.py +++ b/SEIR/test/test_seir.py @@ -88,11 +88,11 @@ def test_constant_population(): mobility_data = s.mobility.data npi = NPI.NPIBase.execute(npi_config=s.npi_config, global_config=config, geoids=s.spatset.nodenames) - npi = npi.get().T - parameters = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes, s.dt, npi) + parameters = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes) + parameters = setup.parameters_reduce(parameters, npi, s.dt) - states = seir.steps_SEIR_nb(parameters, + states = seir.steps_SEIR_nb(*parameters, seeding, s.dt, s.t_inter, s.nnodes, s.popnodes, mobility_geoid_indices, mobility_data_indices, mobility_data, s.dynfilter) @@ -135,12 +135,12 @@ def test_steps_SEIR_nb_simple_spread(): mobility_data = s.mobility.data npi = NPI.NPIBase.execute(npi_config=s.npi_config, global_config=config, geoids=s.spatset.nodenames) - npi = npi.get().T - parameters = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes, s.dt, npi) + parameters = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes) + parameters = setup.parameters_reduce(parameters, npi, s.dt) for i in range(100): - states = seir.steps_SEIR_nb(parameters, + states = seir.steps_SEIR_nb(*parameters, seeding, s.dt, s.t_inter, s.nnodes, s.popnodes, mobility_geoid_indices, mobility_data_indices, mobility_data, s.dynfilter) @@ -175,12 +175,12 @@ def test_steps_SEIR_no_spread(): mobility_data = s.mobility.data * 0 npi = NPI.NPIBase.execute(npi_config=s.npi_config, global_config=config, geoids=s.spatset.nodenames) - npi = npi.get().T - parameters = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes, s.dt, npi) + parameters = setup.parameters_quick_draw(config["seir"]["parameters"], len(s.t_inter), s.nnodes) + parameters = setup.parameters_reduce(parameters, npi, s.dt) for i in range(100): - states = seir.steps_SEIR_nb(parameters, + states = seir.steps_SEIR_nb(*parameters, seeding, s.dt, s.t_inter, s.nnodes, s.popnodes, mobility_geoid_indices, mobility_data_indices, mobility_data, s.dynfilter) diff --git a/SEIR/test/test_setup.py b/SEIR/test/test_setup.py index f66ab15a1..8eaafa38d 100644 --- a/SEIR/test/test_setup.py +++ b/SEIR/test/test_setup.py @@ -46,15 +46,6 @@ def test_mobility_dimensions_fail(self): popnodes_key="population", nodenames_key="geoid") - ## I think we're not requiring this for now. - ## def test_mobility_unsymmetric_fail(self): - ## with pytest.raises(ValueError, match=r".*mobility.*symmetric.*"): - ## setup.SpatialSetup(setup_name=TEST_SETUP_NAME, - ## geodata_file=f"{DATA_DIR}/geodata.csv", - ## mobility_file=f"{DATA_DIR}/mobility_unsymmetric.txt", - ## popnodes_key="population", - ## nodenames_key="geoid") - def test_mobility_too_big_fail(self): with pytest.raises(ValueError, match=r".*mobility.*population.*"): setup.SpatialSetup(setup_name=TEST_SETUP_NAME, @@ -96,14 +87,18 @@ def test_parameters_quick_draw(): npi = pd.DataFrame(0.0, index=date_range, columns=range(nnodes)) - alpha, beta, sigma, gamma = setup.parameters_quick_draw(config, nt_inter, nnodes, dt, npi) + alpha, beta, sigma, gamma = setup.parameters_quick_draw(config, nt_inter, nnodes) - assert alpha == 0.5 + assert alpha.shape == (nt_inter, nnodes) + assert (alpha == 0.5).all() assert beta.shape == (nt_inter, nnodes) + assert (len(np.unique(beta)) == 1) assert (((1/6. * 2) <= beta) & (beta <= (1./2.6 * 3))).all() - assert (beta == beta[0][0]).all() - assert (sigma == config["sigma"].as_evaled_expression()) + assert sigma.shape == (nt_inter, nnodes) + assert (sigma == config["sigma"].as_evaled_expression()).all() - assert (setup.n_Icomp * (1./6)) <= gamma <= (setup.n_Icomp * (1/2.6)) + assert gamma.shape == (nt_inter, nnodes) + assert (len(np.unique(gamma)) == 1) + assert (((setup.n_Icomp * (1./6)) <= gamma) & (gamma <= (setup.n_Icomp * (1/2.6)))).all() diff --git a/batch/launch_job.py b/batch/launch_job.py new file mode 100755 index 000000000..72284e4da --- /dev/null +++ b/batch/launch_job.py @@ -0,0 +1,140 @@ +#!/usr/bin/env python + +import boto3 +import click +import glob +import os +import re +import subprocess +import tarfile +import time +import yaml + +@click.command() +@click.option("-c", "--config", "config_file", envvar="CONFIG_PATH", type=click.Path(exists=True), required=True, + help="configuration file for this run") +@click.option("-j", "--num-jobs", "num_jobs", type=click.IntRange(min=1), required=True, + help="total number of jobs to run in this batch") +@click.option("-l", "--slots-per-job", "slots_per_job", type=click.IntRange(min=1), required=True, + help="how many slots each job should run") +@click.option("-t", "--dvc-target", "dvc_target", type=click.Path(exists=True), required=True, + help="name of the .dvc file that is the last step in the dvc run pipeline") +@click.option("-i", "--s3-input-bucket", "s3_input_bucket", type=str, default="idd-input-data-sets", show_default=True, + help="The S3 bucket to use for uploading the code and configuration used by the batch job") +@click.option("-o", "--s3-output-bucket", "s3_output_bucket", type=str, default="idd-pipeline-results", show_default=True, + help="The S3 bucket for storing the job's outputs") +@click.option("-d", "--job-definition", "batch_job_definition", type=str, default="Batch-CovidPipeline-Job", show_default=True, + help="The name of the AWS Batch Job Definition to use for the job") +@click.option("-q", "--job-queue", "batch_job_queue", type=str, default="Batch-CovidPipeline", show_default=True, + help="The name of the AWS Batch Job Queue to use for the job") +@click.option("-p", "--parallelize-scenarios", "parallelize_scenarios", is_flag=True, default=False, show_default=True, + help="Launch a different batch job for each scenario") +@click.option("-v", "--vcpu", "vcpu", type=click.IntRange(min=2, max=96), default=72, show_default=True, + help="The number of vCPU cores each job should have") +@click.option("-m", "--memory", "memory", type=click.IntRange(min=1000, max=6000), default=4000, show_default=True, + help="The amount of RAM in megabytes needed per CPU running simulations") +def launch_batch(config_file, num_jobs, slots_per_job, dvc_target, s3_input_bucket, s3_output_bucket, batch_job_definition, batch_job_queue, parallelize_scenarios, vcpu, memory): + + config = None + with open(config_file) as f: + config = yaml.full_load(f) + + # A unique name for this job run, based on the config name and current time + job_name = f"{config['name']}-{int(time.time())}" + + # Update and save the config file with the number of sims to run + print(f"Updating {config_file} to run {slots_per_job} slots...") + config['nsimulations'] = slots_per_job + + if parallelize_scenarios: + scenarios = config['interventions']['scenarios'] + for s in scenarios: + scenario_job_name = f"{job_name}_{s}" + config['interventions']['scenarios'] = [s] + with open(config_file, "w") as f: + yaml.dump(config, f, sort_keys=False) + launch_job_inner(scenario_job_name, config_file, num_jobs, slots_per_job, dvc_target, s3_input_bucket, s3_output_bucket, batch_job_definition, batch_job_queue, vcpu, memory) + config['interventions']['scenarios'] = scenarios + with open(config_file, "w") as f: + yaml.dump(config, f, sort_keys=False) + else: + with open(config_file, "w") as f: + yaml.dump(config, f, sort_keys=False) + launch_job_inner(job_name, config_file, num_jobs, slots_per_job, dvc_target, s3_input_bucket, s3_output_bucket, batch_job_definition, batch_job_queue, vcpu, memory) + + (rc, txt) = subprocess.getstatusoutput(f"git checkout -b run_{job_name}") + print(txt) + return rc + + +def launch_job_inner(job_name, config_file, num_jobs, slots_per_job, dvc_target, s3_input_bucket, s3_output_bucket, batch_job_definition, batch_job_queue, vcpu, memory): + + # Prepare to tar up the current directory, excluding any dvc outputs, so it + # can be shipped to S3 + dvc_outputs = get_dvc_outputs() + tarfile_name = f"{job_name}.tar.gz" + tar = tarfile.open(tarfile_name, "w:gz") + for p in os.listdir('.'): + if not (p.startswith(".") or p.endswith("tar.gz") or p in dvc_outputs or p == "batch"): + tar.add(p, filter=lambda x: None if x.name.startswith('.') else x) + tar.close() + + # Upload the tar'd contents of this directory and the runner script to S3 + runner_script_name = f"{job_name}-runner.sh" + local_runner_script = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'runner.sh') + s3_client = boto3.client('s3') + s3_client.upload_file(local_runner_script, s3_input_bucket, runner_script_name) + s3_client.upload_file(tarfile_name, s3_input_bucket, tarfile_name) + os.remove(tarfile_name) + + # Prepare and launch the num_jobs via AWS Batch. + model_data_path = f"s3://{s3_input_bucket}/{tarfile_name}" + results_path = f"s3://{s3_output_bucket}/{job_name}" + env_vars = [ + {"name": "CONFIG_PATH", "value": config_file}, + {"name": "S3_MODEL_DATA_PATH", "value": model_data_path}, + {"name": "DVC_TARGET", "value": dvc_target}, + {"name": "DVC_OUTPUTS", "value": " ".join(dvc_outputs)}, + {"name": "S3_RESULTS_PATH", "value": results_path}, + {"name": "SLOTS_PER_JOB", "value": str(slots_per_job)} + ] + s3_cp_run_script = f"aws s3 cp s3://{s3_input_bucket}/{runner_script_name} $PWD/run-covid-pipeline" + command = ["sh", "-c", f"{s3_cp_run_script}; /bin/bash $PWD/run-covid-pipeline"] + container_overrides = { + 'vcpus': vcpu, + 'memory': vcpu * memory, + 'environment': env_vars, + 'command': command + } + + print("Preparing to run job: %s" % job_name) + batch_client = boto3.client('batch') + if num_jobs > 1: + resp = batch_client.submit_job( + jobName=job_name, + jobQueue=batch_job_queue, + arrayProperties={'size': num_jobs}, + jobDefinition=batch_job_definition, + containerOverrides=container_overrides) + else: + resp = batch_client.submit_job( + jobName=job_name, + jobQueue=batch_job_queue, + jobDefinition=batch_job_definition, + containerOverrides=container_overrides) + + print(f"Batch job with id {resp['jobId']} launched; output will be written to {results_path}") + + +def get_dvc_outputs(): + ret = [] + for dvc_file in glob.glob("*.dvc"): + with open(dvc_file) as df: + d = yaml.full_load(df) + if 'cmd' in d and 'outs' in d: + ret.extend([x['path'] for x in d['outs'] if x['path']]) + return ret + + +if __name__ == '__main__': + launch_batch() diff --git a/batch/runner.sh b/batch/runner.sh new file mode 100755 index 000000000..c20211119 --- /dev/null +++ b/batch/runner.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +set -x + +# Expected environment variables from AWS Batch env +# S3_MODEL_DATA_PATH location in S3 with the code, data, and dvc pipeline to run +# DVC_TARGET the name of the dvc file in the model that should be reproduced locally. +# DVC_OUTPUTS the names of the directories with outputs to save in S3, separated by a space +# S3_RESULTS_PATH location in S3 to store the results + +# setup the python environment +HOME=/home/app +PYENV_ROOT=$HOME/.pyenv +PYTHON_VERSION=3.7.6 +PYTHON_VENV_DIR=$HOME/python_venv +PATH=$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH +. $PYTHON_VENV_DIR/bin/activate + +# set optimized S3 configuration +aws configure set default.s3.max_concurrent_requests 100 +aws configure set default.s3.max_queue_size 100 +aws configure set default.s3.multipart_threshold 8MB +aws configure set default.s3.multipart_chunksize 8MB + +# Copy the complete model + data package from S3 and +# install the local R packages +aws s3 cp --quiet $S3_MODEL_DATA_PATH model_data.tar.gz +mkdir model_data +tar -xvzf model_data.tar.gz -C model_data +cd model_data + +# Optional tracking variable to use to write unique output files +export AWS_BATCH_SIM_OFFSET=$((${AWS_BATCH_JOB_ARRAY_INDEX:-0} * ${SLOTS_PER_JOB:-0})) + +# Initialize dvc and run the pipeline to re-create the +# dvc target +dvc init --no-scm +dvc repro $DVC_TARGET + +DVC_OUTPUTS_ARRAY=($DVC_OUTPUTS) +if [ -z "$AWS_BATCH_JOB_ARRAY_INDEX" ]; then + for output in "${DVC_OUTPUTS_ARRAY[@]}" + do + if [ -d "$output" ]; then + tar cv --use-compress-program=pbzip2 -f $output.tar.bz2 $output + aws s3 cp --quiet $output.tar.bz2 $S3_RESULTS_PATH/ + fi + done +else + echo "Saving outputs from array batch job" + for output in "${DVC_OUTPUTS_ARRAY[@]}" + do + if [ -d "$output" ]; then + aws s3 cp --quiet --recursive $output $S3_RESULTS_PATH/$AWS_BATCH_JOB_ID/$output/ + fi + done +fi + +echo "Done" diff --git a/local_install.R b/local_install.R index 613543b41..f5fb8296d 100644 --- a/local_install.R +++ b/local_install.R @@ -3,8 +3,6 @@ library(devtools) initial.options <- commandArgs(trailingOnly = FALSE) file.arg.name <- "--file=" script.name <- sub(file.arg.name, "", initial.options[grep(file.arg.name, initial.options)]) -pkg.dir <- paste0(dirname(script.name), "/R/pkgs/") -install_local(paste0(pkg.dir, "covidcommon"), force=TRUE, upgrade="always") -install_local(paste0(pkg.dir, "hospitalization"), force=TRUE, upgrade="always") -install_local(paste0(pkg.dir, "report_generation"), force=TRUE, upgrade="always") +pkg.dir <- paste0(dirname(script.name), "/R/pkgs/") +install.packages(list.files(pkg.dir,full.names=TRUE),type='source',repos=NULL) diff --git a/packages.R b/packages.R index d17a5da2b..657b212f6 100644 --- a/packages.R +++ b/packages.R @@ -34,7 +34,7 @@ install_version("splines2", version = "0.2.8", repos = repo_url) install_version("nnls", version = "1.4", repos = repo_url) install_github("HopkinsIDD/globaltoolboxlite") -install_github("HopkinsIDD/covidImportation", ref = "1.6.1") +install_github("HopkinsIDD/covidImportation", ref = "v1.6.1") # Install arrow and it's extra dependencies install_version("arrow", version = "0.16.0.2", repos = repo_url) diff --git a/packrat/init.R b/packrat/init.R new file mode 100644 index 000000000..5901a3312 --- /dev/null +++ b/packrat/init.R @@ -0,0 +1,226 @@ +local({ + + ## Helper function to get the path to the library directory for a + ## given packrat project. + getPackratLibDir <- function(projDir = NULL) { + path <- file.path("packrat", "lib", R.version$platform, getRversion()) + + if (!is.null(projDir)) { + + ## Strip trailing slashes if necessary + projDir <- sub("/+$", "", projDir) + + ## Only prepend path if different from current working dir + if (!identical(normalizePath(projDir), normalizePath(getwd()))) + path <- file.path(projDir, path) + } + + path + } + + ## Ensure that we set the packrat library directory relative to the + ## project directory. Normally, this should be the working directory, + ## but we also use '.rs.getProjectDirectory()' if necessary (e.g. we're + ## rebuilding a project while within a separate directory) + libDir <- if (exists(".rs.getProjectDirectory")) + getPackratLibDir(.rs.getProjectDirectory()) + else + getPackratLibDir() + + ## Unload packrat in case it's loaded -- this ensures packrat _must_ be + ## loaded from the private library. Note that `requireNamespace` will + ## succeed if the package is already loaded, regardless of lib.loc! + if ("packrat" %in% loadedNamespaces()) + try(unloadNamespace("packrat"), silent = TRUE) + + if (suppressWarnings(requireNamespace("packrat", quietly = TRUE, lib.loc = libDir))) { + + # Check 'print.banner.on.startup' -- when NA and RStudio, don't print + print.banner <- packrat::get_opts("print.banner.on.startup") + if (print.banner == "auto" && is.na(Sys.getenv("RSTUDIO", unset = NA))) { + print.banner <- TRUE + } else { + print.banner <- FALSE + } + return(packrat::on(print.banner = print.banner)) + } + + ## Escape hatch to allow RStudio to handle bootstrapping. This + ## enables RStudio to provide print output when automagically + ## restoring a project from a bundle on load. + if (!is.na(Sys.getenv("RSTUDIO", unset = NA)) && + is.na(Sys.getenv("RSTUDIO_PACKRAT_BOOTSTRAP", unset = NA))) { + Sys.setenv("RSTUDIO_PACKRAT_BOOTSTRAP" = "1") + setHook("rstudio.sessionInit", function(...) { + # Ensure that, on sourcing 'packrat/init.R', we are + # within the project root directory + if (exists(".rs.getProjectDirectory")) { + owd <- getwd() + setwd(.rs.getProjectDirectory()) + on.exit(setwd(owd), add = TRUE) + } + source("packrat/init.R") + }) + return(invisible(NULL)) + } + + ## Bootstrapping -- only performed in interactive contexts, + ## or when explicitly asked for on the command line + if (interactive() || "--bootstrap-packrat" %in% commandArgs(TRUE)) { + + needsRestore <- "--bootstrap-packrat" %in% commandArgs(TRUE) + + message("Packrat is not installed in the local library -- ", + "attempting to bootstrap an installation...") + + ## We need utils for the following to succeed -- there are calls to functions + ## in 'restore' that are contained within utils. utils gets loaded at the + ## end of start-up anyhow, so this should be fine + library("utils", character.only = TRUE) + + ## Install packrat into local project library + packratSrcPath <- list.files(full.names = TRUE, + file.path("packrat", "src", "packrat") + ) + + ## No packrat tarballs available locally -- try some other means of installation + if (!length(packratSrcPath)) { + + message("> No source tarball of packrat available locally") + + ## There are no packrat sources available -- try using a version of + ## packrat installed in the user library to bootstrap + if (requireNamespace("packrat", quietly = TRUE) && packageVersion("packrat") >= "0.2.0.99") { + message("> Using user-library packrat (", + packageVersion("packrat"), + ") to bootstrap this project") + } + + ## Couldn't find a user-local packrat -- try finding and using devtools + ## to install + else if (requireNamespace("devtools", quietly = TRUE)) { + message("> Attempting to use devtools::install_github to install ", + "a temporary version of packrat") + library(stats) ## for setNames + devtools::install_github("rstudio/packrat") + } + + ## Try downloading packrat from CRAN if available + else if ("packrat" %in% rownames(available.packages())) { + message("> Installing packrat from CRAN") + install.packages("packrat") + } + + ## Fail -- couldn't find an appropriate means of installing packrat + else { + stop("Could not automatically bootstrap packrat -- try running ", + "\"'install.packages('devtools'); devtools::install_github('rstudio/packrat')\"", + "and restarting R to bootstrap packrat.") + } + + # Restore the project, unload the temporary packrat, and load the private packrat + if (needsRestore) + packrat::restore(prompt = FALSE, restart = TRUE) + + ## This code path only reached if we didn't restart earlier + unloadNamespace("packrat") + requireNamespace("packrat", lib.loc = libDir, quietly = TRUE) + return(packrat::on()) + + } + + ## Multiple packrat tarballs available locally -- try to choose one + ## TODO: read lock file and infer most appropriate from there; low priority because + ## after bootstrapping packrat a restore should do the right thing + if (length(packratSrcPath) > 1) { + warning("Multiple versions of packrat available in the source directory;", + "using packrat source:\n- ", shQuote(packratSrcPath)) + packratSrcPath <- packratSrcPath[[1]] + } + + + lib <- file.path("packrat", "lib", R.version$platform, getRversion()) + if (!file.exists(lib)) { + dir.create(lib, recursive = TRUE) + } + + message("> Installing packrat into project private library:") + message("- ", shQuote(lib)) + + surround <- function(x, with) { + if (!length(x)) return(character()) + paste0(with, x, with) + } + + + ## Invoke install.packages() in clean R session + peq <- function(x, y) paste(x, y, sep = " = ") + installArgs <- c( + peq("pkgs", surround(packratSrcPath, with = "'")), + peq("lib", surround(lib, with = "'")), + peq("repos", "NULL"), + peq("type", surround("source", with = "'")) + ) + + fmt <- "utils::install.packages(%s)" + installCmd <- sprintf(fmt, paste(installArgs, collapse = ", ")) + + ## Write script to file (avoid issues with command line quoting + ## on R 3.4.3) + installFile <- tempfile("packrat-bootstrap", fileext = ".R") + writeLines(installCmd, con = installFile) + on.exit(unlink(installFile), add = TRUE) + + fullCmd <- paste( + surround(file.path(R.home("bin"), "R"), with = "\""), + "--vanilla", + "--slave", + "-f", + surround(installFile, with = "\"") + ) + system(fullCmd) + + ## Tag the installed packrat so we know it's managed by packrat + ## TODO: should this be taking information from the lockfile? this is a bit awkward + ## because we're taking an un-annotated packrat source tarball and simply assuming it's now + ## an 'installed from source' version + + ## -- InstallAgent -- ## + installAgent <- "InstallAgent: packrat 0.5.0" + + ## -- InstallSource -- ## + installSource <- "InstallSource: source" + + packratDescPath <- file.path(lib, "packrat", "DESCRIPTION") + DESCRIPTION <- readLines(packratDescPath) + DESCRIPTION <- c(DESCRIPTION, installAgent, installSource) + cat(DESCRIPTION, file = packratDescPath, sep = "\n") + + # Otherwise, continue on as normal + message("> Attaching packrat") + library("packrat", character.only = TRUE, lib.loc = lib) + + message("> Restoring library") + if (needsRestore) + packrat::restore(prompt = FALSE, restart = FALSE) + + # If the environment allows us to restart, do so with a call to restore + restart <- getOption("restart") + if (!is.null(restart)) { + message("> Packrat bootstrap successfully completed. ", + "Restarting R and entering packrat mode...") + return(restart()) + } + + # Callers (source-erers) can define this hidden variable to make sure we don't enter packrat mode + # Primarily useful for testing + if (!exists(".__DONT_ENTER_PACKRAT_MODE__.") && interactive()) { + message("> Packrat bootstrap successfully completed. Entering packrat mode...") + packrat::on() + } + + Sys.unsetenv("RSTUDIO_PACKRAT_BOOTSTRAP") + + } + +}) diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/KernSmooth b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/KernSmooth new file mode 120000 index 000000000..e4284919b --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/KernSmooth @@ -0,0 +1 @@ +/usr/lib/R/library/KernSmooth \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/MASS b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/MASS new file mode 120000 index 000000000..e498a42ec --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/MASS @@ -0,0 +1 @@ +/usr/lib/R/library/MASS \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/Matrix b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/Matrix new file mode 120000 index 000000000..44e20eeb2 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/Matrix @@ -0,0 +1 @@ +/usr/lib/R/library/Matrix \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/base b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/base new file mode 120000 index 000000000..03718b113 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/base @@ -0,0 +1 @@ +/usr/lib/R/library/base \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/boot b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/boot new file mode 120000 index 000000000..5e6dd3900 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/boot @@ -0,0 +1 @@ +/usr/lib/R/library/boot \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/class b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/class new file mode 120000 index 000000000..6dcb8895f --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/class @@ -0,0 +1 @@ +/usr/lib/R/library/class \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/cluster b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/cluster new file mode 120000 index 000000000..cd45bb8ba --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/cluster @@ -0,0 +1 @@ +/usr/lib/R/library/cluster \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/codetools b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/codetools new file mode 120000 index 000000000..aef161591 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/codetools @@ -0,0 +1 @@ +/usr/lib/R/library/codetools \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/compiler b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/compiler new file mode 120000 index 000000000..a2b59c968 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/compiler @@ -0,0 +1 @@ +/usr/lib/R/library/compiler \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/datasets b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/datasets new file mode 120000 index 000000000..d8ac61e45 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/datasets @@ -0,0 +1 @@ +/usr/lib/R/library/datasets \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/foreign b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/foreign new file mode 120000 index 000000000..f96dfcfb8 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/foreign @@ -0,0 +1 @@ +/usr/lib/R/library/foreign \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/grDevices b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/grDevices new file mode 120000 index 000000000..eeef200bf --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/grDevices @@ -0,0 +1 @@ +/usr/lib/R/library/grDevices \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/graphics b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/graphics new file mode 120000 index 000000000..a35f21b20 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/graphics @@ -0,0 +1 @@ +/usr/lib/R/library/graphics \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/grid b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/grid new file mode 120000 index 000000000..148524369 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/grid @@ -0,0 +1 @@ +/usr/lib/R/library/grid \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/lattice b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/lattice new file mode 120000 index 000000000..f79cfb726 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/lattice @@ -0,0 +1 @@ +/usr/lib/R/library/lattice \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/methods b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/methods new file mode 120000 index 000000000..b4dc58eac --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/methods @@ -0,0 +1 @@ +/usr/lib/R/library/methods \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/mgcv b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/mgcv new file mode 120000 index 000000000..ed41fe593 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/mgcv @@ -0,0 +1 @@ +/usr/lib/R/library/mgcv \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/nlme b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/nlme new file mode 120000 index 000000000..0fd0ffa6b --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/nlme @@ -0,0 +1 @@ +/usr/lib/R/library/nlme \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/nnet b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/nnet new file mode 120000 index 000000000..75aed7cdd --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/nnet @@ -0,0 +1 @@ +/usr/lib/R/library/nnet \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/parallel b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/parallel new file mode 120000 index 000000000..8ecaa6e9e --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/parallel @@ -0,0 +1 @@ +/usr/lib/R/library/parallel \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/rpart b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/rpart new file mode 120000 index 000000000..35eb4d28e --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/rpart @@ -0,0 +1 @@ +/usr/lib/R/library/rpart \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/spatial b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/spatial new file mode 120000 index 000000000..4c4b26fe7 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/spatial @@ -0,0 +1 @@ +/usr/lib/R/library/spatial \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/splines b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/splines new file mode 120000 index 000000000..9762ac81e --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/splines @@ -0,0 +1 @@ +/usr/lib/R/library/splines \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/stats b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/stats new file mode 120000 index 000000000..3b5ff65e0 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/stats @@ -0,0 +1 @@ +/usr/lib/R/library/stats \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/stats4 b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/stats4 new file mode 120000 index 000000000..8b44254de --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/stats4 @@ -0,0 +1 @@ +/usr/lib/R/library/stats4 \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/survival b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/survival new file mode 120000 index 000000000..042ccbcc4 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/survival @@ -0,0 +1 @@ +/usr/lib/R/library/survival \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/tcltk b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/tcltk new file mode 120000 index 000000000..3f77dd967 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/tcltk @@ -0,0 +1 @@ +/usr/lib/R/library/tcltk \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/tools b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/tools new file mode 120000 index 000000000..8a54f0270 --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/tools @@ -0,0 +1 @@ +/usr/lib/R/library/tools \ No newline at end of file diff --git a/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/utils b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/utils new file mode 120000 index 000000000..ed5b2d42f --- /dev/null +++ b/packrat/lib-R/x86_64-pc-linux-gnu/3.6.3/utils @@ -0,0 +1 @@ +/usr/lib/R/library/utils \ No newline at end of file diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/DESCRIPTION b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/DESCRIPTION new file mode 100644 index 000000000..34a0a0d90 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/DESCRIPTION @@ -0,0 +1,28 @@ +Package: covidImportation +Title: Estimating the Number of Imported COVID-19 Cases +Version: 1.6.1 +Authors@R: c(person(given = c("Shaun", "A."), family = "Truelove", role + = c("aut", "cre"), email = "shauntruelove@jhu.edu"), + person(given=c("Stephen", "A."), family="Lauer", + email="slauer5@jh.edu", role = c("ctb"))) +Description: What the package does (one paragraph). +Depends: R (>= 3.5), dplyr, tidyr +Imports: doParallel, httr, lubridate, countrycode, globaltoolboxlite, + fitdistrplus, data.table, abind, reshape2, arrayhelpers, truncnorm, + geosphere, ggvoronoi, gpclib, igraph, magrittr, maptools, raster, + rgdal, rlist, sf, tidycensus, purrr, readr, tibble, ggplot2, + parallel, tidyverse +License: What license it uses +Encoding: UTF-8 +LazyData: true +RoxygenNote: 7.1.0 +GithubRepo: covidImportation +GithubUsername: HopkinsIDD +GithubRef: v1.8 +GithubSHA1: 3cf2341907d23e1b19a3a3190dfca29b50d22218 +Author: Shaun A. Truelove [aut, cre], Stephen A. Lauer [ctb] +Maintainer: Shaun A. Truelove +Built: R 3.6.3; ; 2020-09-09 13:56:26 UTC; unix +InstallAgent: packrat 0.5.0 +InstallSource: github +Hash: 19ccb07938df6c97b7397e7a0493b818 diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/INDEX b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/INDEX new file mode 100644 index 000000000..92bc5c8a4 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/INDEX @@ -0,0 +1,89 @@ +airport_attribution Airport attribution data for China +airport_data Airport data +apply_travel_restrictions + Apply a set of travel restrictions to the + travel data, reducing or increasing to a + proportion of the average travel. +calc_nb_import_pars Get negative binomial estimates for each time + and destination +correct_for_Hubei_reporting + Function to correct for the changes in + reporting in Hubei +distrib_county_imports + distrib_county_imports +do_airport_attribution + do_airport_attribution +est_daily_incidence Function to extract approximate epidemic curves + from the cumulative case data. +est_daily_incidence_corrected + Wrapper function to correct for the changes in + reporting in Hubei and merge with data for all + incidence +est_import_detect_dates + Estimate the detection dates of importations +est_imports_base Estimate imports base +expand_travel_restrict + Expand the travel restrictions to include every + date, to allow for merging with travel data. +find_recent_file find_recent_file +fit_ispline Function to fit monotonically increasing + spline. Returns a function that can be used to + predict the spline for each date. +get_CA_metro_labels Get Metro Areas for CA +get_JHUCSSE_data Pull JHU CSSE GitHub data +get_JHUCSSE_deaths Pull JHU CSSE GitHub data +get_airport_city Get airport city +get_airport_country Get airport country +get_airport_state Get airport state +get_airports_to_consider + get_airports_to_consider +get_clean_JHUCSSE_data + Clean crude data from JHUCSSE and aggregated it + to state or county level +get_clean_JHUCSSE_deaths + Clean crude data from JHUCSSE and aggregated it + to state or county level +get_county_pops get_county_pops +get_global_cum Get cumulative case counts by Province_state +get_incidence_data Get incidence data from JHUCSSE +get_incidence_fits Get incidence data from JHUCSSE +get_mean_imports Get mean importations across geoids +get_oag_travel Get OAG travel data +get_oag_travel_fulldata + Get OAG travel data +imports_airport_clustering + imports_airport_clustering +make_daily_travel Create Daily Travel +make_daily_travel_faster + Convert monthly travel to daily travel data - + fast - When we have already built the daily + data, we reuse that and just fill in the new + daily volume each time +make_input_data Make input data +make_meanD Make MeanD Matrix +plot_imports_stackeddest + Barchart plot of importations stacked by source +plot_incidence_ests_report + Function to plot the estimated and reported + case counts +plot_rep_cases Facet plot of cumulative and incident cases at + locations desired +pop_data Population data +pull_JHUCSSE_github_data + Pull JHU CSSE GitHub data +read_JHUCSSE_cases Reads in the JHUCSSE total case count data up + until (and including) a given dat. +run_daily_import_model + Run the full simulation of daily importations +run_daily_import_model_par + Run the full simulation of daily importations +run_full_distrib_imports + run_distrib_imports +run_importations Run importation sims +setup_and_run_importations + Set up and run importation sims +setup_importations Set up importation sims +travel_restrictions Travel restrictions data +underreporting Underreporting data +update_JHUCSSE_github_data + Pull JHU CSSE GitHub data diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/LICENSE b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/LICENSE new file mode 100644 index 000000000..f288702d2 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/Rd.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/Rd.rds new file mode 100644 index 000000000..a8ca8bac4 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/Rd.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/data.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/data.rds new file mode 100644 index 000000000..8e70abf63 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/data.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/features.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/features.rds new file mode 100644 index 000000000..772f787fd Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/features.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/hsearch.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/hsearch.rds new file mode 100644 index 000000000..013fc9de0 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/hsearch.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/links.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/links.rds new file mode 100644 index 000000000..c96da686e Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/links.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/nsInfo.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/nsInfo.rds new file mode 100644 index 000000000..7207f540b Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/nsInfo.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/package.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/package.rds new file mode 100644 index 000000000..4aa9e0f6a Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/Meta/package.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/NAMESPACE b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/NAMESPACE new file mode 100644 index 000000000..c89c88f4f --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/NAMESPACE @@ -0,0 +1,88 @@ +# Generated by roxygen2: do not edit by hand + +export(calc_nb_import_pars) +export(correct_for_Hubei_reporting) +export(distrib_county_imports) +export(do_airport_attribution) +export(est_daily_incidence) +export(est_daily_incidence_corrected) +export(fit_ispline) +export(get_JHUCSSE_data) +export(get_JHUCSSE_deaths) +export(get_clean_JHUCSSE_data) +export(get_clean_JHUCSSE_deaths) +export(get_county_pops) +export(get_global_cum) +export(get_incidence_data) +export(get_incidence_fits) +export(get_mean_imports) +export(get_oag_travel_fulldata) +export(imports_airport_clustering) +export(plot_imports_stackeddest) +export(plot_incidence_ests_report) +export(plot_rep_cases) +export(pull_JHUCSSE_github_data) +export(read_JHUCSSE_cases) +export(run_daily_import_model) +export(run_daily_import_model_par) +export(run_full_distrib_imports) +export(run_importations) +export(setup_and_run_importations) +export(setup_importations) +export(update_JHUCSSE_github_data) +import(doParallel) +import(dplyr) +import(foreach) +import(ggplot2) +import(globaltoolboxlite) +import(httr) +import(parallel) +import(readr) +import(sf) +import(tibble) +import(tidyr) +importFrom(abind,abind) +importFrom(arrayhelpers,array2df) +importFrom(countrycode,countrycode) +importFrom(data.table,fread) +importFrom(data.table,rbindlist) +importFrom(fitdistrplus,fitdist) +importFrom(geosphere,distHaversine) +importFrom(ggvoronoi,voronoi_polygon) +importFrom(globaltoolboxlite,get_country_name_ISO3) +importFrom(globaltoolboxlite,get_iso) +importFrom(igraph,as_edgelist) +importFrom(igraph,make_full_graph) +importFrom(igraph,set_vertex_attr) +importFrom(lubridate,as_date) +importFrom(lubridate,day) +importFrom(lubridate,days_in_month) +importFrom(lubridate,epiweek) +importFrom(lubridate,mdy) +importFrom(lubridate,month) +importFrom(lubridate,parse_date_time) +importFrom(lubridate,ydm) +importFrom(lubridate,year) +importFrom(lubridate,ymd_hms) +importFrom(maptools,unionSpatialPolygons) +importFrom(nnls,nnls) +importFrom(purrr,flatten) +importFrom(purrr,map) +importFrom(purrr,map2) +importFrom(purrr,map_dfr) +importFrom(purrr,reduce) +importFrom(raster,crs) +importFrom(raster,intersect) +importFrom(raster,projection) +importFrom(readr,read_csv) +importFrom(readr,write_csv) +importFrom(reshape2,acast) +importFrom(rgdal,readOGR) +importFrom(rgeos,gBuffer) +importFrom(rlist,list.remove) +importFrom(splines2,iSpline) +importFrom(stringr,str_pad) +importFrom(tibble,as_tibble) +importFrom(tidycensus,get_acs) +importFrom(tidyr,replace_na) +importFrom(truncnorm,rtruncnorm) diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation new file mode 100644 index 000000000..3b65e3cbb --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation @@ -0,0 +1,27 @@ +# File share/R/nspackloader.R +# Part of the R package, http://www.R-project.org +# +# Copyright (C) 1995-2012 The R Core Team +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# A copy of the GNU General Public License is available at +# http://www.r-project.org/Licenses/ + +local({ + info <- loadingNamespaceInfo() + pkg <- info$pkgname + ns <- .getNamespace(as.name(pkg)) + if (is.null(ns)) + stop("cannot find namespace environment for ", pkg, domain = NA); + dbbase <- file.path(info$libname, pkg, "R", pkg) + lazyLoad(dbbase, ns, filter = function(n) n != ".__NAMESPACE__.") +}) diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation.rdb b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation.rdb new file mode 100644 index 000000000..48c3848f6 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation.rdb differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation.rdx b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation.rdx new file mode 100644 index 000000000..5619eccbe Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/R/covidImportation.rdx differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/ResultsUtils.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/ResultsUtils.R new file mode 100644 index 000000000..fecfc1a2c --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/ResultsUtils.R @@ -0,0 +1,238 @@ + +library(tidyverse) + +states_of_interest=c("NY","NJ","CT") + +regioncode="NYC" +dest=c("JFK","BUF","LGA") +output_dir=file.path("model_output", "importation",regioncode) + + + + +##' +##' Sum importation counts to airport attribution clusters +##' Airport clusters are generated using `do_airport_attribution` for aiports in close proximity to +##' each other e.g. ORD/MDY, DCA/IAD, SFO/OAK +##' +##' +##' @title run_distrib_imports +##' +##' @param states_of_interest single simulation result from importation model +##' @param regioncode Region/project name +##' @param yr Year of county population data +##' @param mean_travel_file Filename of monthly mean travelers into each airport in the region +##' @param states_of_interest States for which to get county populations +##' @param travelers_threshold Minimum monthly average travel volume to be included +##' @param airport_cluster_threshold Distance by which airports can be separated to be in the same cluster, in km; Haversine distance. +##' @param imports_sim_file file name root for each importation simulation. +##' @param local_dir local data directory +##' +##' @return A data.frame of clustered airports, dates, and nmber of importations +##' +##' @import doParallel +##' +##' +##' +examine_single_dest <- function(dests=NULL, output_dir=file.path("model_output", "importation",regioncode)){ + + # input data + input_data <- readr::read_csv(file.path(output_dir,"input_data.csv")) + input_data_dest <- input_data %>% dplyr::filter(destination %in% dest) + + # travel data + travel_data <- readr::read_csv(file.path(output_dir,"travel_data_monthly.csv")) + travel_data_dest <- input_data %>% dplyr::filter(destination %in% dest) + + + # Pull importation results and combine them + import_files <- list.files(output_dir, "imports_sim") + + # get the first one + imports <- readr::read_csv(file.path(output_dir,paste0("imports_sim", 1, ".csv"))) + if (!is.null(dests)){ + imports <- imports %>% dplyr::filter(destination %in% dest) + } + imports <- imports %>% dplyr::group_by(destination, source, t) %>% + dplyr::summarise(imports = sum(this.sim, na.rm = TRUE)) + n_dest <- length(unique(imports$destination)) + n_source <- length(unique(imports$source)) + n_t <- length(unique(imports$t)) + n_sim <- length(import_files) + + #imports_res <- list() + import_array <- array(0, dim=c(n_source, n_dest, n_t, n_sim), + dimnames = list(sort(unique(imports$source)), + sort(unique(imports$destination)), + sort(unique(imports$t)), + seq_len(n_sim))) + + + for (n in seq_len(length(import_files))){ + + # import results + imports <- readr::read_csv(file.path(output_dir,paste0("imports_sim", n, ".csv"))) + + if (!is.null(dests)){ + imports <- imports %>% dplyr::filter(destination %in% dest) + } + + imports <- imports %>% dplyr::group_by(destination, source, t) %>% + dplyr::summarise(imports = sum(this.sim, na.rm = TRUE)) + + #imports_res[[n]] <- imports %>% mutate(sim=n) + import_array[,,,n] <- reshape2::acast(imports %>% dplyr::group_by(source, destination, t), + source ~ destination ~ t, value.var = "imports", + fill=0) + } + #imports_res <- data.table::rbindlist(imports_res) + + #format(object.size(imports_res), "Mb") + format(object.size(import_array), "Mb") + + + # imports_sum_dest <- imports_res %>% + # dplyr::group_by(destination, t) %>% + # dplyr::summarise(sim_mean = mean(imports), + # sim_ll = min(imports), + # sim_ul = max(imports)) + # + # imports_sum <- imports_res %>% + # dplyr::group_by(destination, source, t) %>% + # dplyr::summarise(sim_mean = mean(imports), + # sim_ll = min(imports), + # sim_ul = max(imports)) + + + dest_ <- apply(import_array, c(2:4), sum) + + + dest_mean <- apply(dest_, c(1:2), mean) + + summarize_dests <- function(data=dest_, ){ + dest_res <- apply(dest_, c(1:2), quantile, prob=0.025) + dest_res <- dest_res %>% as_tibble() %>% + mutate(destination = row.names(dest_res)) %>% + pivot_longer(-destination, + names_to = "t", + values_to = "imports") + dest_res <- dest_res %>% mutate(t = as.Date(as.integer(t), origin="1970-01-01")) + + return(dest_res) + } + + + + dest_ul <- apply(dest_, c(1:2), quantile, prob=0.975) + + + + + + source_ <- apply(import_array, c(1,3:4), sum) + + + + + dest_cum <- apply(dest_, c(4), sum) + + + dest_ll <- apply(import_array, c(2:4), quantile, probs=.025) + + dest_cum <- apply(import_array, c(4), sum) + + + + + + ggplot() + + + + + + + +} + + + + + + + + + + + +#### DEAL WITH THIS BELOW LATER + + + +##' +##' Get negative binomial estimates for each time and destination +##' +##' @param importation_sim 4D array outputted from the importation model +##' @param cores number of cores to use in parallel. if not parallel, specify 1. +##' +##' @import doParallel +##' +##' @export +##' +calc_nb_import_pars <- function(importation_sim, cores=4){ + + # aggregate to just destination + import_sim_dests <- apply(importation_sim, 2:4, sum, na.rm=TRUE) + + dests <- dimnames(import_sim_dests)[[1]] + t <- dimnames(import_sim_dests)[[2]] + n_t <- length(t) + n_dest <- length(dests) + + # Make the blank parameter data.frame + #import_pars_df <- tidyr::expand_grid(destination=dests, t=t, size=1, mu=0) + + + # Set up the cluster for parallelization + library(doParallel) + print(paste0("Making a cluster of ", cores," for parallelization.")) + cl <- parallel::makeCluster(cores) + doParallel::registerDoParallel(cl) + + # Suppress errors for this loop + options(show.error.messages = FALSE) + + import_pars_df_all <- foreach(t_=seq_len(length(t)), + .packages = "fitdistrplus", + .combine = "rbind") %dopar% { + + import_pars_df <- data.frame(destination=dests, t=t_, size=1, mu=0) + + for (d_ in seq_len(length(dests))){ + + pars_ <- tryCatch ( { + fitdistrplus::fitdist(import_sim_dests[d_, t_, ], distr="nbinom", method="mle")$estimate + }, + #warning = function(w) { }, + error = function(e) { + c(1,0) + }) + + import_pars_df[d_, 3:4] <- pars_ + + } + import_pars_df + } + + # Un-suppress errors + options(show.error.messages = TRUE) + + parallel::stopCluster(cl) + + + # write_csv(import_pars_df, file.path("output",project_name, sprintf("covid_importation_nb_params_%s_batch_v%s.csv", batch, version))) + return(import_pars_df_all) +} + + + diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rdb b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rdb new file mode 100644 index 000000000..7e458addb Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rdb differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rds new file mode 100644 index 000000000..95451500e Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rdx b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rdx new file mode 100644 index 000000000..26e1ff692 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/Rdata.rdx differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/datalist b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/datalist new file mode 100644 index 000000000..947d5e85c --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/data/datalist @@ -0,0 +1,10 @@ +airport_attribution +airport_data +jhucsse_case_data +pop_data +travel_restrictions +tsa_throughput +underreporting +us_counties +usa_oag_aggr_travel +wikipedia_cases diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/get_case_data.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/get_case_data.R new file mode 100644 index 000000000..b7eb62f58 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/get_case_data.R @@ -0,0 +1,32 @@ + +#Required package +devtools::install_github("HopkinsIDD/globaltoolboxlite") +#Installation +devtools::install_github("HopkinsIDD/covidImportation") + +library(covidImportation) + + +## ~ Incidence data +incid_data_list <- get_incidence_data(first_date = ISOdate(2019,12,1), + last_date = Sys.time(), + update_case_data = TRUE, + case_data_dir = "data/case_data", + check_saved_data = TRUE, + save_data = TRUE) + +#Smoothed data -- currently smoothed for Chinese Province, US State, and otherwise country +incid_data <- incid_data_list$incid_data %>% dplyr::filter(source != "USA") +incid_data <- incid_data %>% rename(incid_est = cases_incid) + +#Cleaned JHU CSSE data +jhucsse <- incid_data_list$jhucsse_case_data + +#Cleaned JHU CSSE data, with cumulative cases and incident cases aggregated to State level for the US +jhucsse_state <- incid_data_list$jhucsse_case_data_state + + + +# To look at the functions doing smoothing within the `get_incidence_data` function, look at: +# -- est_daily_incidence_corrected() + diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/AnIndex b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/AnIndex new file mode 100644 index 000000000..7b012014f --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/AnIndex @@ -0,0 +1,50 @@ +airport_attribution airport_attribution +airport_data airport_data +apply_travel_restrictions apply_travel_restrictions +calc_nb_import_pars calc_nb_import_pars +correct_for_Hubei_reporting correct_for_Hubei_reporting +distrib_county_imports distrib_county_imports +do_airport_attribution do_airport_attribution +est_daily_incidence est_daily_incidence +est_daily_incidence_corrected est_daily_incidence_corrected +est_imports_base est_imports_base +est_import_detect_dates est_import_detect_dates +expand_travel_restrict expand_travel_restrict +find_recent_file find_recent_file +fit_ispline fit_ispline +get_airports_to_consider get_airports_to_consider +get_airport_city get_airport_city +get_airport_country get_airport_country +get_airport_state get_airport_state +get_CA_metro_labels get_CA_metro_labels +get_clean_JHUCSSE_data get_clean_JHUCSSE_data +get_clean_JHUCSSE_deaths get_clean_JHUCSSE_deaths +get_county_pops get_county_pops +get_global_cum get_global_cum +get_incidence_data get_incidence_data +get_incidence_fits get_incidence_fits +get_JHUCSSE_data get_JHUCSSE_data +get_JHUCSSE_deaths get_JHUCSSE_deaths +get_mean_imports get_mean_imports +get_oag_travel get_oag_travel +get_oag_travel_fulldata get_oag_travel_fulldata +imports_airport_clustering imports_airport_clustering +make_daily_travel make_daily_travel +make_daily_travel_faster make_daily_travel_faster +make_input_data make_input_data +make_meanD make_meanD +plot_imports_stackeddest plot_imports_stackeddest +plot_incidence_ests_report plot_incidence_ests_report +plot_rep_cases plot_rep_cases +pop_data pop_data +pull_JHUCSSE_github_data pull_JHUCSSE_github_data +read_JHUCSSE_cases read_JHUCSSE_cases +run_daily_import_model run_daily_import_model +run_daily_import_model_par run_daily_import_model_par +run_full_distrib_imports run_full_distrib_imports +run_importations run_importations +setup_and_run_importations setup_and_run_importations +setup_importations setup_importations +travel_restrictions travel_restrictions +underreporting underreporting +update_JHUCSSE_github_data update_JHUCSSE_github_data diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/aliases.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/aliases.rds new file mode 100644 index 000000000..96056d9fd Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/aliases.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/covidImportation.rdb b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/covidImportation.rdb new file mode 100644 index 000000000..11647440a Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/covidImportation.rdb differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/covidImportation.rdx b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/covidImportation.rdx new file mode 100644 index 000000000..ae4aa7971 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/covidImportation.rdx differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/paths.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/paths.rds new file mode 100644 index 000000000..08d57f5bd Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/help/paths.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/html/00Index.html b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/html/00Index.html new file mode 100644 index 000000000..dbdb9c28e --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/html/00Index.html @@ -0,0 +1,124 @@ + + +R: Estimating the Number of Imported COVID-19 Cases + + + +

Estimating the Number of Imported COVID-19 Cases + +

+
+
+[Up] +[Top] +

Documentation for package ‘covidImportation’ version 1.6.1

+ + + +

Help Pages

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
airport_attributionAirport attribution data for China
airport_dataAirport data
apply_travel_restrictionsApply a set of travel restrictions to the travel data, reducing or increasing to a proportion of the average travel.
calc_nb_import_parsGet negative binomial estimates for each time and destination
correct_for_Hubei_reportingFunction to correct for the changes in reporting in Hubei
distrib_county_importsdistrib_county_imports
do_airport_attributiondo_airport_attribution
est_daily_incidenceFunction to extract approximate epidemic curves from the cumulative case data.
est_daily_incidence_correctedWrapper function to correct for the changes in reporting in Hubei and merge with data for all incidence
est_imports_baseEstimate imports base
est_import_detect_datesEstimate the detection dates of importations
expand_travel_restrictExpand the travel restrictions to include every date, to allow for merging with travel data.
find_recent_filefind_recent_file
fit_isplineFunction to fit monotonically increasing spline. Returns a function that can be used to predict the spline for each date.
get_airports_to_considerget_airports_to_consider
get_airport_cityGet airport city
get_airport_countryGet airport country
get_airport_stateGet airport state
get_CA_metro_labelsGet Metro Areas for CA
get_clean_JHUCSSE_dataClean crude data from JHUCSSE and aggregated it to state or county level
get_clean_JHUCSSE_deathsClean crude data from JHUCSSE and aggregated it to state or county level
get_county_popsget_county_pops
get_global_cumGet cumulative case counts by Province_state
get_incidence_dataGet incidence data from JHUCSSE
get_incidence_fitsGet incidence data from JHUCSSE
get_JHUCSSE_dataPull JHU CSSE GitHub data
get_JHUCSSE_deathsPull JHU CSSE GitHub data
get_mean_importsGet mean importations across geoids
get_oag_travelGet OAG travel data
get_oag_travel_fulldataGet OAG travel data
imports_airport_clusteringimports_airport_clustering
make_daily_travelCreate Daily Travel
make_daily_travel_fasterConvert monthly travel to daily travel data - fast - When we have already built the daily data, we reuse that and just fill in the new daily volume each time
make_input_dataMake input data
make_meanDMake MeanD Matrix
plot_imports_stackeddestBarchart plot of importations stacked by source
plot_incidence_ests_reportFunction to plot the estimated and reported case counts
plot_rep_casesFacet plot of cumulative and incident cases at locations desired
pop_dataPopulation data
pull_JHUCSSE_github_dataPull JHU CSSE GitHub data
read_JHUCSSE_casesReads in the JHUCSSE total case count data up until (and including) a given dat.
run_daily_import_modelRun the full simulation of daily importations
run_daily_import_model_parRun the full simulation of daily importations
run_full_distrib_importsrun_distrib_imports
run_importationsRun importation sims
setup_and_run_importationsSet up and run importation sims
setup_importationsSet up importation sims
travel_restrictionsTravel restrictions data
underreportingUnderreporting data
update_JHUCSSE_github_dataPull JHU CSSE GitHub data
+ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/html/R.css b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/html/R.css new file mode 100644 index 000000000..f10f5ea66 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/html/R.css @@ -0,0 +1,97 @@ +body { + background: white; + color: black; +} + +a:link { + background: white; + color: blue; +} + +a:visited { + background: white; + color: rgb(50%, 0%, 50%); +} + +h1 { + background: white; + color: rgb(55%, 55%, 55%); + font-family: monospace; + font-size: x-large; + text-align: center; +} + +h2 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-size: large; + text-align: center; +} + +h3 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-size: large; +} + +h4 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-style: italic; + font-size: large; +} + +h5 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; +} + +h6 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-style: italic; +} + +img.toplogo { + width: 4em; + vertical-align: middle; +} + +img.arrow { + width: 30px; + height: 30px; + border: 0; +} + +span.acronym { + font-size: small; +} + +span.env { + font-family: monospace; +} + +span.file { + font-family: monospace; +} + +span.option{ + font-family: monospace; +} + +span.pkg { + font-weight: bold; +} + +span.samp{ + font-family: monospace; +} + +div.vignettes a:hover { + background: rgb(85%, 85%, 85%); +} diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/importation_analysis.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/importation_analysis.R new file mode 100644 index 000000000..aeac2db42 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/importation_analysis.R @@ -0,0 +1,562 @@ +##::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: +##' nCoV Importation Analyses -- Risk Analyses #### +##' +##::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: + +if (!exists("version") | is.list(version)){ version <- "1" } +if (!exists("batch") | is.list(batch)){ batch <- "1st" } +if (!exists("project_name")){ project_name <- "california_import" } +if (!exists("start_date")){ start_date <- "2020-01-01" } +if (!exists("na_to_zero")){ na_to_zero <- TRUE } + +print(project_name) +print(version) +print(batch) + +dir.create(file.path("results", project_name), recursive = TRUE) +import_sim_file <- file.path("output",project_name, sprintf("covid_importation_sim_%s_batch_v%s.RData", batch, version)) + + + +# SETUP ------------------------------------------------------------------- + +options(scipen=999) +if(!require('tidyverse')) install.packages('tidyverse'); library(tidyverse) +if(!require('reshape2')) install.packages('reshape2'); library(reshape2) +if(!require('abind')) install.packages('abind'); library(abind) + + + +# IMPORT DATA ------------------------------------------------------------- + +load(import_sim_file) # load importation_sim +Sys.sleep(5) # pause to let the computer catch up +#format(object.size(importation_sim),"Mb") + +sources_ <- dimnames(importation_sim)[[1]] +dests_ <- dimnames(importation_sim)[[2]] +t_ <- dimnames(importation_sim)[[3]] +sims_ <- dimnames(importation_sim)[[4]] + + +# Check range of sims +range(sims_) +tmp <- apply(importation_sim, c(3,4), sum, na.rm=TRUE) +rowMeans(tmp) + + + +# ~ Convert to Long Form -------------------------------------------------- + +# Convert raw data array into long format +import_data_long <- arrayhelpers::array2df(importation_sim) +Sys.sleep(5) # pause to let the computer catch up + +colnames(import_data_long) <- c("imports","source","destination","t","sim") +import_data_long <- import_data_long %>% mutate(t = lubridate::ymd(t)) %>% as.data.frame() + +# Remove time prior to start_date +min((import_data_long %>% filter(!is.na(imports)))$t) +import_data_long <- import_data_long %>% filter(t>=start_date) + + +#write_csv(import_data_long, paste0("data/est_imports_long_ver",version,".csv")) +import_data_long$imports <- as.integer(as.character(import_data_long$imports)) +dims_import_data <- dim(importation_sim) +n_sim <- dims_import_data[4] +format(object.size(import_data_long), "Mb") + +# # Add reported +# import_data_long <- left_join(import_data_long, imports_reported_bydestination) + +# Make NAs into 0 if desired +if (na_to_zero){ + import_data_long <- import_data_long %>% mutate(imports = ifelse(is.na(imports), 0, imports)) +} + +# ~ Summarize imporations in long data ------------------------------------ + +# Get mean and medians for ea/ch sim +import_data_long <- import_data_long %>% group_by(sim) %>% + mutate(mean_sim=mean(imports, na.rm=T), + median_sim=median(imports, na.rm=T)) %>% ungroup() + +# Get RR compared to the mean and median +import_data_long$RR.vs.sim.mean <- import_data_long$imports / import_data_long$mean_sim +import_data_long$RR.vs.sim.median <- import_data_long$imports / import_data_long$median_sim + +# Get RR compared to the destination mean +import_data_long <- import_data_long %>% group_by(destination, sim) %>% + mutate(destination_sim_mean = mean(imports, na.rm=TRUE)) %>% ungroup() +import_data_long$RR.vs.destination.mean <- import_data_long$imports / import_data_long$destination_sim_mean +import_data_long$RR.vs.destination.mean[import_data_long$destination_sim_mean==0] <- 1 + + +# Save it +dir.create(file.path("results", project_name), recursive = TRUE, showWarnings = FALSE) +write_csv(import_data_long, file.path("results", project_name, sprintf("import_data_long_v%s.csv", version))) + + +# # Load it +import_data_long <- read_csv(file.path("results", project_name, sprintf("import_data_long_v%s.csv", version))) %>% as.data.frame() + +cols.numeric <- c("mean_sim", "RR.vs.sim.mean", "RR.vs.sim.median", "destination_sim_mean", "RR.vs.destination.mean") +cols.integer <- c("imports", "sim", "median_sim") +#"rep_imports", "rep_imports_orig", "missing_data_count", "available_data_count","mean_travel", "mean_population", +import_data_long[cols.numeric] <- sapply(import_data_long[cols.numeric], as.numeric) +import_data_long[cols.integer] <- sapply(import_data_long[cols.integer], as.integer) +sapply(import_data_long, class) + +n_sim <- max(import_data_long$sim) + + + + + + + +# SUMMARIZE RESULTS ------------------------------------------------------- + + +# ~ import_results_dest -------------------------------------------------------- + +# Get RR mean and CIs +import_results_dest <- import_data_long %>% group_by(destination, sim) %>% + mutate(imports = sum(imports, na.rm = TRUE)) %>% ungroup() %>% group_by(destination) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + import_25pt=quantile(imports, probs=.25, na.rm=T), + import_75pt=quantile(imports, probs=.75, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T), + + RR_destination_mean=mean(RR.vs.destination.mean, na.rm=T), + RR_destination_ll=quantile(RR.vs.destination.mean, probs=.025, na.rm=T), + RR_destination_ul=quantile(RR.vs.destination.mean, probs=.975, na.rm=T), + RR_destination_sd=sd(RR.vs.destination.mean, na.rm=T), + RR_destination_median=median(RR.vs.destination.mean, na.rm=T)#, + #rep_imports = mean(rep_imports, na.rm = T) + ) + +write_csv(import_results_dest, file.path("results",project_name,sprintf("import_results_dest_v%s.csv", version))) + + + +# ~ import_results_desttime -------------------------------------------------------- + + + +# Get RR mean and CIs +import_results_desttime <- import_data_long %>% group_by(destination, t, sim) %>% + mutate(imports = sum(imports, na.rm = TRUE)) %>% ungroup() %>% group_by(destination, t) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + import_25pt=quantile(imports, probs=.25, na.rm=T), + import_75pt=quantile(imports, probs=.75, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T), + + RR_destination_mean=mean(RR.vs.destination.mean, na.rm=T), + RR_destination_ll=quantile(RR.vs.destination.mean, probs=.025, na.rm=T), + RR_destination_ul=quantile(RR.vs.destination.mean, probs=.975, na.rm=T), + RR_destination_sd=sd(RR.vs.destination.mean, na.rm=T), + RR_destination_median=median(RR.vs.destination.mean, na.rm=T)#, + #rep_imports = mean(rep_imports, na.rm = T) + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(destination, t, sim) %>% + summarise(imports = sum(imports)) %>% group_by(destination, t) %>% + summarize(n_import = sum(imports>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime$prob_any_import <- prob_any_import$prob_import +import_results_desttime <- import_results_desttime %>% dplyr::select(1,2,prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime, file.path("results",project_name,sprintf("import_results_desttime_v%s.csv", version))) + + +# # ADD REPORTED TO ESTIMATED +# #source("Source/clean_reported_importations.R") +# reported_file_path <- paste0("Results/",results_folder,"/import_reported_long_matched.csv") +# +# if (file.exists(reported_file_path)){ +# # load reported imports summed by destination +# imports_reported_long <- read_csv(reported_file_path) %>% as.data.frame() %>% +# rename(rep_imports=imports) +# +# # merge with import_results +# import_results <- left_join(import_results, imports_reported_long) +# import_data_long <- left_join(import_data_long, imports_reported_long) +# +# } else { +# import_results$rep_imports <- NA +# import_data_long$rep_imports <- NA +# } + + + + + + + +# ~ import_results_desttime_cum -------------------------------------------------------- +# Cumulate importations into destination + +# Add up importations by location by simulation +import_data_long <- import_data_long %>% group_by(sim, source, destination) %>% + mutate(imports_cum = cumsum(imports)) %>% ungroup() + +# Get RR mean and CIs +import_results_desttime_cum <- import_data_long %>% group_by(destination, t, sim) %>% + mutate(imports_cum = sum(imports_cum, na.rm = TRUE)) %>% ungroup() %>% group_by(destination, t) %>% + summarize( + cum_import_mean=mean(imports_cum, na.rm=T), + cum_import_sd=sd(imports_cum, na.rm=T), + cum_import_ll=quantile(imports_cum, probs=.025, na.rm=T), + cum_import_ul=quantile(imports_cum, probs=.975, na.rm=T), + cum_import_median=median(imports_cum, na.rm=T), + cum_import_min=min(imports_cum, na.rm=T), + cum_import_max=max(imports_cum, na.rm=T), + cum_import_25pt=quantile(imports_cum, probs=.25, na.rm=T), + cum_import_75pt=quantile(imports_cum, probs=.75, na.rm=T), + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(destination, t, sim) %>% + summarise(imports_cum = sum(imports_cum)) %>% group_by(destination, t) %>% + summarize(n_import = sum(imports_cum>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime_cum$cum_prob_any_import <- prob_any_import$prob_import +import_results_desttime_cum <- import_results_desttime_cum %>% dplyr::select(1,2,cum_prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime_cum, file.path("results",project_name,sprintf("import_results_desttime_cumulative_v%s.csv", version))) + + + + + +# ~ import_results_desttime_overall -------------------------------------------------------- + + +# Get RR mean and CIs +import_results_desttime_overall <- import_data_long %>% group_by(t, sim) %>% + mutate(imports = sum(imports, na.rm = TRUE)) %>% ungroup() %>% group_by(t) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + import_25pt=quantile(imports, probs=.25, na.rm=T), + import_75pt=quantile(imports, probs=.75, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T), + + RR_destination_mean=mean(RR.vs.destination.mean, na.rm=T), + RR_destination_ll=quantile(RR.vs.destination.mean, probs=.025, na.rm=T), + RR_destination_ul=quantile(RR.vs.destination.mean, probs=.975, na.rm=T), + RR_destination_sd=sd(RR.vs.destination.mean, na.rm=T), + RR_destination_median=median(RR.vs.destination.mean, na.rm=T)#, + #rep_imports = mean(rep_imports, na.rm = T) + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(t, sim) %>% + summarise(imports = sum(imports)) %>% group_by(t) %>% + summarize(n_import = sum(imports>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime_overall$prob_any_import <- prob_any_import$prob_import +import_results_desttime_overall <- import_results_desttime_overall %>% dplyr::select(1,2,prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime_overall, file.path("results",project_name,sprintf("import_results_desttime_overall_v%s.csv", version))) + + +# # ADD REPORTED TO ESTIMATED +# #source("Source/clean_reported_importations.R") +# reported_file_path <- paste0("Results/",results_folder,"/import_reported_long_matched.csv") +# +# if (file.exists(reported_file_path)){ +# # load reported imports summed by destination +# imports_reported_long <- read_csv(reported_file_path) %>% as.data.frame() %>% +# rename(rep_imports=imports) +# +# # merge with import_results +# import_results <- left_join(import_results, imports_reported_long) +# import_data_long <- left_join(import_data_long, imports_reported_long) +# +# } else { +# import_results$rep_imports <- NA +# import_data_long$rep_imports <- NA +# } + + + + + + + +# ~ import_results_desttime_overall_cum -------------------------------------------------------- +# Cumulate importations into overall destination (i.e., a state) + +# Get RR mean and CIs +import_results_desttime_overall_cum <- import_data_long %>% + group_by(t, sim) %>% summarise(imports = sum(imports, na.rm = TRUE)) %>% as.data.frame() %>% + group_by(sim) %>% mutate(imports_cum = cumsum(imports)) %>% ungroup(sim) %>% + group_by(t) %>% + summarize( + cum_import_mean=mean(imports_cum, na.rm=T), + cum_import_sd=sd(imports_cum, na.rm=T), + cum_import_ll=quantile(imports_cum, probs=.025, na.rm=T), + cum_import_ul=quantile(imports_cum, probs=.975, na.rm=T), + cum_import_median=median(imports_cum, na.rm=T), + cum_import_min=min(imports_cum, na.rm=T), + cum_import_max=max(imports_cum, na.rm=T), + cum_import_25pt=quantile(imports_cum, probs=.25, na.rm=T), + cum_import_75pt=quantile(imports_cum, probs=.75, na.rm=T), + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(t, sim) %>% + summarise(imports = sum(imports, na.rm = TRUE)) %>% as.data.frame() %>% + group_by(sim) %>% mutate(imports_cum = cumsum(imports)) %>% ungroup(sim) %>% + group_by(t) %>% + summarize(n_import = sum(imports_cum>0)) %>% + mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime_overall_cum$cum_prob_any_import <- prob_any_import$prob_import +import_results_desttime_overall_cum <- import_results_desttime_overall_cum %>% dplyr::select(1,2,cum_prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime_overall_cum, file.path("results",project_name,sprintf("import_results_desttime_overall_cumulative_v%s.csv", version))) + + + + + +# ~ import_results_sources --------------------------------------------------- +# -- SUMMARIZE IMPORTATION FROM PROVINCES - FROM LONG DATA + +head(import_data_long) + +# long source year +import_data_sourcesday_long <- import_data_long %>% + group_by(source, t, sim) %>% + summarize(imports=sum(imports, na.rm=T)) +head(import_data_sourcesday_long) + +# long source +import_data_sources_long <- import_data_long %>% group_by(source, sim) %>% + summarize(imports=sum(imports, na.rm=T)) +head(import_data_sources_long) + +# Get mean and medians for each sim +import_data_sources_long <- import_data_sources_long %>% group_by(sim) %>% + mutate(mean_sim=mean(imports, na.rm=T), median_sim=median(imports, na.rm=T)) %>% ungroup() + +# Get the probability of >0 imports +prob_any_import <- import_data_sources_long %>% group_by(source) %>% + summarize(n_anyimport=sum(imports>0)) %>% mutate(prob_import=n_anyimport/n_sim) + +# Get RR compared to the mean +import_data_sources_long <- import_data_sources_long %>% mutate(RR.vs.sim.mean = imports / mean_sim) + +# Get RR mean and CIs +import_results_sources <- import_data_sources_long %>% group_by(source) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T)) %>% as.data.frame() + +import_results_sources <- left_join(import_results_sources, prob_any_import %>% select(-n_anyimport), by=c("source"="source")) +head(import_results_sources) +rm(prob_any_import) + +write_csv(import_results_sources, file.path("results",project_name,sprintf("import_results_sources_v%s.csv", version))) + + + + + +# ~ import_results_sourcetime --------------------------------------- + +# SUMMARIZE IMPORTATIONS BY STATE AND YEAR + +# Sum up by t +import_sourcetime_long <- import_data_long %>% as.data.frame() %>% + group_by(source, t, sim) %>% + summarise(imports=sum(imports)) +import_sourcetime_long <- import_sourcetime_long %>% + group_by(sim) %>% mutate(mean_sim=mean(imports, na.rm=T)) %>% ungroup() %>% + mutate(RR.vs.sim.mean=imports/mean_sim) + +# Get RR mean and CIs +import_results_sourcetime <- import_sourcetime_long %>% group_by(source, t) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_ll_pois = NA, + import_ul_pois = NA, + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + + #rep_import=mean(rep_imports, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T) + ) + +import_results_sourcetime <- import_results_sourcetime %>% + mutate(import_ll_pois = import_mean - 1.96 * sqrt(import_mean/10000), + import_ul_pois = import_mean + 1.96 * sqrt(import_mean/10000)) + + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(source, t, sim) %>% + summarise(imports = sum(imports)) %>% group_by(source, t) %>% + summarize(n_import = sum(imports>0)) %>% mutate(prob_import=n_import/(n_sim)) + + +prob_for_cis <- prob_any_import %>% filter(!is.na(n_import)) %>% + mutate(n = n_sim) +cis <- Hmisc::binconf(prob_for_cis$n_import, prob_for_cis$n, + alpha=0.05, + method=c("wilson"), + include.x=FALSE, include.n=FALSE, return.df=TRUE) +prob_for_cis <- data.frame(prob_for_cis, cis) +prob_for_cis <- prob_for_cis %>% mutate(Lower=round(Lower, 3), Upper=round(Upper, 3)) +prob_any_import <- left_join(prob_any_import, prob_for_cis %>% + select(source, t, prob_ll=Lower, prob_ul=Upper)) +rm(prob_for_cis) + +t_meanprob <- prob_any_import %>% group_by(source) %>% + summarise(mean = round(mean(prob_import, na.rm=TRUE), 3), + mean_ll = round(mean(prob_ll, na.rm=TRUE), 3), + mean_ul = round(mean(prob_ul, na.rm=TRUE), 3), + probyr_sd = sd(prob_import, na.rm=TRUE), + n_samp = sum(!is.na(prob_import))) %>% + mutate(probyr_ll = round(mean - 1.96*probyr_sd/sqrt(n_samp), 3), + probyr_ul = round(mean + 1.96*probyr_sd/sqrt(n_samp), 3)) + + +import_results_sourcetime$prob_any_import <- prob_any_import$prob_import +import_results_sourcetime <- import_results_sourcetime %>% dplyr::select(1,2,prob_any_import, everything()) +rm(prob_any_import) + +import_results_sourcetime <- import_results_sourcetime %>% + dplyr::select(source, t, everything()) +# +# # Add travel and population adjustment +# Travelers.source.t <- read_csv("Data/travel_t_sources.csv") +# import_results_sourcetime <- add_t_pop_and_travel(import_results_sourcetime) +# import_results_sourcetime <- import_results_sourcetime %>% +# mutate(exp_per_100000trav = import_mean / (travelers/100000), +# exp_per_100000trav_ll = import_ll / (travelers/100000), +# exp_per_100000trav_ul = import_ul / (travelers/100000)) + +write_csv(import_results_sourcetime, file.path("results",project_name,sprintf("import_results_sourcetime_v%s.csv", version))) +#import_results_sourcetime <- read_csv(paste0("Results/",results_folder,"/import_results_sourcetime_summary.csv")) %>% as.data.frame() + + + + + +# ~ import_results_sourcetime_cum -------------------------------------------------------- +# Cumulate importations into source + + +# Get RR mean and CIs +import_results_sourcetime_cum <- import_data_long %>% group_by(source, t, sim) %>% + mutate(imports_cum = sum(imports_cum, na.rm = TRUE)) %>% ungroup() %>% group_by(source, t) %>% + summarize( + cum_import_mean=mean(imports_cum, na.rm=T), + cum_import_sd=sd(imports_cum, na.rm=T), + cum_import_ll=quantile(imports_cum, probs=.025, na.rm=T), + cum_import_ul=quantile(imports_cum, probs=.975, na.rm=T), + cum_import_median=median(imports_cum, na.rm=T), + cum_import_min=min(imports_cum, na.rm=T), + cum_import_max=max(imports_cum, na.rm=T), + cum_import_25pt=quantile(imports_cum, probs=.25, na.rm=T), + cum_import_75pt=quantile(imports_cum, probs=.75, na.rm=T), + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(source, t, sim) %>% + summarise(imports_cum = sum(imports_cum)) %>% group_by(source, t) %>% + summarize(n_import = sum(imports_cum>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_sourcetime_cum$cum_prob_any_import <- prob_any_import$prob_import +import_results_sourcetime_cum <- import_results_sourcetime_cum %>% dplyr::select(1,2,cum_prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_sourcetime_cum, file.path("results",project_name,sprintf("import_results_sourcetime_cumulative_v%s.csv", version))) + + + + + + + + + + + + + + + + + +# REMOVE EVERYTHING FROM THE CURRENT WORKSPACE +#rm(list = ls()); gc() + + diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/importation_analysis_detection.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/importation_analysis_detection.R new file mode 100644 index 000000000..d625f441e --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/importation_analysis_detection.R @@ -0,0 +1,559 @@ +##::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: +##' nCoV Importation Analyses -- Risk Analyses #### +##' +##::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: + +if (!exists("version") | is.list(version)){ version <- "1" } +if (!exists("batch") | is.list(batch)){ batch <- "1st" } +if (!exists("project_name")){ project_name <- "shenzhen_import" } +if (!exists("start_date")){ start_date <- "2020-01-21" } +if (!exists("na_to_zero")){ na_to_zero <- TRUE } + +dir.create(file.path("results", project_name), recursive = TRUE) +import_detect_file <- file.path("output",project_name, sprintf("covid_importation_detect_%s_batch_v%s.RData", batch, version)) + +# +# print(project_name) +# print(version) +# print(batch) + +# SETUP ------------------------------------------------------------------- + +options(scipen=999) +if(!require('tidyverse')) install.packages('tidyverse'); library(tidyverse) +if(!require('reshape2')) install.packages('reshape2'); library(reshape2) +if(!require('abind')) install.packages('abind'); library(abind) + + + +# IMPORT DATA ------------------------------------------------------------- + +load(import_detect_file) # load importation_sim +Sys.sleep(5) # pause to let the computer catch up + + +sources_ <- dimnames(importation_detect)[[1]] +dests_ <- dimnames(importation_detect)[[2]] +t_ <- dimnames(importation_detect)[[3]] +sims_ <- dimnames(importation_detect)[[4]] + + +# Check range of sims +range(sims_) +tmp <- apply(importation_detect, c(3,4), sum, na.rm=TRUE) +rowMeans(tmp) + + + + +# ~ Convert to Long Form -------------------------------------------------- + +# Convert raw data array into long format +import_data_long <- arrayhelpers::array2df(importation_detect) +Sys.sleep(5) # pause to let the computer catch up + +colnames(import_data_long) <- c("imports","source","destination","t","sim") +import_data_long <- import_data_long %>% mutate(t = lubridate::ymd(t)) %>% as.data.frame() + +# Remove time prior to start_date +min((import_data_long %>% filter(!is.na(imports)))$t) +import_data_long <- import_data_long %>% filter(t>=start_date) + + +#write_csv(import_data_long, paste0("data/est_imports_long_ver",version,".csv")) +import_data_long$imports <- as.integer(as.character(import_data_long$imports)) +dims_import_data <- dim(importation_detect) +n_sim <- dims_import_data[4] +format(object.size(import_data_long), "Mb") + +# # Add reported +# import_data_long <- left_join(import_data_long, imports_reported_bydestination) + +# Make NAs into 0 if desired +if (na_to_zero){ + import_data_long <- import_data_long %>% mutate(imports = ifelse(is.na(imports), 0, imports)) +} + + +# ~ Summarize imporations in long data ------------------------------------ + +# Get mean and medians for ea/ch sim +import_data_long <- import_data_long %>% group_by(sim) %>% + mutate(mean_sim=mean(imports, na.rm=T), + median_sim=median(imports, na.rm=T)) %>% ungroup() + +# Get RR compared to the mean and median +import_data_long$RR.vs.sim.mean <- import_data_long$imports / import_data_long$mean_sim +import_data_long$RR.vs.sim.median <- import_data_long$imports / import_data_long$median_sim + +# Get RR compared to the destination mean +import_data_long <- import_data_long %>% group_by(destination, sim) %>% + mutate(destination_sim_mean = mean(imports, na.rm=TRUE)) %>% ungroup() +import_data_long$RR.vs.destination.mean <- import_data_long$imports / import_data_long$destination_sim_mean +import_data_long$RR.vs.destination.mean[import_data_long$destination_sim_mean==0] <- 1 + + +# Save it +dir.create(file.path("results", project_name), recursive = TRUE) +write_csv(import_data_long, file.path("results", project_name, sprintf("import_data_detected_long_v%s.csv", version))) + + +# # Load it +#import_data_long <- read_csv(file.path("results", project_name, sprintf("import_data_detected_long_v%s.csv", version))) %>% as.data.frame() + +cols.numeric <- c("mean_sim", "RR.vs.sim.mean", "RR.vs.sim.median", "destination_sim_mean", "RR.vs.destination.mean") +cols.integer <- c("imports", "sim", "median_sim") +#"rep_imports", "rep_imports_orig", "missing_data_count", "available_data_count","mean_travel", "mean_population", +import_data_long[cols.numeric] <- sapply(import_data_long[cols.numeric], as.numeric) +import_data_long[cols.integer] <- sapply(import_data_long[cols.integer], as.integer) +sapply(import_data_long, class) + +n_sim <- max(import_data_long$sim) + + + + +# SUMMARIZE RESULTS ------------------------------------------------------- + + +# ~ import_results_dest -------------------------------------------------------- + +# Get RR mean and CIs +import_results_dest <- import_data_long %>% group_by(destination, sim) %>% + mutate(imports = sum(imports, na.rm = TRUE)) %>% ungroup() %>% group_by(destination) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + import_25pt=quantile(imports, probs=.25, na.rm=T), + import_75pt=quantile(imports, probs=.75, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T), + + RR_destination_mean=mean(RR.vs.destination.mean, na.rm=T), + RR_destination_ll=quantile(RR.vs.destination.mean, probs=.025, na.rm=T), + RR_destination_ul=quantile(RR.vs.destination.mean, probs=.975, na.rm=T), + RR_destination_sd=sd(RR.vs.destination.mean, na.rm=T), + RR_destination_median=median(RR.vs.destination.mean, na.rm=T)#, + #rep_imports = mean(rep_imports, na.rm = T) + ) + +write_csv(import_results_dest, file.path("results",project_name,sprintf("import_results_dest_detect_v%s.csv", version))) + + + +# ~ import_results_desttime -------------------------------------------------------- + +# Get RR mean and CIs +import_results_desttime <- import_data_long %>% group_by(destination, t, sim) %>% + mutate(imports = sum(imports, na.rm = TRUE)) %>% ungroup() %>% group_by(destination, t) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + import_25pt=quantile(imports, probs=.25, na.rm=T), + import_75pt=quantile(imports, probs=.75, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T), + + RR_destination_mean=mean(RR.vs.destination.mean, na.rm=T), + RR_destination_ll=quantile(RR.vs.destination.mean, probs=.025, na.rm=T), + RR_destination_ul=quantile(RR.vs.destination.mean, probs=.975, na.rm=T), + RR_destination_sd=sd(RR.vs.destination.mean, na.rm=T), + RR_destination_median=median(RR.vs.destination.mean, na.rm=T)#, + #rep_imports = mean(rep_imports, na.rm = T) + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(destination, t, sim) %>% + summarise(imports = sum(imports)) %>% group_by(destination, t) %>% + summarize(n_import = sum(imports>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime$prob_any_import <- prob_any_import$prob_import +import_results_desttime <- import_results_desttime %>% dplyr::select(1,2,prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime, file.path("results",project_name,sprintf("import_results_desttime_detect_v%s.csv", version))) + + +# # ADD REPORTED TO ESTIMATED +# #source("Source/clean_reported_importations.R") +# reported_file_path <- paste0("Results/",results_folder,"/import_reported_long_matched.csv") +# +# if (file.exists(reported_file_path)){ +# # load reported imports summed by destination +# imports_reported_long <- read_csv(reported_file_path) %>% as.data.frame() %>% +# rename(rep_imports=imports) +# +# # merge with import_results +# import_results <- left_join(import_results, imports_reported_long) +# import_data_long <- left_join(import_data_long, imports_reported_long) +# +# } else { +# import_results$rep_imports <- NA +# import_data_long$rep_imports <- NA +# } + + + + + + + +# ~ import_results_desttime_cum -------------------------------------------------------- +# Cumulate importations into destination + +# Add up importations by location by simulation +import_data_long <- import_data_long %>% group_by(sim, source, destination) %>% + mutate(imports_cum = cumsum(imports)) %>% ungroup() + +# Get RR mean and CIs +import_results_desttime_cum <- import_data_long %>% group_by(destination, t, sim) %>% + mutate(imports_cum = sum(imports_cum, na.rm = TRUE)) %>% ungroup() %>% group_by(destination, t) %>% + summarize( + cum_import_mean=mean(imports_cum, na.rm=T), + cum_import_sd=sd(imports_cum, na.rm=T), + cum_import_ll=quantile(imports_cum, probs=.025, na.rm=T), + cum_import_ul=quantile(imports_cum, probs=.975, na.rm=T), + cum_import_median=median(imports_cum, na.rm=T), + cum_import_min=min(imports_cum, na.rm=T), + cum_import_max=max(imports_cum, na.rm=T), + cum_import_25pt=quantile(imports_cum, probs=.25, na.rm=T), + cum_import_75pt=quantile(imports_cum, probs=.75, na.rm=T), + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(destination, t, sim) %>% + summarise(imports_cum = sum(imports_cum)) %>% group_by(destination, t) %>% + summarize(n_import = sum(imports_cum>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime_cum$cum_prob_any_import <- prob_any_import$prob_import +import_results_desttime_cum <- import_results_desttime_cum %>% dplyr::select(1,2,cum_prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime_cum, file.path("results",project_name,sprintf("import_results_desttime_cumulative_detect_v%s.csv", version))) + + + + + + +# ~ import_results_desttime_overall -------------------------------------------------------- + + +# Get RR mean and CIs +import_results_desttime_overall <- import_data_long %>% group_by(t, sim) %>% + mutate(imports = sum(imports, na.rm = TRUE)) %>% ungroup() %>% group_by(t) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + import_25pt=quantile(imports, probs=.25, na.rm=T), + import_75pt=quantile(imports, probs=.75, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T), + + RR_destination_mean=mean(RR.vs.destination.mean, na.rm=T), + RR_destination_ll=quantile(RR.vs.destination.mean, probs=.025, na.rm=T), + RR_destination_ul=quantile(RR.vs.destination.mean, probs=.975, na.rm=T), + RR_destination_sd=sd(RR.vs.destination.mean, na.rm=T), + RR_destination_median=median(RR.vs.destination.mean, na.rm=T)#, + #rep_imports = mean(rep_imports, na.rm = T) + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(t, sim) %>% + summarise(imports = sum(imports)) %>% group_by(t) %>% + summarize(n_import = sum(imports>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime_overall$prob_any_import <- prob_any_import$prob_import +import_results_desttime_overall <- import_results_desttime_overall %>% dplyr::select(1,2,prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime_overall, file.path("results",project_name,sprintf("import_results_desttime_overall_detect_v%s.csv", version))) + + +# # ADD REPORTED TO ESTIMATED +# #source("Source/clean_reported_importations.R") +# reported_file_path <- paste0("Results/",results_folder,"/import_reported_long_matched.csv") +# +# if (file.exists(reported_file_path)){ +# # load reported imports summed by destination +# imports_reported_long <- read_csv(reported_file_path) %>% as.data.frame() %>% +# rename(rep_imports=imports) +# +# # merge with import_results +# import_results <- left_join(import_results, imports_reported_long) +# import_data_long <- left_join(import_data_long, imports_reported_long) +# +# } else { +# import_results$rep_imports <- NA +# import_data_long$rep_imports <- NA +# } + + + + + + + +# ~ import_results_desttime_overall_cum -------------------------------------------------------- +# Cumulate importations into overall destination (i.e., a state) + +# Add up importations by location by simulation +import_data_overall_long <- import_data_long %>% group_by(sim, source) %>% + mutate(imports_cum = cumsum(imports)) %>% ungroup() + +# Get RR mean and CIs +import_results_desttime_overall_cum <- import_data_overall_long %>% group_by(t, sim) %>% + mutate(imports_cum = sum(imports_cum, na.rm = TRUE)) %>% ungroup() %>% group_by(t) %>% + summarize( + cum_import_mean=mean(imports_cum, na.rm=T), + cum_import_sd=sd(imports_cum, na.rm=T), + cum_import_ll=quantile(imports_cum, probs=.025, na.rm=T), + cum_import_ul=quantile(imports_cum, probs=.975, na.rm=T), + cum_import_median=median(imports_cum, na.rm=T), + cum_import_min=min(imports_cum, na.rm=T), + cum_import_max=max(imports_cum, na.rm=T), + cum_import_25pt=quantile(imports_cum, probs=.25, na.rm=T), + cum_import_75pt=quantile(imports_cum, probs=.75, na.rm=T), + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_overall_long %>% group_by(t, sim) %>% + summarise(imports_cum = sum(imports_cum)) %>% group_by(t) %>% + summarize(n_import = sum(imports_cum>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_desttime_overall_cum$cum_prob_any_import <- prob_any_import$prob_import +import_results_desttime_overall_cum <- import_results_desttime_overall_cum %>% dplyr::select(1,2,cum_prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_desttime_overall_cum, file.path("results",project_name,sprintf("import_results_desttime_overall_cumulative_detect_v%s.csv", version))) + + + + + + + + + + + + + + + + + +# ~ import_results_sources --------------------------------------------------- +# -- SUMMARIZE IMPORTATION FROM PROVINCES - FROM LONG DATA + +head(import_data_long) + +# long source year +import_data_sourcesday_long <- import_data_long %>% + group_by(source, t, sim) %>% + summarize(imports=sum(imports, na.rm=T)) +head(import_data_sourcesday_long) + +# long source +import_data_sources_long <- import_data_long %>% group_by(source, sim) %>% + summarize(imports=sum(imports, na.rm=T)) +head(import_data_sources_long) + +# Get mean and medians for each sim +import_data_sources_long <- import_data_sources_long %>% group_by(sim) %>% + mutate(mean_sim=mean(imports, na.rm=T), median_sim=median(imports, na.rm=T)) %>% ungroup() + +# Get the probability of >0 imports +prob_any_import <- import_data_sources_long %>% group_by(source) %>% + summarize(n_anyimport=sum(imports>0)) %>% mutate(prob_import=n_anyimport/n_sim) + +# Get RR compared to the mean +import_data_sources_long <- import_data_sources_long %>% mutate(RR.vs.sim.mean = imports / mean_sim) + +# Get RR mean and CIs +import_results_sources <- import_data_sources_long %>% group_by(source) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T)) %>% as.data.frame() + +import_results_sources <- left_join(import_results_sources, prob_any_import %>% select(-n_anyimport), by=c("source"="source")) +head(import_results_sources) +rm(prob_any_import) + +write_csv(import_results_sources, file.path("results",project_name,sprintf("import_results_sources_detect_v%s.csv", version))) + + + + + +# ~ import_results_sourcetime --------------------------------------- + +# SUMMARIZE IMPORTATIONS BY STATE AND YEAR + +# Sum up by t +import_sourcetime_long <- import_data_long %>% as.data.frame() %>% + group_by(source, t, sim) %>% + summarise(imports=sum(imports)) +import_sourcetime_long <- import_sourcetime_long %>% + group_by(sim) %>% mutate(mean_sim=mean(imports, na.rm=T)) %>% ungroup() %>% + mutate(RR.vs.sim.mean=imports/mean_sim) + +# Get RR mean and CIs +import_results_sourcetime <- import_sourcetime_long %>% group_by(source, t) %>% + summarize( + import_mean=mean(imports, na.rm=T), + import_sd=sd(imports, na.rm=T), + import_ll=quantile(imports, probs=.025, na.rm=T), + import_ul=quantile(imports, probs=.975, na.rm=T), + import_ll_pois = NA, + import_ul_pois = NA, + import_median=median(imports, na.rm=T), + import_min=min(imports, na.rm=T), + import_max=max(imports, na.rm=T), + + #rep_import=mean(rep_imports, na.rm=T), + + RR_mean=mean(RR.vs.sim.mean, na.rm=T), + RR_ll=quantile(RR.vs.sim.mean, probs=.025, na.rm=T), + RR_ul=quantile(RR.vs.sim.mean, probs=.975, na.rm=T), + RR_sd=sd(RR.vs.sim.mean, na.rm=T), + RR_median=median(RR.vs.sim.mean, na.rm=T) + ) + +import_results_sourcetime <- import_results_sourcetime %>% + mutate(import_ll_pois = import_mean - 1.96 * sqrt(import_mean/10000), + import_ul_pois = import_mean + 1.96 * sqrt(import_mean/10000)) + + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(source, t, sim) %>% + summarise(imports = sum(imports)) %>% group_by(source, t) %>% + summarize(n_import = sum(imports>0)) %>% mutate(prob_import=n_import/(n_sim)) + + +prob_for_cis <- prob_any_import %>% filter(!is.na(n_import)) %>% + mutate(n = n_sim) +cis <- Hmisc::binconf(prob_for_cis$n_import, prob_for_cis$n, + alpha=0.05, + method=c("wilson"), + include.x=FALSE, include.n=FALSE, return.df=TRUE) +prob_for_cis <- data.frame(prob_for_cis, cis) +prob_for_cis <- prob_for_cis %>% mutate(Lower=round(Lower, 3), Upper=round(Upper, 3)) +prob_any_import <- left_join(prob_any_import, prob_for_cis %>% + select(source, t, prob_ll=Lower, prob_ul=Upper)) +rm(prob_for_cis) + +t_meanprob <- prob_any_import %>% group_by(source) %>% + summarise(mean = round(mean(prob_import, na.rm=TRUE), 3), + mean_ll = round(mean(prob_ll, na.rm=TRUE), 3), + mean_ul = round(mean(prob_ul, na.rm=TRUE), 3), + probyr_sd = sd(prob_import, na.rm=TRUE), + n_samp = sum(!is.na(prob_import))) %>% + mutate(probyr_ll = round(mean - 1.96*probyr_sd/sqrt(n_samp), 3), + probyr_ul = round(mean + 1.96*probyr_sd/sqrt(n_samp), 3)) + + +import_results_sourcetime$prob_any_import <- prob_any_import$prob_import +import_results_sourcetime <- import_results_sourcetime %>% dplyr::select(1,2,prob_any_import, everything()) +rm(prob_any_import) + +import_results_sourcetime <- import_results_sourcetime %>% + dplyr::select(source, t, everything()) +# +# # Add travel and population adjustment +# Travelers.source.t <- read_csv("Data/travel_t_sources.csv") +# import_results_sourcetime <- add_t_pop_and_travel(import_results_sourcetime) +# import_results_sourcetime <- import_results_sourcetime %>% +# mutate(exp_per_100000trav = import_mean / (travelers/100000), +# exp_per_100000trav_ll = import_ll / (travelers/100000), +# exp_per_100000trav_ul = import_ul / (travelers/100000)) + +write_csv(import_results_sourcetime, file.path("results",project_name,sprintf("import_results_sourcetime_detect_v%s.csv", version))) +#import_results_sourcetime <- read_csv(paste0("Results/",results_folder,"/import_results_sourcetime_summary.csv")) %>% as.data.frame() + + + + + +# ~ import_results_sourcetime_cum -------------------------------------------------------- +# Cumulate importations into source + + +# Get RR mean and CIs +import_results_sourcetime_cum <- import_data_long %>% group_by(source, t, sim) %>% + mutate(imports_cum = sum(imports_cum, na.rm = TRUE)) %>% ungroup() %>% group_by(source, t) %>% + summarize( + cum_import_mean=mean(imports_cum, na.rm=T), + cum_import_sd=sd(imports_cum, na.rm=T), + cum_import_ll=quantile(imports_cum, probs=.025, na.rm=T), + cum_import_ul=quantile(imports_cum, probs=.975, na.rm=T), + cum_import_median=median(imports_cum, na.rm=T), + cum_import_min=min(imports_cum, na.rm=T), + cum_import_max=max(imports_cum, na.rm=T), + cum_import_25pt=quantile(imports_cum, probs=.25, na.rm=T), + cum_import_75pt=quantile(imports_cum, probs=.75, na.rm=T), + ) + +# Get the probability of >0 imports +prob_any_import <- import_data_long %>% group_by(source, t, sim) %>% + summarise(imports_cum = sum(imports_cum)) %>% group_by(source, t) %>% + summarize(n_import = sum(imports_cum>0)) %>% mutate(prob_import=n_import/(n_sim)) + +# Add Probability +import_results_sourcetime_cum$cum_prob_any_import <- prob_any_import$prob_import +import_results_sourcetime_cum <- import_results_sourcetime_cum %>% dplyr::select(1,2,cum_prob_any_import, everything()) +rm(prob_any_import) + +write_csv(import_results_sourcetime_cum, file.path("results",project_name,sprintf("import_results_sourcetime_cumulative_detect_v%s.csv", version))) + + + + + + +# REMOVE EVERYTHING FROM THE CURRENT WORKSPACE +#rm(list = ls()); gc() + + diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/make-other-data.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/make-other-data.R new file mode 100644 index 000000000..499ba0c03 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/make-other-data.R @@ -0,0 +1,361 @@ + + +library(tidyverse) + + +## make underreporting data +source("https://raw.githubusercontent.com/salauer/CFR_calculation/master/global_estimates/scripts/main_script_clean.R") +underreporting <- reportDataFinal; rm(reportDataFinal) +#save(underreporting, file="data/underreporting.rda") +usethis::use_data(underreporting, overwrite = TRUE) + + + + + +# Travel Restrictions Data ------------------------------------------------ + + +# TSA travel reductions +# Source: https://www.tsa.gov/coronavirus/passenger-throughput +tsa <- readr::read_csv("data/tsa_throughput.csv") %>% + mutate(date = lubridate::as_date(as.Date(date, "%m/%d/%Y")), + p_travel = round(tsa_2020 / tsa_2019, 3)) %>% + arrange(date) +ggplot2::ggplot(tsa, aes(date, p_travel)) + geom_line() + + +# Scrape this table from web +#--- TO DO ------ + + + + + + + +hubei_shutdown <- lubridate::as_date(c("2020-01-24", "2020-09-01")) +data("pop_data", package = "covidImportation") +# this requires the pop_data to have all of the correct source locations + +## make travel_restrictions data +travel_restrictions <- + + # Reduce travel from all Chinese sources to 10% + tibble(loc=unique((pop_data %>% filter(country=="CHN"))$source), + min=hubei_shutdown[1], + max=hubei_shutdown[2], + p_travel=.1) %>% filter(loc!="Hubei") %>% + + # Reduce travel from Hubei to 0 + bind_rows(tibble(loc="Hubei", + min=hubei_shutdown[1], + max=hubei_shutdown[2], + p_travel=0)) %>% + + # Reduce travel from all US sources based on TSA numbers + bind_rows( expand_grid(loc=unique((pop_data %>% filter(country=="USA"))$source), + min=tsa$date) %>% + left_join( + tibble(min=tsa$date, + max=tsa$date, + p_travel=tsa$p_travel), by="min")) %>% + + # Reduce travel from all US sources to 10% + bind_rows(tibble(loc=unique((pop_data %>% filter(country=="USA"))$source), + min=lubridate::as_date(max(tsa$date)+1), + max=lubridate::as_date("2020-09-01"), + p_travel=tsa$p_travel[nrow(tsa)])) %>% + + # # Reduce travel from all US sources to 60% + # bind_rows(data.frame(loc=unique((pop_data %>% filter(country=="USA"))$source), + # min="2020-03-02", + # max="2020-03-08", + # p_travel=.6)) %>% + # + # # Reduce travel from all US sources to 30% + # bind_rows(data.frame(loc=unique((pop_data %>% filter(country=="USA"))$source), + # min="2020-03-09", + # max="2020-03-16", + # p_travel=.3)) %>% + # + # # Reduce travel from all US sources to 10% + # bind_rows(data.frame(loc=unique((pop_data %>% filter(country=="USA"))$source), + # min="2020-03-17", + # max="2020-06-16", + # p_travel=.1)) %>% + + # Reduce travel from non-China to US to 30% + bind_rows(data.frame(loc=unique((pop_data %>% filter(country!="CHN" & country!="USA"))$source), + min=lubridate::as_date("2020-03-02"), + max=lubridate::as_date("2020-03-08"), + p_travel=.3)) %>% + + # Reduce travel from all other sources to 10% + bind_rows(data.frame(loc=unique((pop_data %>% filter(country!="CHN" & country!="USA"))$source), + min=lubridate::as_date("2020-03-09"), + max=lubridate::as_date("2020-03-16"), + p_travel=.1)) %>% + + # Reduce travel from all US sources to 4% (matching overall us travel) + bind_rows(data.frame(loc=unique((pop_data %>% filter(country!="CHN" & country!="USA"))$source), + min=lubridate::as_date("2020-03-17"), + max=lubridate::as_date("2020-09-01"), + p_travel=.04)) + +usethis::use_data(travel_restrictions, overwrite = TRUE) + + + + +# Airport Attributions - China ------------------------------------------ + +## make airport_attributions data +airport_attribution <- read_csv("data-raw/airport_attribution.csv") %>% + mutate(Province = gsub(" Province", "", Province)) %>% + mutate(Province = gsub(" province", "", Province)) %>% + mutate(Province = gsub(" Special Administrative Region", "", Province)) %>% + mutate(Province = gsub(" Autonomous Region", "", Province)) %>% + mutate(Province = gsub(" Municipality", "", Province)) %>% + mutate(Province = ifelse(grepl("Xinjiang", Province), "Xinjiang", Province)) %>% + mutate(Province = ifelse(grepl("Guangxi", Province), "Guangxi", Province)) %>% + mutate(Province = ifelse(grepl("Ningxia", Province), "Ningxia", Province)) %>% + mutate(Province = ifelse(grepl("Inner Mongolia", Province), "Nei Mongol", Province)) %>% + mutate(Province = ifelse(grepl("Macao", Province), "Macau", Province)) %>% + # Attribute travel according to normalizaed attribution score, + # weighted by population + left_join(read_csv("data-raw/pop_data.csv") %>% dplyr::select(source, pop), + by=c("Province"="source")) %>% + group_by(airport_iata) %>% + mutate(attribution = attribution*pop / sum(attribution*pop)) %>% + ungroup() +#save(airport_attribution, file="data/airport_attribution.rda") +usethis::use_data(airport_attribution, overwrite = TRUE) + + + + +# JHUCSSE Case Data ------------------------------------------------------ + +## Generate combined JHU CSSE data for packages (so users dont have to create the full data) +update_jhucsse_package_data <- function(){ + + # # pull the data from github + # pull_JHUCSSE_github_data(case_data_dir = "data/case_data", repull_all=TRUE) + # # read and merge data + # jhucsse_case_data <- read_JHUCSSE_cases(last_date=Sys.Date(), + # append_wiki=TRUE, + # case_data_dir = "data/case_data", + # print_file_path=FALSE) + # New method + jhucsse_case_data <- update_JHUCSSE_github_data(case_data_dir = "data/case_data", + last_date=Sys.time(), + check_saved_data=FALSE, + save_data=TRUE) + + #save(jhucsse_case_data, file="data/jhucsse_case_data.rda") + usethis::use_data(jhucsse_case_data, overwrite = TRUE) +} +update_jhucsse_package_data() + + + + +# Wikipedia Case Data ----------------------------------------------------- + +wikipedia_cases <- readr::read_csv("data-raw/WikipediaWuhanPre1-20-2020.csv", + col_types=readr::cols(Update = readr::col_datetime("%m/%d/%Y"))) +usethis::use_data(wikipedia_cases, overwrite = TRUE) + + + + + +# OAG Travel Data --------------------------------------------------------- + +##' Get OAG travel data +##' +##' Get subsetted and cleaned OAG data for a specific destination +##' +##' @param destination destination of interest; can be a vector. +##' @param destination_type options: "airport", "city", "state", "country" +##' @param dest_0 default=NULL; change to specify higher level destination (i.e. dest_0="USA") +##' @param dest_0_type default=NULL; must specify if specifying a `dest_0` option. +##' @param dest_aggr_level level to which travel will be aggregated for destination. Includes "airport", "city", "state", "country", "metro" (only available for CA currently) + +make_aggr_oag_travel <- function(){ + # Read full data + # these data are clean in `oag_data_cleaning.R` + data_travel_all <- read_csv(file.path("data_other", "complete_OAG_data.csv"), na=c(""," ", "NA"), + col_types = list( + `Dep Airport Code` = col_character(), + `Dep City Name` = col_character(), + `Dep State Code` = col_character(), + `Dep Country Code` = col_character(), + `Arr Airport Code` = col_character(), + `Arr City Name` = col_character(), + `Arr State Code` = col_character(), + `Arr Country Code` = col_character(), + `Total Est. Pax` = col_double(), + `Time Series` = col_double())) + + + # Re-assign city, state, country from airport codes (cuz OAG sucks and these data have tons of errors) + data(airport_data) + airport_data <- airport_data %>% + filter(type!="closed") %>% + mutate(iso_country = ifelse(iso_country=="XK", "KOS", + countrycode::countrycode(iso_country, + origin = "iso2c", + destination = "iso3c"))) %>% + mutate(state = substr(iso_region, 4,6)) %>% + dplyr::select(-c(type, name, continent, gps_code, local_code, coordinates, elevation_ft, ident, iso_region)) %>% + filter(!is.na(iata_code)) + airport_data <- airport_data %>% distinct() %>% + filter(!duplicated(iata_code)) + + + ## Fix arrival codes + data_travel_all <- left_join(data_travel_all, + airport_data, by = c("Arr Airport Code"="iata_code")) + data_travel_all <- data_travel_all %>% + mutate(`Arr City Name` = ifelse(!is.na(municipality), municipality, `Arr City Name`), + `Arr State Code` = ifelse(!is.na(state), state, `Arr State Code`), + `Arr Country Code`= ifelse(!is.na(iso_country), iso_country, `Arr Country Code`)) %>% + dplyr::select(-c(municipality, state, iso_country)) + + ## Fix Departure codes + data_travel_all <- left_join(data_travel_all, + airport_data, by = c("Dep Airport Code"="iata_code")) + data_travel_all <- data_travel_all %>% + mutate(`Dep City Name` = ifelse(!is.na(municipality), municipality, `Dep City Name`), + `Dep State Code` = ifelse(!is.na(state), state, `Dep State Code`), + `Dep Country Code`= ifelse(!is.na(iso_country), iso_country, `Dep Country Code`)) %>% + dplyr::select(-c(municipality, state, iso_country)) + + + + # data_dups <- data_travel_all %>% group_by(`Arr Airport Code`) %>% + # summarise(unique_cities = length(unique(`Arr City Name`))) + # data_dups <- data_travel_all %>% group_by(`Dep Airport Code`) %>% + # summarise(unique_cities = length(unique(`Dep City Name`))) + # View(data_travel_all %>% filter(`Arr Airport Code`== "AUS")) + + + data('pop_data', package = 'covidImportation') + + # Give Chinese airports the provinces + data(airport_attribution) + + # merge with travel data + dest_data <- left_join(data_travel_all, + airport_attribution, + by=c("Dep Airport Code"="airport_iata")) + rm(data_travel_all) + gc() + # Adjust travel volume based on attribution + dest_data <- dest_data %>% + replace_na(list(attribution=1)) %>% + mutate(`Total Est. Pax` = `Total Est. Pax` * attribution) %>% + dplyr::select(-attribution, pop) + + + # # Get us State codes for departures + # airport_data_us <- airport_data %>% + # dplyr::filter(iso_country=="USA") + # + dest_data <- dest_data %>% + rename(dep_airport = `Dep Airport Code`, + dep_state = `Dep State Code`, + dep_country = `Dep Country Code`, + dep_city = `Dep City Name`, + arr_airport = `Arr Airport Code`, + arr_city = `Arr City Name`, + arr_state = `Arr State Code`, + arr_country = `Arr Country Code`, + travelers = `Total Est. Pax`, + yr_month = `Time Series`, + dep_province = Province) + + + # make aggregate source variable, and get mean across 3 years + dest_data <- dest_data %>% + mutate(dep_loc_aggr = ifelse(dep_country=="CHN", dep_province, ifelse(dep_country=="USA", dep_state, dep_country)), + t_year = substr(yr_month, 1,4), + t_month = as.character(substr(yr_month, 5,6))) # Get year and month variables + + + # aggregation levels for destination + aggr_levels <- factor(c("airport", "city", "metro", "state", "country"), levels=c("airport", "city", "metro", "state", "country"), ordered = TRUE) + loc_vars_aggr <- c("arr_airport", "arr_city","arr_metro", "arr_state", "arr_country")[aggr_levels>="airport"] + loc_vars_aggr <- loc_vars_aggr[loc_vars_aggr %in% colnames(dest_data)] + other_vars_aggr <- c("yr_month", "t_year", "t_month", "dep_loc_aggr", "dep_country") + + dest_data_aggr <- dest_data %>% group_by(.dots = c(other_vars_aggr, loc_vars_aggr)) %>% + summarise(travelers = sum(travelers, na.rm = TRUE)) + rm(dest_data) + gc() + + # Get Monthly means across the 3 year (using geometric means) + other_vars_aggr <- c("t_month", "dep_loc_aggr", "dep_country") + dest_data_aggr <- dest_data_aggr %>% + group_by(.dots = c(other_vars_aggr, loc_vars_aggr)) %>% + summarise(travelers_sd = sd(travelers, na.rm = TRUE), + travelers_mean = exp(mean(log(travelers+1), na.rm = TRUE))-1) + + dest_data_aggr <- dest_data_aggr %>% mutate(travelers_sd = ifelse(is.nan(travelers_sd), travelers_mean/1.96, travelers_sd)) # for those with only 1 value for travel, just use that /2 for the SD + + # Save it + write_csv(dest_data_aggr, paste0("data_other/", "complete_oag_aggr.csv")) + + return(dest_data_aggr) +} + + + + + +# ~ Make USA Data --------------------------------------------------------- + +dest_data_aggr_orig <- make_aggr_oag_travel() +dest_data_aggr <- dest_data_aggr_orig %>% + as.data.frame() %>% + # Increase travel for Chinese New Year + mutate(travelers=ifelse(t_month == "01" & dep_country=="CHN", travelers_mean*1.6, travelers_mean)) %>% + select(-arr_city) %>% + mutate(travelers_sd=round(travelers_sd, 1), travelers_mean=round(travelers_mean, 1)) + +format(object.size(dest_data_aggr), "Mb") +write_csv(dest_data_aggr, paste0("data_other/", "complete_oag_aggr_lite.csv")) +save(dest_data_aggr, file=paste0("data_other/", "complete_oag_aggr_lite.rda")) + + +usa_oag_aggr_travel <- dest_data_aggr %>% filter(arr_country=="USA") +format(object.size(usa_oag_aggr_travel), "Mb") +usethis::use_data(usa_oag_aggr_travel, overwrite = TRUE) +#write_csv(dest_data_aggr_usa, paste0("data_other/", "usa_oag_aggr_lite.csv")) +#save(dest_data_aggr_usa, file=paste0("data_other/", "usa_oag_aggr_lite.rda")) + + + +# ~ Make Territory Data --------------------------------------------------------- + +dest_data_aggr <- readr::read_csv(paste0("data_other/", "complete_oag_aggr_lite.csv")) + +us_terr_oag_aggr_travel <- dest_data_aggr %>% filter(arr_country %in% c("GUM","VIR","PRI","ASM","MNP")) +format(object.size(us_terr_oag_aggr_travel), "Mb") +#usethis::use_data(us_terr_oag_aggr_travel, overwrite = TRUE) +write_csv(us_terr_oag_aggr_travel, paste0("data_other/", "us_terr_oag_aggr_travel.csv")) +#save(dest_data_aggr_usa, file=paste0("data_other/", "usa_oag_aggr_lite.rda")) + + + + + +# USA Counties ------------------------------------------------------------ + +us_counties <- readr::read_csv("data-raw/us_counties.csv") +us_counties <- us_counties %>% rowwise() %>% + mutate(FIPS = as.character(FIPS)) %>% + mutate(FIPS = ifelse(stringr::str_length(FIPS)==4, paste0(0, FIPS), FIPS)) +usethis::use_data(us_counties, overwrite = TRUE) diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/oag_data_cleaning.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/oag_data_cleaning.R new file mode 100644 index 000000000..3dd1ef1fe --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/oag_data_cleaning.R @@ -0,0 +1,385 @@ +##' Merge CDC-provided OAG data +##' +##' Shaun Truelove (shauntruelove@jhu.edu) +##' 27 February 2020 +##' + + + + +# OPTIONS ----------------------------------------------------------------- + +# whether to save region data individually +save_regions <- FALSE + +# whether to save full data as one file +save_full <- TRUE + + + + +# SETUP ------------------------------------------------------------------- + +if(!require('tidyverse')) install.packages('tidyverse'); library(tidyverse) +if(!require('countrycode')) install.packages('countrycode'); library(countrycode) + + + +# this is set up to use data in "data/OAG_travel_data" +data_dir <- file.path("data", "OAG_travel_data") +data_files <- list.files(data_dir, pattern = ".zip") + +# get region info +region_info <- read_csv(file.path(data_dir, "OAG Region Codes.csv"), na="") +region_info$iso3 <- countrycode::countrycode(region_info$`Country Code`, origin = "iso2c", destination = "iso3c") +region_info$iso3[region_info$`Country Code`=="AN"] <- "ANT" +region_info <- region_info %>% filter(!is.na(iso3)) +regions_ <- unique(region_info$`Region Code`) +n_region <- length(regions_) + + + + +# READ AND EXTRACT ZIPS --------------------------------------------------- +# we will combine them by region first and see how big those are + + +# Loop through the regions +for (i in 1:n_region){ + + # Get files specific to this region + files_region_ <- data_files[grep(regions_[i], data_files)] + + # if no files, skip + if (length(files_region_)==0) next + + # Loop through files for this region, read them, and merge them + # data_merged_ <- NULL + data_merged_ <- list() + for (f in seq_along(files_region_)){ + data_ <- readr::read_csv(file.path(data_dir, files_region_[f]), na="") + # data_merged_ <- bind_rows(data_merged_, data_) + data_merged_[[f]] <- data_ + } + data_merged_ <- rbindlist(data_merged_) + + # change iso2 to iso3 (the "NA" for Namibia keeps getting translated as not available) + data_merged_$`Dep Country Code` <- countrycode::countrycode(data_merged_$`Dep Country Code`, origin = "iso2c", destination = "iso3c") + data_merged_$`Arr Country Code` <- countrycode::countrycode(data_merged_$`Arr Country Code`, origin = "iso2c", destination = "iso3c") + + + # Save regional data if desired + if (save_regions){ + write_csv(data_merged_, file.path("data", paste0(regions_, "_OAG_data.csv"))) + } + + + # Assign region name to object + assign(paste0("data_",regions_[i]), data_merged_) + # Remove temp data + rm(data_merged_, data_) + + #Check size of the data object + print(paste0("data_",regions_[i], " is ", format(object.size(get(paste0("data_",regions_[i]))), "Mb"))) +} + + + +# They are not too big (biggest is 500Mb), so let's just merge them to save + +data_travel_all <- list() +for (i in 1:n_region){ + if (!exists(paste0("data_",regions_[i]))) next + data_travel_all[[i]] <- get(paste0("data_",regions_[i])) + #data_travel_all <- bind_rows(data_travel_all, get(paste0("data_",regions_[i]))) +} +data_travel_all <- rbindlist(data_travel_all) + +print(paste0("Full data is ", format(object.size(data_travel_all), "Mb"))) + + + + +# Save full data if desired +if (save_full){ + write_csv(data_travel_all, file.path("data", "complete_OAG_data.csv")) +} + + + + + + + + +# GET SUMMARY OF LOCATIONS ------------------------------------------------ + +dest_options <- data_travel_all %>% group_by(`Arr Airport Code`, `Arr City Name`, `Arr State Code`, `Arr Country Code`) %>% + summarise(n_occur = n()) + +write_csv(dest_options, "data/oag_destination_combos.csv") + + +get_dest_options <- function(){ + return(readr::read_csv("data/oag_destination_combos.csv")) +} + + + +# + + + + + + + + + + + + + + +# GET A SENSE OF THE DATA ------------------------------------------------- + +us_airports <- unique((data_travel_all %>% filter(`Dep Country Code`=="USA" & `Arr Country Code`=="USA"))$`Arr Airport Code`) + + + + + + + + + +# +# +# +# data_travel_all <- read_csv(file.path("data", "complete_OAG_data.csv"), na=c(""," ", "NA"), +# col_types = list( +# `Dep Airport Code` = col_character(), +# `Dep City Name` = col_character(), +# `Dep State Code` = col_character(), +# `Dep Country Code` = col_character(), +# `Arr Airport Code` = col_character(), +# `Arr City Name` = col_character(), +# `Arr State Code` = col_character(), +# `Arr Country Code` = col_character(), +# `Total Est. Pax` = col_double(), +# `Time Series` = col_double())) +# +# cali_data <- data_travel_all %>% filter(`Arr State Code`=="CA") +# write_csv(cali_data, "data/cali_oag_20172019.csv") +# +# +# +# # SAVE INBOUND TO CALIFORNIA ---------------------------------------------- +# +# cali_data <- read_csv("data/cali_oag_20172019.csv", na=c(""," ","NA"), +# col_types = list( +# `Dep Airport Code` = col_character(), +# `Dep City Name` = col_character(), +# `Dep State Code` = col_character(), +# `Dep Country Code` = col_character(), +# `Arr Airport Code` = col_character(), +# `Arr City Name` = col_character(), +# `Arr State Code` = col_character(), +# `Arr Country Code` = col_character(), +# `Total Est. Pax` = col_double(), +# `Time Series` = col_double())) +# +# +# # Give Chinese airports the provinces +# airport_attribution <- read_csv(file ='data/airport_attribution.csv') +# +# cali_data <- left_join(cali_data, +# airport_attribution %>% mutate(Province = gsub(" Province", "", Province)) %>% +# select(-attribution), +# by=c("Dep Airport Code"="airport_iata")) +# +# +# # Get us State codes for departures +# airport_data <- read_csv("data/airport-codes.csv") +# airport_data <- airport_data %>% mutate(iso_country = ifelse(iso_country=="XK", "KOS", +# countrycode::countrycode(iso_country, origin = "iso2c", destination = "iso3c"))) +# +# airport_data_us <- airport_data %>% filter(iso_country=="USA") +# +# cali_data <- left_join(cali_data, +# airport_data_us %>% mutate(state = substr(iso_region, 4,5)) %>% +# select(state, iata_code), +# by=c("Dep Airport Code"="iata_code")) +# cali_data <- cali_data %>% mutate(`Dep State Code`=ifelse(is.na(`Dep State Code`) & !is.na(state), state, `Dep State Code`)) +# +# +# +# # Aggregate to province (China) or state (US) or country (all others) for source +# cali_data <- cali_data %>% rename(dep_airport = `Dep Airport Code`, +# dep_state = `Dep State Code`, +# dep_country = `Dep Country Code`, +# dep_city = `Dep City Name`, +# arr_airport = `Arr Airport Code`, +# arr_city = `Arr City Name`, +# arr_state = `Arr State Code`, +# arr_country = `Arr Country Code`, +# arr_city = `Arr City Name`, +# travelers = `Total Est. Pax`, +# yr_month = `Time Series`, +# dep_province = Province) +# # Get aggr location +# cali_data_aggr <- cali_data %>% +# mutate(dep_loc_aggr = ifelse(dep_country=="CHN", dep_province, ifelse(dep_country=="USA", dep_state, dep_country))) +# cali_data_aggr <- cali_data_aggr %>% group_by(dep_loc_aggr, dep_country, arr_city, arr_state, arr_country, yr_month) %>% +# summarise(travelers = sum(travelers, na.rm=TRUE)) +# +# # Get Monthly means across the 3 year (will do geometric means) +# cali_data_aggr <- cali_data_aggr %>% +# mutate(t_year = substr(yr_month, 1,4), t_month = as.character(substr(yr_month, 5,6))) +# cali_data_aggr <- cali_data_aggr %>% +# group_by(dep_loc_aggr, dep_country, arr_city, arr_state, arr_country, t_month) %>% +# summarise(travelers_sd = sd(travelers), +# travelers_mean = exp(mean(log(travelers+1)))-1) +# +# cali_data_aggr <- cali_data_aggr %>% mutate(travelers_sd = ifelse(is.nan(travelers_sd), travelers_mean/1.96, travelers_sd)) # for those with only 1 value for travel, just use that /2 for the SD +# +# +# +# # Save it +# write_csv(cali_data_aggr, "data/cali_oag_20172019_aggr.csv") +# +# +# +# +# +# +# +# # SHENZHEN INBOUND -------------------------------------------------------- +# +# +# data_travel_all <- read_csv(file.path("data", "complete_OAG_data.csv"), na=c(""," ", "NA"), +# col_types = list( +# `Dep Airport Code` = col_character(), +# `Dep City Name` = col_character(), +# `Dep State Code` = col_character(), +# `Dep Country Code` = col_character(), +# `Arr Airport Code` = col_character(), +# `Arr City Name` = col_character(), +# `Arr State Code` = col_character(), +# `Arr Country Code` = col_character(), +# `Total Est. Pax` = col_double(), +# `Time Series` = col_double())) +# +# +# # check all locations +# # china_data <- data_travel_all %>% filter(`Arr Country Code`=="CHN") +# # Guangzhou +# +# +# shenzhen_data <- data_travel_all %>% filter(`Arr Airport Code`=="SZX") +# write_csv(shenzhen_data, "data/shenzhen_oag_20172019.csv") +# +# +# +# # SAVE INBOUND TO shenzhenFORNIA ---------------------------------------------- +# +# shenzhen_data <- read_csv("data/shenzhen_oag_20172019.csv", na=c(""," ","NA"), +# col_types = list( +# `Dep Airport Code` = col_character(), +# `Dep City Name` = col_character(), +# `Dep State Code` = col_character(), +# `Dep Country Code` = col_character(), +# `Arr Airport Code` = col_character(), +# `Arr City Name` = col_character(), +# `Arr State Code` = col_character(), +# `Arr Country Code` = col_character(), +# `Total Est. Pax` = col_double(), +# `Time Series` = col_double())) +# +# +# # Give Chinese airports the provinces +# airport_attribution <- read_csv(file ='data/airport_attribution.csv') +# +# shenzhen_data <- left_join(shenzhen_data, +# airport_attribution %>% mutate(Province = gsub(" Province", "", Province)) %>% +# select(-attribution), +# by=c("Dep Airport Code"="airport_iata")) +# +# +# # Get us State codes for departures +# airport_data <- read_csv("data/airport-codes.csv") +# airport_data <- airport_data %>% mutate(iso_country = ifelse(iso_country=="XK", "KOS", +# countrycode::countrycode(iso_country, origin = "iso2c", destination = "iso3c"))) +# +# airport_data_us <- airport_data %>% filter(iso_country=="USA") +# +# shenzhen_data <- left_join(shenzhen_data, +# airport_data_us %>% mutate(state = substr(iso_region, 4,5)) %>% +# select(state, iata_code), +# by=c("Dep Airport Code"="iata_code")) +# shenzhen_data <- shenzhen_data %>% mutate(`Dep State Code`=ifelse(is.na(`Dep State Code`) & !is.na(state), state, `Dep State Code`)) +# +# +# +# # Aggregate SOURCE/Departure Location to province (China) or state (US) or country (all others) for source +# shenzhen_data <- shenzhen_data %>% rename(dep_airport = `Dep Airport Code`, +# dep_state = `Dep State Code`, +# dep_country = `Dep Country Code`, +# dep_city = `Dep City Name`, +# arr_airport = `Arr Airport Code`, +# arr_city = `Arr City Name`, +# arr_state = `Arr State Code`, +# arr_country = `Arr Country Code`, +# arr_city = `Arr City Name`, +# travelers = `Total Est. Pax`, +# yr_month = `Time Series`, +# dep_province = Province) +# +# # Get Aggr Departure location +# shenzhen_data_aggr <- shenzhen_data %>% +# mutate(dep_loc_aggr = ifelse(dep_country=="CHN", dep_province, ifelse(dep_country=="USA", dep_state, dep_country))) +# shenzhen_data_aggr <- shenzhen_data_aggr %>% group_by(dep_loc_aggr, dep_country, arr_city, arr_state, arr_country, yr_month) %>% +# summarise(travelers = sum(travelers, na.rm=TRUE)) +# +# +# +# # Get Monthly means across the 3 year (will do geometric means) +# shenzhen_data_aggr <- shenzhen_data_aggr %>% +# mutate(t_year = substr(yr_month, 1,4), t_month = as.character(substr(yr_month, 5,6))) +# shenzhen_data_aggr <- shenzhen_data_aggr %>% +# group_by(dep_loc_aggr, dep_country, arr_city, arr_state, arr_country, t_month) %>% +# summarise(travelers_sd = sd(travelers), +# travelers_mean = exp(mean(log(travelers+1)))-1) +# +# shenzhen_data_aggr <- shenzhen_data_aggr %>% mutate(travelers_sd = ifelse(is.nan(travelers_sd), travelers_mean/1.96, travelers_sd)) # for those with only 1 value for travel, just use that /2 for the SD +# +# +# +# # Save it +# write_csv(shenzhen_data_aggr, "data/shenzhen_oag_20172019_aggr.csv") +# +# +# +# +# + + + + + +# CHECKS ------------------------------------------------------------------ + +# View(cali_data_aggr %>% filter(is.na(dep_loc_aggr))) +# View(cali_data %>% filter(is.na(dep_state) & dep_country=="USA")) +# tmp <- cali_data_aggr %>% filter(is.na(dep_loc_aggr)) +# +# +# View(cali_data %>% filter(is.na(Province) & dep_country=="CHN")) +# View(cali_data %>% filter(is.na(Province) & dep_country=="CHN")) +# + + + + + + diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/plot_importation_estimates.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/plot_importation_estimates.R new file mode 100644 index 000000000..4635fe802 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/plot_importation_estimates.R @@ -0,0 +1,568 @@ +##' Plot the estimated and reported number of importations over time +##' +##' Author: Shaun Truelove +##' email: shauntruelove@jhu.edu +##' Updated: 31 Jan 2020 + + +# SETUP ------------------------------------------------------------------- + +if (!exists("version") | is.list(version)){ version <- "1" } +if (!exists("batch") | is.list(batch)){ batch <- "1" } +if (!exists("project_name")){ project_name <- "california_import" } + +options(scipen=999) + +if(!require('tidyverse')) install.packages('tidyverse'); library(tidyverse) +if(!require('RColorBrewer')) install.packages('RColorBrewer'); library(RColorBrewer) +if(!require('grid')) install.packages('grid'); library(grid) +if(!require('gridExtra')) install.packages('gridExtra'); library(gridExtra) + + +# LOAD SUMMARIZED SIMULATION RESULTS --------------------------------------------------------------- + +# Destination by time +import_results_desttime <- readr::read_csv(file.path("results",project_name, sprintf("import_results_desttime_v%s.csv", version))) +import_results_desttime$t <- lubridate::as_date(import_results_desttime$t) +t_values <- sort(unique(import_results_desttime$t)) +import_results_desttime <- import_results_desttime %>% + mutate(t = factor(as.character(t))) %>% + mutate(t_num = as.integer(t)) + +# Source by time, single destination +import_results_sourcetime <- readr::read_csv(file.path("results",project_name, sprintf("import_results_sourcetime_v%s.csv", version))) +import_results_sourcetime$t <- lubridate::as_date(import_results_sourcetime$t) +t_values <- sort(unique(import_results_sourcetime$t)) +import_results_sourcetime <- import_results_sourcetime %>% + mutate(t = factor(as.character(t))) %>% + mutate(t_num = as.integer(t)) + +# Destination by time, Cumulative +import_results_desttime_cum <- readr::read_csv(file.path("results",project_name, sprintf("import_results_desttime_cumulative_v%s.csv", version))) +import_results_desttime_cum$t <- lubridate::as_date(import_results_desttime_cum$t) +t_values <- sort(unique(import_results_desttime_cum$t)) +import_results_desttime_cum <- import_results_desttime_cum %>% + mutate(t = factor(as.character(t))) %>% + mutate(t_num = as.integer(t)) + + +# Overall Destination by time +import_results_desttime_overall <- readr::read_csv(file.path("results",project_name, sprintf("import_results_desttime_overall_v%s.csv", version))) +import_results_desttime_overall$t <- lubridate::as_date(import_results_desttime_overall$t) +t_values <- sort(unique(import_results_desttime_overall$t)) +import_results_desttime_overall <- import_results_desttime_overall %>% + mutate(t = factor(as.character(t))) %>% + mutate(t_num = as.integer(t)) + +# Overall Destination by time, Cumulative +import_results_desttime_overall_cum <- readr::read_csv(file.path("results",project_name, sprintf("import_results_desttime_overall_cumulative_v%s.csv", version))) +import_results_desttime_overall_cum$t <- lubridate::as_date(import_results_desttime_overall_cum$t) +t_values <- sort(unique(import_results_desttime_overall_cum$t)) +import_results_desttime_overall_cum <- import_results_desttime_overall_cum %>% + mutate(t = factor(as.character(t))) %>% + mutate(t_num = as.integer(t)) + + + +# t_limits <- lubridate::as_date(c("2020-01-01","2020-01-27")) +if (!exists("t_limits")){ t_limits <- range(t_values) } + + + + + +# FUNCTIONS --------------------------------------------------------------- + +plot_imports <- function(data=import_results_desttime, region_ = "All", t_limits=lubridate::as_date(c("2020-01-01","2020-01-27")), + y.size = 9, x.size = 9, + leg.text.size = 12, leg.title.size = 14, + rep_col = "indianred2", est_col = "blue3", est_ribbon_col = "blue3", est_ribbon_alpha=0.25, + time_int = 5, # time interval for x-axis + plot_legend=TRUE, x_axis=TRUE){ + # Subset by region if wanted + if (region_!="All"){ + data <- data %>% filter(region==region_) + } + # Limit the time of the plots + if (!is.na(t_limits[1])){ + data <- data %>% mutate(t = lubridate::as_date(t)) %>% + filter(t >= lubridate::as_date(t_limits[1]) & lubridate::as_date(t) <= lubridate::as_date(t_limits[2])) %>% + mutate(t_num = as.integer(as.factor(t))) + } + t_values <- as.character(sort(data$t)) + + p <- ggplot(data=data, aes(x=t_num, y=import_mean)) + + #geom_hline(yintercept=0)+ + geom_line(aes(color='Estimated', linetype="Estimated"), size=1.2) + + geom_ribbon(aes(ymin=import_ll, ymax=import_ul), alpha=est_ribbon_alpha, fill=est_ribbon_col) + + scale_x_continuous(breaks=seq(1,length(t_values),time_int), + labels=t_values[seq(1,length(t_values),time_int)]) + + ylab("Imported nCoV cases (n)") + + #scale_colour_manual(values=c(Reported=rep_col, Estimated=est_col), guide="none") + + #scale_linetype_manual(values=c("solid","11"), guide=guide_legend(title=element_blank())) + + scale_colour_manual(values=c(Estimated=est_col), guide="none") + + scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + + theme(axis.line = element_line(colour = "black"), + panel.grid.major = element_blank(), panel.grid.minor = element_blank(), + panel.border = element_blank(), panel.background=element_blank(), + axis.text.y = element_text(size=y.size), + axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), + axis.title.x = element_blank(), + legend.title=element_text(size=leg.title.size), + legend.text=element_text(size=leg.text.size), # legend text size + legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), + legend.key.size=unit(15, "pt"), # Change key size in the legend + legend.key = element_blank(), + legend.position=c(.075, .80), legend.background = element_blank(), legend.box.background = element_blank(), + plot.title = element_text(size=leg.title.size, face="bold", vjust=-10, hjust = 0.025), + plot.margin = unit(c(-.75,.25,0,0.25), "cm")) + + if (region_ != "All"){ + p <- p + ggtitle(region_) + } + if (plot_legend==FALSE){ + p <- p + theme(legend.position = "none") + } + if (x_axis==FALSE){ + p <- p + theme(axis.text.x=element_blank(), #axis.line.x=element_blank(), + axis.ticks.x=element_blank(), axis.title.x=element_blank()) + } + return(p) +} + + +plot_imports_barchart <- function(data=import_results_desttime, region_ = "All", t_limits=lubridate::as_date(c("2020-01-01","2020-01-27")), + y.size = 9, x.size = 9, + leg.text.size = 12, leg.title.size = 14, + rep_col = "indianred2", est_col = "blue3", + time_int = 5, # time interval for x-axis + plot_legend=TRUE, x_axis=TRUE){ + # Subset by region if wanted + if (region_!="All"){ + data <- data %>% filter(region==region_) + } + # Limit the time of the plots + if (!is.na(t_limits[1])){ + data <- data %>% mutate(t = lubridate::as_date(t)) %>% + filter(t >= lubridate::as_date(t_limits[1]) & lubridate::as_date(t) <= lubridate::as_date(t_limits[2])) %>% + mutate(t_num = as.integer(as.factor(t))) + } + t_values <- as.character(sort(data$t)) + + p <- ggplot(data=data, aes(x=t_num, y=import_mean, fill='Estimated')) + + geom_bar(stat="identity", color="black") + + geom_errorbar(aes(ymin=import_ll, ymax=import_ul), width=.4) + + ylab("Imported nCoV cases (n)") + + scale_x_continuous(breaks=seq(1,length(t_values),time_int), + labels=t_values[seq(1,length(t_values),time_int)]) + + scale_colour_manual(values=c(Estimated=est_col), guide="none") + + scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + + #scale_y_continuous(expand = c(0,0)) + + theme(axis.line = element_line(colour = "black"), + panel.grid.major = element_blank(), panel.grid.minor = element_blank(), + panel.border = element_blank(), panel.background=element_blank(), + axis.text.y = element_text(size=y.size), + axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), + axis.title.x = element_blank(), + legend.title=element_text(size=leg.title.size), + legend.text=element_text(size=leg.text.size), # legend text size + legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), + legend.key.size=unit(15, "pt"), # Change key size in the legend + legend.key = element_blank(), + legend.position=c(.075, .80), legend.background = element_blank(), legend.box.background = element_blank(), + plot.title = element_text(size=leg.title.size, face="bold", vjust=-10, hjust = 0.025), + plot.margin = unit(c(-.75,.25,0.25,0.25), "cm")) + + guides(fill=guide_legend(title = element_blank())) + + if (region_ != "All"){ + p <- p + ggtitle(region_) + } + if (plot_legend==FALSE){ + p <- p + theme(legend.position = "none") + } + if (x_axis==FALSE){ + p <- p + theme(axis.text.x=element_blank(), #axis.line.x=element_blank(), + axis.ticks.x=element_blank(), axis.title.x=element_blank()) + } + return(p) +} + + +# Barchart plot of importations stacked by source +plot_imports_stackedsource <- function(data=import_results_sourcetime, t_limits=lubridate::as_date(c("2020-01-01","2020-01-27")), + y.size = 9, x.size = 9, + leg.text.size = 8, leg.title.size = 10, + est_col = "blue3", ncol_legend=1, + time_int = 5){ # time interval for x-axis + + # Limit the time of the plots + if (!is.na(t_limits[1])){ + data <- data %>% mutate(t = lubridate::as_date(t)) %>% + filter(t >= lubridate::as_date(t_limits[1]) & lubridate::as_date(t) <= lubridate::as_date(t_limits[2])) %>% + mutate(t_num = as.integer(as.factor(t))) + } + t_values <- as.character(unique(sort(data$t))) + + p <- ggplot(data=data, aes(x=t_num, y=import_mean, fill=source)) + + geom_bar(position="stack", stat="identity", color="black") + + ylab("Imported nCoV cases (n)") + + scale_x_continuous(breaks=seq(1,length(t_values),time_int), + labels=t_values[seq(1,length(t_values),time_int)]) + + scale_colour_manual(values=c(Estimated=est_col), guide="none") + + scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + + #scale_y_continuous(expand = c(0,0)) + + theme(axis.line = element_line(colour = "black"), + panel.grid.major = element_blank(), panel.grid.minor = element_blank(), + panel.border = element_blank(), panel.background=element_blank(), + axis.text.y = element_text(size=y.size), + axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), + axis.title.x = element_blank(), + legend.title=element_text(size=leg.title.size), + legend.text=element_text(size=leg.text.size), # legend text size + legend.margin=margin(0,0,0,0), legend.box.margin=margin(0,10,-20,-20), + legend.key.size=unit(8, "pt"), + legend.key = element_blank(), + legend.background = element_blank(), legend.box.background = element_blank(), + plot.title = element_text(size=leg.title.size, face="bold", hjust = 0.025), + plot.margin = unit(c(0.5,.25,0.25,0.25), "cm")) + + guides(fill=guide_legend(title = element_blank(), ncol=ncol_legend)) + return(p) +} + + + + + + + +# Barchart plot of importations stacked by source +plot_imports_facetsource <- function(data=import_results_sourcetime, t_limits=lubridate::as_date(c("2020-01-01","2020-01-27")), + y.size = 9, x.size = 9, + leg.text.size = 8, leg.title.size = 10, + rep_col = "indianred2", est_col = "blue3", ncol_legend=1, ncol_facet=1, + time_int = 5, scales="free_y"){ # time interval for x-axis + + # Limit the time of the plots + if (!is.na(t_limits[1])){ + data <- data %>% mutate(t = lubridate::as_date(t)) %>% + filter(t >= lubridate::as_date(t_limits[1]) & lubridate::as_date(t) <= lubridate::as_date(t_limits[2])) %>% + mutate(t_num = as.integer(as.factor(t))) + } + t_values <- as.character(unique(sort(data$t))) + + p <- ggplot(data=data, aes(x=t_num, y=import_mean, fill=source)) + + geom_bar(stat="identity", color="black") + + ylab("Imported nCoV cases (n)") + + scale_x_continuous(breaks=seq(1,length(t_values),time_int), + labels=t_values[seq(1,length(t_values),time_int)]) + + scale_colour_manual(values=c(Estimated=est_col), guide="none") + + scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + + #scale_y_continuous(expand = c(0,0)) + + theme(axis.line = element_line(colour = "black"), + panel.grid.major = element_blank(), panel.grid.minor = element_blank(), + panel.border = element_blank(), panel.background=element_blank(), + axis.text.y = element_text(size=y.size), + axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), + axis.title.x = element_blank(), + legend.title=element_text(size=leg.title.size), + legend.text=element_text(size=leg.text.size), # legend text size + legend.margin=margin(0,0,0,0), legend.box.margin=margin(0,10,-20,-20), + legend.key.size=unit(8, "pt"), + legend.key = element_blank(), + legend.background = element_blank(), legend.box.background = element_blank(), + plot.title = element_text(size=leg.title.size, face="bold", hjust = 0.025), + plot.margin = unit(c(0.5,.25,0.25,0.25), "cm")) + + guides(fill=guide_legend(title = element_blank(), ncol=ncol_legend)) + + facet_wrap(vars(source), ncol=ncol_facet, scales = scales) + return(p) +} + + + + + + + + + +# Barchart plot of importations stacked by source +plot_imports_stackeddest <- function(data=import_results_desttime, t_limits=lubridate::as_date(c("2020-01-01","2020-01-27")), + y.size = 9, x.size = 9, + leg.text.size = 8, leg.title.size = 10, + est_col = "blue3", + time_int = 5){ # time interval for x-axis + + # Limit the time of the plots + if (!is.na(t_limits[1])){ + data <- data %>% mutate(t = lubridate::as_date(t)) %>% + filter(t >= lubridate::as_date(t_limits[1]) & lubridate::as_date(t) <= lubridate::as_date(t_limits[2])) %>% + mutate(t_num = as.integer(as.factor(t))) + } + t_values <- as.character(unique(sort(data$t))) + + # N columns + n_dest <- length(unique(import_results_desttime$destination)) + n_columns <- ceiling(n_dest / 30) + + p <- ggplot(data=data, aes(x=t_num, y=import_mean, fill=destination)) + + geom_bar(position="stack", stat="identity", color="black", fill=est_col) + + ylab("Imported nCoV cases (n)") + + scale_x_continuous(breaks=seq(1,length(t_values),time_int), + labels=t_values[seq(1,length(t_values),time_int)]) + + # scale_fill_manual(values=c(import_mean=est_col), guide="none") + + scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + + #scale_y_continuous(expand = c(0,0)) + + theme(axis.line = element_line(colour = "black"), + panel.grid.major = element_blank(), panel.grid.minor = element_blank(), + panel.border = element_blank(), panel.background=element_blank(), + axis.text.y = element_text(size=y.size), + axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), + axis.title.x = element_blank(), + legend.title=element_text(size=leg.title.size), + legend.text=element_text(size=leg.text.size), # legend text size + legend.margin=margin(0,0,0,0), legend.box.margin=margin(0,10,-20,-20), + legend.key.size=unit(8, "pt"), + legend.key = element_blank(), + legend.background = element_blank(), legend.box.background = element_blank(), + plot.title = element_text(size=leg.title.size, face="bold", hjust = 0.025), + plot.margin = unit(c(0.5,.25,0.25,0.25), "cm")) + + guides(fill=guide_legend(title = element_blank(), ncol=n_columns)) + return(p) +} + + + + +# For plotting importions from multiple regions +plot_imports_byregion <- function(data=import_results_desttime_byregion, t_limits=lubridate::as_date(c("2020-01-01","2020-01-27")), + y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, + rep_col = "indianred2", est_col = "blue3", est_ribbon_col = "blue3", est_ribbon_alpha=0.25, + plot_legend=TRUE){ + + # Limit the time of the plots + if (!is.na(t_limits[1])){ + data <- data %>% mutate(t = lubridate::as_date(t)) %>% + filter(t >= lubridate::as_date(t_limits[1]) & lubridate::as_date(t) <= lubridate::as_date(t_limits[2])) %>% + mutate(t_num = as.integer(as.factor(t))) + } + t_values <- as.character(unique(sort(data$t))) + + p <- ggplot(data=data, aes(x=t_num, color=region, fill=region)) + + geom_line(data=data, aes(y=import_mean), size=1.2) + + geom_ribbon(data=data, aes(ymin=import_ll, ymax=import_ul, fill=region), alpha=est_ribbon_alpha) + + geom_line(data=data, aes(y=rep_import, color="Reported"), size=1.2) + + ylab("Imported nCoV cases (n)") + + #scale_colour_manual(name="Imported cases", values=c(Reported=rep_col, Estimated=est_col)) + + scale_color_manual(values=c("grey50", brewer.pal(3,"Dark2"), "red"), guide=guide_legend(title="Imported cases")) + + scale_x_continuous(breaks=seq(1,length(t_values),time_int), + labels=t_values[seq(1,length(t_values),time_int)]) + + theme(axis.line = element_line(colour = "black"), + panel.grid.major = element_blank(), panel.grid.minor = element_blank(), + panel.border = element_blank(), panel.background=element_blank(), + axis.text.y = element_text(size=y.size), axis.text.x = element_text(size=x.size, angle = 90, hjust = 1), + axis.title.x = element_blank(), + legend.title=element_text(size=leg.title.size), + legend.text=element_text(size=leg.text.size), # legend text size + legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), + legend.key.size=unit(15, "pt"), # Change key size in the legend + legend.key = element_blank(), + legend.position=c(.1, .90), legend.background = element_blank(), legend.box.background = element_blank(), + plot.margin = unit(c(.5,1,.25,.25), "cm")) + + p + facet_grid(region ~ .) + + + return(p) +} + + + + +plot_cum_imports <- function(data=import_results_desttime_cum, region_ = "All", t_limits=lubridate::as_date(c("2020-01-01","2020-01-27")), + y.size = 9, x.size = 9, + leg.text.size = 12, leg.title.size = 14, + rep_col = "indianred2", est_col = "blue3", est_ribbon_col = "blue3", est_ribbon_alpha=0.25, + time_int = 5, # time interval for x-axis + plot_legend=TRUE, x_axis=TRUE){ + + # Subset by region if wanted + if (region_!="All"){ + data <- data %>% filter(region==region_) + } + # Limit the time of the plots + if (!is.na(t_limits[1])){ + data <- data %>% mutate(t = lubridate::as_date(t)) %>% + filter(t >= lubridate::as_date(t_limits[1]) & lubridate::as_date(t) <= lubridate::as_date(t_limits[2])) %>% + mutate(t_num = as.integer(as.factor(t))) + } + t_values <- as.character(sort(data$t)) + + p <- ggplot(data=data, aes(x=t_num, y=cum_import_mean)) + + geom_line(aes(color='Estimated', linetype="Estimated", group=1), size=1.2) + + geom_ribbon(aes(ymin=cum_import_ll, ymax=cum_import_ul, group=1), alpha=est_ribbon_alpha, fill=est_ribbon_col) + + scale_x_continuous(breaks=seq(1,length(t_values),time_int), + labels=t_values[seq(1,length(t_values),time_int)]) + + ylab("Imported nCoV cases (n)") + + #scale_colour_manual(values=c(Reported=rep_col, Estimated=est_col), guide="none") + + #scale_linetype_manual(values=c("solid","11"), guide=guide_legend(title=element_blank())) + + scale_colour_manual(values=c(Estimated=est_col), guide="none") + + scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + + #scale_y_continuous(expand = c(0,0)) + + theme(axis.line = element_line(colour = "black"), + panel.grid.major = element_blank(), panel.grid.minor = element_blank(), + panel.border = element_blank(), panel.background=element_blank(), + axis.text.y = element_text(size=y.size), + axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), + axis.title.x = element_blank(), + legend.title=element_text(size=leg.title.size), + legend.text=element_text(size=leg.text.size), # legend text size + legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), + legend.key.size=unit(15, "pt"), # Change key size in the legend + legend.key = element_blank(), + legend.position=c(.075, .80), legend.background = element_blank(), legend.box.background = element_blank(), + plot.title = element_text(size=leg.title.size, face="bold", vjust=-10, hjust = 0.025), + plot.margin = unit(c(-.75,.25,0,0.25), "cm")) + + if (region_ != "All"){ + p <- p + ggtitle(region_) + } + if (plot_legend==FALSE){ + p <- p + theme(legend.position = "none") + } + if (x_axis==FALSE){ + p <- p + theme(axis.text.x=element_blank(), #axis.line.x=element_blank(), + axis.ticks.x=element_blank(), axis.title.x=element_blank()) + } + return(p) +} + + + + + + + + +# PLOT SPECIFICS + +# y.size = x.size = 9 +# leg.text.size = 12 +# leg.title.size = 14 +# +# rep_col <- "indianred2" +# est_col <- "blue3" +# est_ribbon_col <- "blue3" +# est_ribbon_alpha <- 0.2 + + +# PLOT TOTAL IMPORTATIONS ------------------------------------------------- +# +# p_total <- plot_imports(data=import_results_desttime_overall, region_ = "All", t_limits=t_limits, +# y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", +# est_col = "blue3", +# est_ribbon_col = "blue3", +# est_ribbon_alpha=0.25, +# plot_legend=TRUE) +# +# p_cum <- plot_cum_imports(data=import_results_desttime_overall_cum, region_ = "All", t_limits=t_limits, +# y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", +# est_col = "blue3", +# est_ribbon_col = "blue3", +# est_ribbon_alpha=0.25, +# plot_legend=TRUE) +# #plot(p_cum) +# +# #gridExtra::grid.arrange(p_total, p_cum, nrow=2) +# +# +# +# # p_total_barchart <- plot_imports_barchart(data=import_results_desttime, region_ = "All", t_limits=t_limits, +# # y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, +# # rep_col = "indianred2", +# # est_col = "blue3", +# # plot_legend=TRUE) +# # +# # gridExtra::grid.arrange(p_total, p_total_barchart, nrow=2) +# +# +# +# p_stackedsource_barchart <- plot_imports_stackedsource(data=import_results_sourcetime, t_limits=t_limits, +# y.size = 8, x.size = 8, leg.text.size = 6, leg.title.size = 8, +# rep_col = "indianred2", +# est_col = "blue3") +# #plot(p_stacked_barchart) +# +# +# p_stackeddest_barchart <- plot_imports_stackeddest(data=import_results_desttime, t_limits=t_limits, +# y.size = 8, x.size = 8, leg.text.size = 6, leg.title.size = 8, +# rep_col = "indianred2", +# est_col = "blue3") +# + + + + + + +# # PLOT ESTIMATED VS REPORTED ---------------------------------------------- +# +# # Reported from CDC +# shen_cases <- readr::read_csv("data/shenzhen_data/shenzhen_case_counts.csv") +# shen_cases <- shen_cases %>% mutate(cum_cases = cumsum(count)) +# +# # From Linelists +# ll_data <- readr::read_csv("data/linelist_current.csv") +# shen_rows <- apply(ll_data, 1, FUN=function(x) sum(grepl("shenzhen", x, ignore.case = TRUE)))>0 +# ll_data_shenzhen <- ll_data[shen_rows, ] +# shen_data_aggr <- ll_data_shenzhen %>% count(date_confirmation) +# rm(ll_data, ll_data_shenzhen, shen_rows) +# +# shen_counts <- full_join(shen_cases %>% rename(count_CDC = count), +# shen_data_aggr %>% rename(count_ll = n, date=date_confirmation), +# by=c("date"="date")) +# shen_counts[is.na(shen_counts)] <- 0 +# +# # Merge with estimates +# shen_counts_all <- full_join(shen_counts, +# import_results_desttime %>% select(date=t, import_mean, import_ll, import_ul) %>% +# mutate(date = lubridate::as_date(date)), by=c("date")) +# shen_counts_all <- full_join(shen_counts_all, +# import_results_desttime_cum %>% select(date=t, cum_import_mean, cum_import_ll, cum_import_ul) %>% +# mutate(date = lubridate::as_date(date)), by=c("date")) +# +# +# +# p_all <- ggplot(shen_counts_all %>% mutate(label1 = "CDC counts", label2 = "Linelist counts", label3="Estimated Imports"), +# aes(x=date, y=count_CDC)) + +# geom_bar(stat="identity", aes(fill=label1)) + +# geom_point(aes(x=date,y=count_ll, shape=label2, color=label2), size=2) + +# geom_point(aes(x=date,y=import_mean, shape=label3, color=label3), size=2) + +# scale_color_manual(values=c("maroon","green")) + +# scale_fill_manual(values=c("navy")) + +# ylab("Reported Cases") + ggtitle("Shenzhen Reported nCoV Cases") + +# theme_classic() + +# theme(#legend.background = element_rect(color="grey"), +# legend.position = c(0.1, 1), +# legend.justification = c(0, 1), +# legend.title = element_blank()) +# #plot(p_all) +# +# # Plot cumulative cases in Shenzhen +# # Get cumulative case counts in each +# shen_counts_cum <- shen_counts_all %>% arrange(date) %>% mutate(cum_CDC = cumsum(count_CDC), cum_ll = cumsum(count_ll)) +# p_cum <- ggplot(shen_counts_cum %>% mutate(label1 = "CDC cumulative", label2 = "Linelist cumulative", label3="Estimated Imports"), +# aes(x=date, y=cum_CDC)) + +# geom_bar(stat="identity", aes(fill=label1)) + +# geom_point(aes(x=date,y=cum_ll, shape=label2, color=label2), size=2) + +# geom_point(aes(x=date,y=cum_import_mean, shape=label3, color=label3), size=2) + +# scale_color_manual(values=c("maroon","green")) + +# scale_fill_manual(values=c("navy")) + +# ylab("Cumulative Cases") + ggtitle("Shenzhen Cumulative nCoV Cases") + +# theme_classic() + +# theme(#legend.background = element_rect(color="grey"), +# legend.position = c(0.05, 1), +# legend.justification = c(0, 1), +# legend.title = element_blank()) +# \ No newline at end of file diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/plot_importation_estimates_detection.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/plot_importation_estimates_detection.R new file mode 100644 index 000000000..f85530564 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/plot_importation_estimates_detection.R @@ -0,0 +1,459 @@ +##' Plot the estimated and reported number of importations over time +##' +##' Author: Shaun Truelove +##' email: shauntruelove@jhu.edu +##' Updated: 31 Jan 2020 + + +# SETUP ------------------------------------------------------------------- + +if (!exists("version")){ version <- "1" } +if (!exists("batch")){ batch <- "1" } +if (!exists("project_name")){ project_name <- "california_import" } +import_sim_file <- file.path("output",project_name, sprintf("covid_importation_sim_%s_batch_detect_v%s.RData", batch, version)) + +options(scipen=999) + +if(!require('tidyverse')) install.packages('tidyverse'); library(tidyverse) +if(!require('RColorBrewer')) install.packages('RColorBrewer'); library(RColorBrewer) +if(!require('grid')) install.packages('grid'); library(grid) +if(!require('gridExtra')) install.packages('gridExtra'); library(gridExtra) + + +# LOAD SUMMARIZED SIMULATION RESULTS --------------------------------------------------------------- + +# Destination by time +import_results_desttime_detect <- read_csv(file.path("results",project_name, sprintf("import_results_desttime_detect_v%s.csv", version))) +import_results_desttime_detect$t <- as.Date(import_results_desttime_detect$t) +t_values <- sort(unique(import_results_desttime_detect$t)) +import_results_desttime_detect <- import_results_desttime_detect %>% + mutate(t = factor(as.character(t))) %>% + mutate(t_num = as.integer(t)) + +# Source by time, single destination +import_results_sourcetime_detect <- read_csv(file.path("results",project_name, sprintf("import_results_sourcetime_detect_v%s.csv", version))) +import_results_sourcetime_detect$t <- as.Date(import_results_sourcetime_detect$t) +t_values <- sort(unique(import_results_sourcetime_detect$t)) +import_results_sourcetime_detect <- import_results_sourcetime_detect %>% + mutate(t = factor(as.character(t))) %>% + mutate(t_num = as.integer(t)) +# +# # Destination by time, Cumulative +# import_results_desttime_cum <- read_csv(file.path("results",project_name, sprintf("import_results_desttime_cumulative_detect_v%s.csv", version))) +# import_results_desttime_cum$t <- as.Date(import_results_desttime_cum$t) +# t_values <- sort(unique(import_results_desttime_cum$t)) +# import_results_desttime_cum <- import_results_desttime_cum %>% +# mutate(t = factor(as.character(t))) %>% +# mutate(t_num = as.integer(t)) + + +# t_limits <- as.Date(c("2020-01-01","2020-01-27")) +if (!exists("t_limits")){ t_limits <- range(t_values) } + + +# +# # FUNCTIONS --------------------------------------------------------------- +# +# plot_imports <- function(data=import_results_desttime, region_ = "All", t_limits=as.Date(c("2020-01-01","2020-01-27")), +# y.size = 9, x.size = 9, +# leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", est_col = "blue3", est_ribbon_col = "blue3", est_ribbon_alpha=0.25, +# time_int = 5, # time interval for x-axis +# plot_legend=TRUE, x_axis=TRUE){ +# # Subset by region if wanted +# if (!is.na(t_limits[1])){ +# data <- data %>% mutate(t = as.Date(t)) %>% +# filter(t >= as.Date(t_limits[1]) & as.Date(t) <= as.Date(t_limits[2])) %>% +# mutate(t_num = as.integer(as.factor(t))) +# } +# # Limit the time of the plots +# if (!is.na(t_limits[1])){ +# data <- data %>% rowwise %>% filter(as.Date(t) >= as.Date(t_limits[1]) & as.Date(t) <= as.Date(t_limits[2])) +# } +# t_values <- as.character(sort(data$t)) +# +# p <- ggplot(data=data, aes(x=t_num, y=import_mean)) + +# #geom_hline(yintercept=0)+ +# geom_line(aes(color='Detected', linetype="Detected"), size=1.2) + +# geom_ribbon(aes(ymin=import_ll, ymax=import_ul), alpha=est_ribbon_alpha, fill=est_ribbon_col) + +# scale_x_continuous(breaks=seq(1,length(t_values),time_int), +# labels=t_values[seq(1,length(t_values),time_int)]) + +# ylab("Detected imported nCoV cases (n)") + +# #scale_colour_manual(values=c(Reported=rep_col, Estimated=est_col), guide="none") + +# #scale_linetype_manual(values=c("solid","11"), guide=guide_legend(title=element_blank())) + +# scale_colour_manual(values=c(Detected=est_col), guide="none") + +# scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + +# #scale_y_continuous(expand = c(0,0)) + +# theme(axis.line = element_line(colour = "black"), +# panel.grid.major = element_blank(), panel.grid.minor = element_blank(), +# panel.border = element_blank(), panel.background=element_blank(), +# axis.text.y = element_text(size=y.size), +# axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), +# axis.title.x = element_blank(), +# legend.title=element_text(size=leg.title.size), +# legend.text=element_text(size=leg.text.size), # legend text size +# legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), +# legend.key.size=unit(15, "pt"), # Change key size in the legend +# legend.key = element_blank(), +# legend.position=c(.075, .80), legend.background = element_blank(), legend.box.background = element_blank(), +# plot.title = element_text(size=leg.title.size, face="bold", vjust=-10, hjust = 0.025), +# plot.margin = unit(c(-.75,.25,0,0.25), "cm")) +# +# if (region_ != "All"){ +# p <- p + ggtitle(region_) +# } +# if (plot_legend==FALSE){ +# p <- p + theme(legend.position = "none") +# } +# if (x_axis==FALSE){ +# p <- p + theme(axis.text.x=element_blank(), #axis.line.x=element_blank(), +# axis.ticks.x=element_blank(), axis.title.x=element_blank()) +# } +# return(p) +# } +# +# +# plot_imports_barchart <- function(data=import_results_desttime, region_ = "All", t_limits=as.Date(c("2020-01-01","2020-01-27")), +# y.size = 9, x.size = 9, +# leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", est_col = "blue3", +# time_int = 5, # time interval for x-axis +# plot_legend=TRUE, x_axis=TRUE){ +# # Subset by region if wanted +# if (!is.na(t_limits[1])){ +# data <- data %>% mutate(t = as.Date(t)) %>% +# filter(t >= as.Date(t_limits[1]) & as.Date(t) <= as.Date(t_limits[2])) %>% +# mutate(t_num = as.integer(as.factor(t))) +# } +# # Limit the time of the plots +# if (!is.na(t_limits[1])){ +# data <- data %>% rowwise %>% filter(as.Date(t) >= as.Date(t_limits[1]) & as.Date(t) <= as.Date(t_limits[2])) +# } +# t_values <- as.character(sort(data$t)) +# +# p <- ggplot(data=data, aes(x=t_num, y=import_mean, fill='Detected')) + +# geom_bar(stat="identity", color="black") + +# geom_errorbar(aes(ymin=import_ll, ymax=import_ul), width=.4) + +# ylab("Detected imported nCoV cases (n)") + +# scale_x_continuous(breaks=seq(1,length(t_values),time_int), +# labels=t_values[seq(1,length(t_values),time_int)]) + +# scale_colour_manual(values=c(Detected=est_col), guide="none") + +# scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + +# #scale_y_continuous(expand = c(0,0)) + +# theme(axis.line = element_line(colour = "black"), +# panel.grid.major = element_blank(), panel.grid.minor = element_blank(), +# panel.border = element_blank(), panel.background=element_blank(), +# axis.text.y = element_text(size=y.size), +# axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), +# axis.title.x = element_blank(), +# legend.title=element_text(size=leg.title.size), +# legend.text=element_text(size=leg.text.size), # legend text size +# legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), +# legend.key.size=unit(15, "pt"), # Change key size in the legend +# legend.key = element_blank(), +# legend.position=c(.075, .80), legend.background = element_blank(), legend.box.background = element_blank(), +# plot.title = element_text(size=leg.title.size, face="bold", vjust=-10, hjust = 0.025), +# plot.margin = unit(c(-.75,.25,0.25,0.25), "cm")) + +# guides(fill=guide_legend(title = element_blank())) +# +# if (region_ != "All"){ +# p <- p + ggtitle(region_) +# } +# if (plot_legend==FALSE){ +# p <- p + theme(legend.position = "none") +# } +# if (x_axis==FALSE){ +# p <- p + theme(axis.text.x=element_blank(), #axis.line.x=element_blank(), +# axis.ticks.x=element_blank(), axis.title.x=element_blank()) +# } +# return(p) +# } +# +# +# # Barchart plot of importations stacked by source +# plot_imports_stackedsource <- function(data=import_results_sourcetime, t_limits=as.Date(c("2020-01-01","2020-01-27")), +# y.size = 9, x.size = 9, +# leg.text.size = 8, leg.title.size = 10, +# rep_col = "indianred2", est_col = "blue3", +# time_int = 5){ # time interval for x-axis +# +# # Limit the time of the plots +# if (!is.na(t_limits[1])){ +# data <- data %>% mutate(t = as.Date(t)) %>% +# filter(t >= as.Date(t_limits[1]) & as.Date(t) <= as.Date(t_limits[2])) %>% +# mutate(t_num = as.integer(as.factor(t))) +# } +# t_values <- as.character(unique(sort(data$t))) +# +# p <- ggplot(data=data, aes(x=t_num, y=import_mean, fill=source)) + +# geom_bar(position="stack", stat="identity", color="black") + +# ylab("Detected imported nCoV cases (n)") + +# scale_x_continuous(breaks=seq(1,length(t_values),time_int), +# labels=t_values[seq(1,length(t_values),time_int)]) + +# scale_colour_manual(values=c(Detected=est_col), guide="none") + +# scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + +# #scale_y_continuous(expand = c(0,0)) + +# theme(axis.line = element_line(colour = "black"), +# panel.grid.major = element_blank(), panel.grid.minor = element_blank(), +# panel.border = element_blank(), panel.background=element_blank(), +# axis.text.y = element_text(size=y.size), +# axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), +# axis.title.x = element_blank(), +# legend.title=element_text(size=leg.title.size), +# legend.text=element_text(size=leg.text.size), # legend text size +# legend.margin=margin(0,0,0,0), legend.box.margin=margin(0,10,-20,-20), +# legend.key.size=unit(8, "pt"), +# legend.key = element_blank(), +# legend.background = element_blank(), legend.box.background = element_blank(), +# plot.title = element_text(size=leg.title.size, face="bold", hjust = 0.025), +# plot.margin = unit(c(0.5,.25,0.25,0.25), "cm")) + +# guides(fill=guide_legend(title = element_blank(), ncol=1)) +# return(p) +# } +# +# +# +# +# +# +# # For plotting importions from multiple regions +# plot_imports_byregion <- function(data=import_results_desttime_byregion, t_limits=as.Date(c("2020-01-01","2020-01-27")), +# y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", est_col = "blue3", est_ribbon_col = "blue3", est_ribbon_alpha=0.25, +# plot_legend=TRUE){ +# +# # Limit the time of the plots +# if (!is.na(t_limits[1])){ +# data <- data %>% mutate(t = as.Date(t)) %>% +# filter(t >= as.Date(t_limits[1]) & as.Date(t) <= as.Date(t_limits[2])) %>% +# mutate(t_num = as.integer(as.factor(t))) +# } +# +# p <- ggplot(data=data, aes(x=t_num, color=region, fill=region)) + +# geom_line(data=data, aes(y=import_mean), size=1.2) + +# geom_ribbon(data=data, aes(ymin=import_ll, ymax=import_ul, fill=region), alpha=est_ribbon_alpha) + +# #geom_line(data=data, aes(y=rep_import, color="Reported"), size=1.2) + +# ylab("Detected imported nCoV cases (n)") + +# #scale_colour_manual(name="Imported cases", values=c(Reported=rep_col, Estimated=est_col)) + +# scale_color_manual(values=c("grey50", brewer.pal(3,"Dark2"), "red"), guide=guide_legend(title="Detected imported cases")) + +# +# theme(axis.line = element_line(colour = "black"), +# panel.grid.major = element_blank(), panel.grid.minor = element_blank(), +# panel.border = element_blank(), panel.background=element_blank(), +# axis.text.y = element_text(size=y.size), axis.text.x = element_text(size=x.size, angle = 90, hjust = 1), +# axis.title.x = element_blank(), +# legend.title=element_text(size=leg.title.size), +# legend.text=element_text(size=leg.text.size), # legend text size +# legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), +# legend.key.size=unit(15, "pt"), # Change key size in the legend +# legend.key = element_blank(), +# legend.position=c(.1, .90), legend.background = element_blank(), legend.box.background = element_blank(), +# plot.margin = unit(c(.5,1,.25,.25), "cm")) +# +# p + facet_grid(region ~ .) +# +# +# return(p) +# } +# +# +# +# +# plot_cum_imports <- function(data=import_results_desttime_cum, region_ = "All", t_limits=as.Date(c("2020-01-01","2020-01-27")), +# y.size = 9, x.size = 9, +# leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", est_col = "blue3", est_ribbon_col = "blue3", est_ribbon_alpha=0.25, +# time_int = 5, # time interval for x-axis +# plot_legend=TRUE, x_axis=TRUE){ +# # Subset by region if wanted +# if (region_!="All"){ +# data <- data %>% filter(region==region_) +# } +# # Limit the time of the plots +# if (!is.na(t_limits[1])){ +# data <- data %>% mutate(t = as.Date(t)) %>% +# filter(t >= as.Date(t_limits[1]) & as.Date(t) <= as.Date(t_limits[2])) %>% +# mutate(t_num = as.integer(as.factor(t))) +# } +# t_values <- as.character(sort(data$t)) +# +# p <- ggplot(data=data, aes(x=t_num, y=cum_import_mean)) + +# geom_line(data=data, aes(color='Detected', linetype="Detected"), size=1.2) + +# geom_ribbon(data=data, aes(ymin=cum_import_ll, ymax=cum_import_ul), alpha=est_ribbon_alpha, fill=est_ribbon_col) + +# scale_x_continuous(breaks=seq(1,length(t_values),time_int), +# labels=t_values[seq(1,length(t_values),time_int)]) + +# ylab("Detected imported nCoV cases (n)") + +# #scale_colour_manual(values=c(Reported=rep_col, Estimated=est_col), guide="none") + +# #scale_linetype_manual(values=c("solid","11"), guide=guide_legend(title=element_blank())) + +# scale_colour_manual(values=c(Detected=est_col), guide="none") + +# scale_linetype_manual(values=c("solid"), guide=guide_legend(title=element_blank())) + +# #scale_y_continuous(expand = c(0,0)) + +# theme(axis.line = element_line(colour = "black"), +# panel.grid.major = element_blank(), panel.grid.minor = element_blank(), +# panel.border = element_blank(), panel.background=element_blank(), +# axis.text.y = element_text(size=y.size), +# axis.text.x = element_text(size=x.size, angle = 90, hjust = 1, vjust=.5, margin=margin(t=5)), +# axis.title.x = element_blank(), +# legend.title=element_text(size=leg.title.size), +# legend.text=element_text(size=leg.text.size), # legend text size +# legend.margin=margin(0,0,0,0), legend.box.margin=margin(-20,-20,-20,-20), +# legend.key.size=unit(15, "pt"), # Change key size in the legend +# legend.key = element_blank(), +# legend.position=c(.075, .80), legend.background = element_blank(), legend.box.background = element_blank(), +# plot.title = element_text(size=leg.title.size, face="bold", vjust=-10, hjust = 0.025), +# plot.margin = unit(c(-.75,.25,0,0.25), "cm")) +# +# if (region_ != "All"){ +# p <- p + ggtitle(region_) +# } +# if (plot_legend==FALSE){ +# p <- p + theme(legend.position = "none") +# } +# if (x_axis==FALSE){ +# p <- p + theme(axis.text.x=element_blank(), #axis.line.x=element_blank(), +# axis.ticks.x=element_blank(), axis.title.x=element_blank()) +# } +# return(p) +# } +# +# + + + + + + +# # PLOT SPECIFICS +# +# y.size = x.size = 9 +# leg.text.size = 12 +# leg.title.size = 14 +# +# rep_col <- "indianred2" +# est_col <- "blue3" +# est_ribbon_col <- "blue3" +# est_ribbon_alpha <- 0.2 + +# +# # PLOT TOTAL IMPORTATIONS ------------------------------------------------- +# +# p_total <- plot_imports(data=import_results_desttime, region_ = "All", t_limits=t_limits, +# y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", +# est_col = "blue3", +# est_ribbon_col = "blue3", +# est_ribbon_alpha=0.25, +# plot_legend=TRUE) +# #plot(p_total) +# +# +# p_total_barchart <- plot_imports_barchart(data=import_results_desttime, region_ = "All", t_limits=t_limits, +# y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", +# est_col = "blue3", +# plot_legend=TRUE) +# #plot(p_total_barchart) +# +# +# +# p_cum <- plot_cum_imports(data=import_results_desttime_cum, region_ = "All", t_limits=t_limits, +# y.size = 9, x.size = 9, leg.text.size = 12, leg.title.size = 14, +# rep_col = "indianred2", +# est_col = "blue3", +# est_ribbon_col = "blue3", +# est_ribbon_alpha=0.25, +# plot_legend=TRUE) +# +# # Plot 2 plots together +# #gridExtra::grid.arrange(p_total, p_cum, nrow=2) +# +# +# +# p_stacked_barchart <- plot_imports_stackedsource(data=import_results_sourcetime, t_limits=t_limits, +# y.size = 8, x.size = 8, leg.text.size = 6, leg.title.size = 8, +# rep_col = "indianred2", +# est_col = "blue3") +# # plot(p_stacked_barchart) +# +# p_stackeddest_barchart <- plot_imports_stackeddest(data=import_results_desttime, t_limits=t_limits, +# y.size = 8, x.size = 8, leg.text.size = 6, leg.title.size = 8, +# rep_col = "indianred2", +# est_col = "blue3") +# +# +# + + + + +# +# +# # PLOT ESTIMATED VS REPORTED ---------------------------------------------- +# +# # Reported from CDC +# shen_cases <- read_csv("data/shenzhen_data/shenzhen_case_counts.csv") +# shen_cases <- shen_cases %>% mutate(cum_cases = cumsum(count)) +# # From Linelists +# ll_data <- read_csv("data/linelist_current.csv") +# shen_rows <- apply(ll_data, 1, FUN=function(x) sum(grepl("shenzhen", x, ignore.case = TRUE)))>0 +# ll_data_shenzhen <- ll_data[shen_rows, ] +# shen_data_aggr <- ll_data_shenzhen %>% count(date_confirmation) +# rm(ll_data, ll_data_shenzhen, shen_rows) +# +# shen_counts <- full_join(shen_cases %>% rename(count_CDC = count), +# shen_data_aggr %>% rename(count_ll = n, date=date_confirmation), +# by=c("date"="date")) +# shen_counts[is.na(shen_counts)] <- 0 +# +# # Merge with estimates +# shen_counts_all <- full_join(shen_counts, +# import_results_desttime %>% select(date=t, import_mean, import_ll, import_ul) %>% mutate(date = as.Date(date)), by=c("date")) +# shen_counts_all <- full_join(shen_counts_all, +# import_results_desttime_cum %>% select(date=t, cum_import_mean, cum_import_ll, cum_import_ul) %>% mutate(date = as.Date(date)), by=c("date")) +# +# +# # Limit the time of the plots +# if (!is.na(t_limits[1])){ +# shen_counts_all <- shen_counts_all %>% rowwise %>% filter(as.Date(date) >= as.Date(t_limits[1]) & as.Date(date) <= as.Date(t_limits[2])) %>% as.data.frame() +# } +# +# +# p_incid_shen_inclest <- ggplot(shen_counts_all %>% mutate(label1 = "CDC counts", label2 = "Linelist counts", label3="Est. detected imports"), +# aes(x=date, y=count_CDC)) + +# geom_bar(stat="identity", aes(fill=label1)) + +# geom_point(aes(x=date,y=count_ll, shape=label2, color=label2), size=2) + +# geom_point(aes(x=date,y=import_mean, shape=label3, color=label3), size=2) + +# scale_color_manual(values=c("maroon","green")) + +# scale_fill_manual(values=c("navy")) + +# ylab("Reported Cases") + ggtitle("Shenzhen Reported nCoV Cases") + +# theme_classic() + +# theme(#legend.background = element_rect(color="grey"), +# legend.position = c(0.05, 1), +# legend.justification = c(0, 1), +# legend.title = element_blank()) +# #plot(p_incid_shen_inclest) +# +# +# +# # Plot cumulative cases in Shenzhen +# # Get cumulative case counts in each +# shen_counts_cum <- shen_counts_all %>% arrange(as.character(date)) %>% mutate(cum_CDC = cumsum(count_CDC), cum_ll = cumsum(count_ll)) +# +# +# p_cum_shen_inclest <- ggplot(shen_counts_cum %>% mutate(label1 = "CDC cumulative", label2 = "Linelist cumulative", label3="Est. detected imports"), +# aes(x=date, y=cum_CDC)) + +# geom_bar(stat="identity", aes(fill=label1)) + +# geom_point(aes(x=date,y=cum_ll, shape=label2, color=label2), size=2) + +# geom_point(aes(x=date,y=cum_import_mean, shape=label3, color=label3), size=2) + +# scale_color_manual(values=c("maroon","green")) + +# scale_fill_manual(values=c("navy")) + +# ylab("Cumulative Cases") + ggtitle("Shenzhen Cumulative nCoV Cases") + +# coord_cartesian() + +# theme_classic() + +# theme(#legend.background = element_rect(color="grey"), +# legend.position = c(0.05, 1), +# legend.justification = c(0, 1), +# legend.title = element_blank()) +# #plot(p_cum_shen_inclest) +# +# diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/setup_pop_data.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/setup_pop_data.R new file mode 100644 index 000000000..fd30c8a97 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/setup_pop_data.R @@ -0,0 +1,126 @@ + +# SETUP POPULATION DATA - FROM WORLDPOP + +if(!require('tidyverse')) install.packages('tidyverse'); library(tidyverse) + + +# CHINA PROVINCE DATA ----------------------------------------------------- + +make_all_pop_data <- function(){ + + + china_pop_data <- read_csv("data-raw/China_popsize_census_2010.csv") + china_pop_data <- china_pop_data %>% rename(loc = province, population=pop) + china_pop_data <- china_pop_data %>% mutate(country = "China", country_code="CHN") %>% rename(pop = population) + write_csv(china_pop_data, "data-raw/china_province_pop_data.csv") + + + # COUNTRY DATA + + country_pop_url <- "https://pkgstore.datahub.io/JohnSnowLabs/population-figures-by-country/population-figures-by-country-csv_csv/data/630580e802a621887384f99527b68f59/population-figures-by-country-csv_csv.csv" + country_pop_data <- readr::read_csv(country_pop_url) + + country_pop_data <- country_pop_data %>% gather(key="year", value="pop", -Country, -Country_Code) %>% + mutate(year = as.integer(substr(year, 6,9))) + + #take only the most recent year + country_pop_data <- country_pop_data %>% rename(country = Country, country_code=Country_Code) %>% + filter(!is.na(year) & !is.na(pop)) %>% + group_by(country, country_code) %>% + filter(year == max(year)) %>% ungroup() + + + + # US STATE DATA + # - source: https://www.census.gov/data/tables/time-series/demo/popest/2010s-state-total.html + us_state_pop <- readr::read_csv("data-raw/us_state_pop.csv") %>% rename(state_name=state) + us_state_pop <- full_join(us_state_pop, + data.frame(state=state.abb, state_name=state.name)) %>% + mutate(state = as.character(state)) + us_state_pop$state[grepl("District", us_state_pop$state_name, ignore.case = TRUE)] <- "DC" + us_state_pop$state[grepl("Puerto", us_state_pop$state_name, ignore.case = TRUE)] <- "PR" + us_state_pop <- us_state_pop %>% rename(pop = population) + + + + # MERGE + + colnames(country_pop_data) + colnames(china_pop_data) + colnames(us_state_pop) + + # ~ Country and China Province + pop_data <- full_join(country_pop_data %>% rename(country_name=country, country=country_code) %>% mutate(location = country) %>% select(-year), + china_pop_data %>% rename(country_name=country, country=country_code), + by=c("location"="loc", "pop"="pop", "country"="country", "country_name")) %>% mutate(pop = as.integer(pop)) + + # ~ US State + colnames(pop_data) + pop_data <- full_join(pop_data, + us_state_pop %>% + mutate(country_name="United States of America", country="USA") %>% + rename(location = state)) + + # fix some randoms + other_pops <- read_csv("data-raw/other_locations_pop.csv") + pop_data <- bind_rows(pop_data, other_pops) + pop_data <- pop_data %>% rename(source = location) + + + write_csv(pop_data, "data/pop_data.csv") + +} + + + +# Function to get population data wanted +##' +##' Return the population of the country or Chinese province of interest. +##' +##' @param loc The location or locations of which population is needed. This can be a vector. +##' +##' @return a named vector of populations of locations +##' +get_population <- function(loc = "Singapore"){ + pop_data <- readr::read_csv("data/pop_data.csv", col_types = cols()) + + match_ <- match(loc, pop_data$location) + + pops <- as.integer(pop_data$population[match_]) + names(pops) <- loc + + return(pops) +} + +## EXAMPLE: +# get_population(c("Aruba", "India", "Germany")) + + + + + +# Loading World Pop data +# {load("../Data/WorldPop_longform_1960.to.2017.RData") +# WorldPop <- WorldPop %>% mutate(Country.Code = countrycode(Country, origin = "country.name", destination = "iso3c")) %>% +# filter(!is.na(Country.Code)) +# +# # if (!any(WorldPop$Year == 2016)) WorldPop <- WorldPop %>% union(filter(WorldPop, Year == 2015) %>% mutate(Year = 2016)) # Assuming 2015 population for 2016 +# # Extrapolating for pop of 2017 +# for (this.country in unique(WorldPop$Country)) { +# # print(this.country) +# +# Fit <- lm(Population ~ Year, data = filter(WorldPop, Country == this.country, Year >= 2008)) +# +# Correlate.vars <- data.frame(Country = this.country, +# Country.Code = countrycode(this.country, origin = "country.name", destination = "iso3c"), +# Year = 2018:2019) +# +# Preds <- predict(Fit, newdata = Correlate.vars) +# +# New.Rows <- Correlate.vars %>% mutate(Population = round(Preds)) +# +# WorldPop <- WorldPop %>% bind_rows(New.Rows) +# } +# Years_pop <- sort(unique(WorldPop$Year)) +# Countries_pop <- str_replace_all(WorldPop$Country, " ", ".") %>% unique +# Country.Codes_pop <- WorldPop$Country.Code %>% unique} diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/testing_import.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/testing_import.R new file mode 100644 index 000000000..75030ca13 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/testing_import.R @@ -0,0 +1,214 @@ +library(covidImportation) +#debugonce(setup_and_run_importations) +t1 <- Sys.time() +WC_import <- setup_and_run_importations(dest="AZ",# c("CA","OR","WA","NV","AZ"), + dest_type=c("state"), #,"city","airport", "country"), + dest_country="USA", + dest_aggr_level=c("airport"), #, "city", "state", "country", "metro"), + project_name="WestCoast_import", + first_date = ISOdate(2019,12,1), + last_date = Sys.time(), + update_case_data=TRUE, + case_data_dir = "data/case_data", + check_saved_data=TRUE, + save_case_data=TRUE, + get_travel=TRUE, + n_sim=100, + cores=5, + n_top_dests=25, + get_detection_time=FALSE, + travel_dispersion=3, + allow_travel_variance=FALSE, + print_progress=TRUE, + param_list=list(incub_mean_log=log(5.89), + incub_sd_log=log(1.74), + inf_period_nohosp_mean=15, + inf_period_nohosp_sd=5, + inf_period_hosp_shape=0.75, + inf_period_hosp_scale=5.367, + p_report_source=c(0.05, 0.25), + shift_incid_days=-10, + delta=1)) +print(paste0('Simulation required ', round(as.list(proc.time() - t1)$elapsed/60, 3), ' minutes')) + +save(WC_import, "output/WC_import_100sims.rda") + +(size_ <- format(object.size(WC_import), "Mb")) + +nb_pars <- calc_nb_import_pars(WC_import$importation_sims$importation_sim, cores=6) + +importation_sim <- UT_import$importation_sims$importation_sim + + + + + + + + + + + + + + + +dest=c("CA","OR","WA","NV") +dest_type=c("state") #,"city","airport", "country"), +dest_country="USA" +dest_aggr_level=c("airport") #, "city", "state", "country", "metro"), +project_name="WestCoast_import" +version="global" +batch="1st" +first_date = ISOdate(2019,12,1) +last_date = Sys.time() +update_case_data=TRUE +case_data_dir = "data/case_data" +check_saved_data=TRUE +save_case_data=TRUE +get_travel=TRUE +end_date=Sys.Date() +n_sim=10 +cores=4 +get_detection_time=FALSE +travel_dispersion=3 +allow_travel_variance=FALSE +print_progress=TRUE +get_nb_params = TRUE +param_list=list(incub_mean_log=log(5.89), + incub_sd_log=log(1.74), + inf_period_nohosp_mean=15, + inf_period_nohosp_sd=5, + inf_period_hosp_shape=0.75, + inf_period_hosp_scale=5.367, + p_report_source=c(0.05, 0.25), + shift_incid_days=-10, + delta=1) + + + + + + +test1 <- run_daily_import_model(input_data, + travel_data_monthly, + travel_data_daily, + travel_dispersion=3, + travel_restrictions=NULL, + allow_travel_variance=FALSE, + tr_inf_redux=0, + get_detection_time=FALSE, + time_inftotravel, + time_inftodetect, + project_name=NULL, batch=NULL, version=NULL, + output_dir = file.path("output", paste0(paste(dest, collapse="+"),"_", as.Date(Sys.Date()))), + param_list=list(incub_mean_log=log(5.89), + incub_sd_log=log(1.74), + inf_period_nohosp_mean=15, + inf_period_nohosp_sd=5, + inf_period_hosp_shape=0.75, + inf_period_hosp_scale=5.367)) + + + + + + + + + + + + + + + + + + +# testing +library(covidImportation) + +incid_data <- get_incidence_data(first_date = ISOdate(2019,12,1), + last_date = Sys.time(), + update_case_data=TRUE, + case_data_dir = "data/case_data", + check_saved_data=TRUE, + save_data=TRUE) + + + +covidImportation:::update_JHUCSSE_github_data(last_date = Sys.time(), + case_data_dir = "data/case_data", + check_saved_data=TRUE, + save_data=TRUE) + + + + + + + + + + + + + + + + + + + + + +# TEST NEW VERSION -------------------------------------------------------- + + +library(covidImportation) + +# First run the setup + +dest <- "UT" +dest=c("CA","OR","WA","NV","AZ") +setup_res <- covidImportation::setup_importations(dest=dest, + dest_type=c("state"), #,"city","airport", "country"), + dest_country="USA", + dest_aggr_level=c("airport"), #, "city", "state", "country", "metro"), + first_date = ISOdate(2019,12,1), + last_date = Sys.time(), + update_case_data=TRUE, + case_data_dir = "data/case_data", + output_dir = file.path("output", paste0(paste(dest, collapse="+"),"_", as.Date(Sys.Date()))), + check_saved_data=TRUE, + save_case_data=TRUE, + get_travel=TRUE, + n_top_dests=Inf, + travel_dispersion=3, + param_list=list(incub_mean_log=log(5.89), + incub_sd_log=log(1.74), + inf_period_nohosp_mean=15, + inf_period_nohosp_sd=5, + inf_period_hosp_shape=0.75, + inf_period_hosp_scale=5.367, + p_report_source=c(0.05, 0.25), + shift_incid_days=-10, + delta=1)) + + +sim_res <- covidImportation::run_importations( + n_sim=10, + cores=5, + get_detection_time=FALSE, + travel_dispersion=3, + allow_travel_variance=FALSE, + print_progress=TRUE, + output_dir = file.path("output", paste0(paste(dest, collapse="+"),"_", as.Date(Sys.Date()))), + param_list=list(incub_mean_log=log(5.89), + incub_sd_log=log(1.74), + inf_period_nohosp_mean=15, + inf_period_nohosp_sd=5, + inf_period_hosp_shape=0.75, + inf_period_hosp_scale=5.367, + p_report_source=c(0.05, 0.25))) diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/testing_import_fullUSA.R b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/testing_import_fullUSA.R new file mode 100644 index 000000000..e838e958a --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/covidImportation/testing_import_fullUSA.R @@ -0,0 +1,52 @@ + + +# TEST NEW VERSION -------------------------------------------------------- + + +library(covidImportation) + +# First run the setup + +dest <- "UT" +dest=c("CA","OR","WA","NV","AZ") +dest <- state.abb +setup_res <- covidImportation::setup_importations(dest=dest, + dest_type=c("state"), #,"city","airport", "country"), + dest_country="USA", + dest_aggr_level=c("airport"), #, "city", "state", "country", "metro"), + first_date = ISOdate(2019,12,1), + last_date = ISOdate(2020,3,15), + update_case_data=TRUE, + case_data_dir = "data/case_data", + output_dir = file.path("output", paste0("fullUSA","_", as.Date(Sys.Date()))), + check_saved_data=TRUE, + save_case_data=TRUE, + get_travel=TRUE, + n_top_dests=Inf, + travel_dispersion=3, + param_list=list(incub_mean_log=log(5.89), + incub_sd_log=log(1.74), + inf_period_nohosp_mean=15, + inf_period_nohosp_sd=5, + inf_period_hosp_mean_log=1.23, + inf_period_hosp_sd_log=0.79, + p_report_source=c(0.05, 0.25), + shift_incid_days=-10, + delta=1)) + + +sim_res <- covidImportation::run_importations( + n_sim=2, + cores=2, + get_detection_time=FALSE, + travel_dispersion=3, + allow_travel_variance=FALSE, + print_progress=TRUE, + output_dir = file.path("output", paste0("fullUSA","_", as.Date(Sys.Date()))), + param_list=list(incub_mean_log=log(5.89), + incub_sd_log=log(1.74), + inf_period_nohosp_mean=15, + inf_period_nohosp_sd=5, + inf_period_hosp_mean_log=1.23, + inf_period_hosp_sd_log=0.79, + p_report_source=c(0.05, 0.25))) diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/DESCRIPTION b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/DESCRIPTION new file mode 100644 index 000000000..b182c3d25 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/DESCRIPTION @@ -0,0 +1,35 @@ +Package: globaltoolboxlite +Title: Identify Location Names and Link with Other Data, lite version +Version: 0.0.0.9000 +Authors@R: c( person("Shaun", "Truelove", email = + "shauntruelove@jhu.edu", role = c("aut")), person("Joshua", + "Kaminsky", email = "jkaminsky@jhu.edu", role = c("aut", "cre"))) +Description: Allows users to standardize location names. +Depends: R (>= 3.4) +Imports: countrycode, dplyr, stringdist, stringr, glue, lubridate, + tibble, tidyr, reshape2, stats, rlang +Suggests: readxl, testthat, covr, httr +License: GPL (>=2) +Encoding: UTF-8 +LazyData: true +RoxygenNote: 7.1.0 +Collate: 'string_manipulation.R' 'get_country.R' 'get_region.R' + 'get_who_disease_incidence.R' +RemoteType: github +RemoteHost: api.github.com +RemoteRepo: globaltoolboxlite +RemoteUsername: HopkinsIDD +RemoteRef: master +RemoteSha: bdc856e7aec629d2960b2b72618d9e0b49a5898e +GithubRepo: globaltoolboxlite +GithubUsername: HopkinsIDD +GithubRef: master +GithubSHA1: bdc856e7aec629d2960b2b72618d9e0b49a5898e +NeedsCompilation: no +Packaged: 2020-04-26 15:42:40 UTC; root +Author: Shaun Truelove [aut], Joshua Kaminsky [aut, cre] +Maintainer: Joshua Kaminsky +Built: R 3.6.3; ; 2020-04-26 15:42:41 UTC; unix +InstallAgent: packrat 0.5.0 +InstallSource: github +Hash: 471f116c0a354436b3e1c6cfb3ce5bc2 diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/Rd.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/Rd.rds new file mode 100644 index 000000000..ec6c9c3c8 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/Rd.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/data.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/data.rds new file mode 100644 index 000000000..7a579a7a6 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/data.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/features.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/features.rds new file mode 100644 index 000000000..772f787fd Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/features.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/hsearch.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/hsearch.rds new file mode 100644 index 000000000..50fb77bbe Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/hsearch.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/links.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/links.rds new file mode 100644 index 000000000..22c3bcf64 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/links.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/nsInfo.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/nsInfo.rds new file mode 100644 index 000000000..564a48063 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/nsInfo.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/package.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/package.rds new file mode 100644 index 000000000..eecf41b89 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/Meta/package.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/NAMESPACE b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/NAMESPACE new file mode 100644 index 000000000..e1313022e --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/NAMESPACE @@ -0,0 +1,20 @@ +# Default NAMESPACE created by R +# Remove the previous line if you edit this file + +# Export all names +exportPattern(".") + +# Import all packages listed as Imports or Depends +import( + countrycode, + dplyr, + stringdist, + stringr, + glue, + lubridate, + tibble, + tidyr, + reshape2, + stats, + rlang +) diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite new file mode 100644 index 000000000..3b65e3cbb --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite @@ -0,0 +1,27 @@ +# File share/R/nspackloader.R +# Part of the R package, http://www.R-project.org +# +# Copyright (C) 1995-2012 The R Core Team +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# A copy of the GNU General Public License is available at +# http://www.r-project.org/Licenses/ + +local({ + info <- loadingNamespaceInfo() + pkg <- info$pkgname + ns <- .getNamespace(as.name(pkg)) + if (is.null(ns)) + stop("cannot find namespace environment for ", pkg, domain = NA); + dbbase <- file.path(info$libname, pkg, "R", pkg) + lazyLoad(dbbase, ns, filter = function(n) n != ".__NAMESPACE__.") +}) diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite.rdb b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite.rdb new file mode 100644 index 000000000..d4f24e736 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite.rdb differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite.rdx b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite.rdx new file mode 100644 index 000000000..d2d2c5098 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/R/globaltoolboxlite.rdx differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rdb b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rdb new file mode 100644 index 000000000..02b951bb0 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rdb differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rds new file mode 100644 index 000000000..b3409a93c Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rdx b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rdx new file mode 100644 index 000000000..fa0d5ccca Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/data/Rdata.rdx differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/all_countries.csv b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/all_countries.csv new file mode 100644 index 000000000..4ba89008a --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/all_countries.csv @@ -0,0 +1,247 @@ +ABW +AFG +AGO +AIA +ALA +ALB +AND +ANT +ARE +ARG +ARM +ASM +ATA +ATF +ATG +AUS +AUT +AZE +BDI +BEL +BEN +BFA +BGD +BGR +BHR +BHS +BIH +BLM +BLR +BLZ +BMU +BOL +BRA +BRB +BRN +BTN +BVT +BWA +CAF +CAN +CCK +CHE +CHL +CHN +CIV +CMR +COD +COG +COK +COL +COM +CPV +CRI +CUB +CXR +CYM +CYP +CZE +DEU +DJI +DMA +DNK +DOM +DZA +ECU +EGY +ERI +ESH +ESP +EST +ETH +FIN +FJI +FLK +FRA +FRO +FSM +GAB +GBR +GEO +GGY +GHA +GIB +GIN +GLP +GMB +GNB +GNQ +GRC +GRD +GRL +GTM +GUF +GUM +GUY +HKG +HMD +HND +HRV +HTI +HUN +IDN +IMN +IND +IOT +IRL +IRN +IRQ +ISL +ISR +ITA +JAM +JEY +JOR +JPN +KAZ +KEN +KGZ +KHM +KIR +KNA +KOR +KWT +LAO +LBN +LBR +LBY +LCA +LIE +LKA +LSO +LTU +LUX +LVA +MAC +MAF +MAR +MCO +MDA +MDG +MDV +MEX +MHL +MKD +MLI +MLT +MMR +MNE +MNG +MNP +MOZ +MRT +MSR +MTQ +MUS +MWI +MYS +MYT +NAM +NCL +NER +NFK +NGA +NIC +NIU +NLD +NOR +NPL +NRU +NZL +OMN +PAK +PAN +PCN +PER +PHL +PLW +PNG +POL +PRI +PRK +PRT +PRY +PSE +PYF +QAT +REU +ROU +RUS +RWA +SAU +SDN +SEN +SGP +SGS +SHN +SJM +SLB +SLE +SLV +SMR +SOM +SPM +SRB +SSD +STP +SUR +SVK +SVN +SWE +SWZ +SYC +SYR +TCA +TCD +TGO +THA +TJK +TKL +TKM +TLS +TON +TTO +TUN +TUR +TUV +TWN +TZA +UGA +UKR +UMI +URY +USA +UZB +VAT +VCT +VEN +VGB +VIR +VNM +VUT +WLF +WSM +YEM +ZAF +ZMB +ZWE diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/alt_country_names.csv b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/alt_country_names.csv new file mode 100644 index 000000000..35cf23edb --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/alt_country_names.csv @@ -0,0 +1,282 @@ +"ID","ISO3","name1","name2","name3","name4","name5","name6","name7","name8" +1,"afg","Afghanistan","Islamic State of Afghanistan","","","","","",NA +2,"ala","Aland Islands","","","","","","",NA +3,"alb","Albania","Republic of Albania","","","","","",NA +4,"dza","Algeria","People's Democratic Republic of Algeria","","","","","",NA +5,"asm","American Samoa","Territory of American Samoa","","","","","",NA +6,"and","Andorra","Principality of Andorra","","","","","",NA +7,"ago","Angola","Republic of Angola","","","","","",NA +8,"aia","Anguilla","","","","","","",NA +9,"ata","Antarctica","","","","","","",NA +10,"atg","Antigua and Barbuda","","","","","","",NA +11,"arg","Argentina","Argentine Republic","","","","","",NA +12,"arm","Armenia","Republic of Armenia","","","","","",NA +13,"abw","Aruba","","","","","","",NA +277,"","Ascension Island","","","","","","",NA +253,"","Ashmore and Cartier Islands","Territory of Ashmore and Cartier Islands","","","","","",NA +14,"aus","Australia","Commonwealth of Australia","","","","","",NA +15,"aut","Austria","Republic of Austria","","","","","",NA +16,"aze","Azerbaijan","Republic of Azerbaijan","","","","","",NA +17,"bhs","Bahamas","Bahamas, The","Commonwealth of the Bahamas","The Bahamas","","","",NA +18,"bhr","Bahrain","State of Bahrain","","","","","",NA +254,"","Baker Island","","","","","","",NA +19,"bgd","Bangladesh","People's Republic of Bangladesh","","","","","",NA +20,"brb","Barbados","","","","","","",NA +255,"","Bassas da India","","","","","","",NA +21,"blr","Belarus","Republic of Belarus","","","","","",NA +22,"bel","Belgium","Kingdom of Belgium","","","","","",NA +23,"blz","Belize","","","","","","",NA +24,"ben","Benin","Republic of Benin","","","","","",NA +25,"bmu","Bermuda","","","","","","",NA +26,"btn","Bhutan","Kingdom of Bhutan","","","","","",NA +27,"bol","Bolivia, Plurinational State of","Bolivia (Plurinational State of)","Bolivia","Republic of Bolivia","","","",NA +28,"bes","Bonaire, Saint Eustatius and Saba","","","","","","",NA +278,"","Bonaire, Sint Eustatius and Saba","","","","","","",NA +29,"bih","Bosnia and Herzegovina","Bosnia-Herzegovina","Bosnia Herzegovena","","","","",NA +30,"bwa","Botswana","Republic of Botswana","","","","","",NA +31,"","Bouvet Island","","","","","","",NA +32,"bra","Brazil","Federative Republic of Brazil","","","","","",NA +33,"iot","British Indian Ocean Territory","","","","","","",NA +34,"brn","Brunei Darussalam","Brunei","Negara Brunei Darussalam","","","","",NA +35,"bgr","Bulgaria","","","","","","",NA +36,"bfa","Burkina Faso","","","","","","",NA +37,"bdi","Burundi","Republic of Burundi","","","","","",NA +38,"khm","Cambodia","Kingdom of Cambodia","","","","","",NA +39,"cmr","Cameroon","Republic of Cameroon","","","","","",NA +40,"can","Canada","","","","","","",NA +41,"cpv","Cape Verde","Republic of Cape Verde","","","","","",NA +42,"cym","Cayman Islands","","","","","","",NA +43,"caf","Central African Republic","Central African Rep.","","","","","",NA +44,"tcd","Chad","Republic of Chad","","","","","",NA +250,"","Channel Islands","","","","","","",NA +45,"chl","Chile","Republic of Chile","","","","","",NA +46,"chn","China","People's Republic of China","PRC","","","","",NA +47,"","Christmas Island","Territory of Christmas Island","","","","","",NA +256,"clp","Clipperton Island","","","","","","",NA +48,"","Cocos (Keeling) Islands","Territory of Cocos (Keeling) Islands","Keeling Islands","Cocos Islands","","","",NA +49,"col","Colombia","Republic of Colombia","","","","","",NA +50,"com","Comoros","Federal Islamic Republic of the Comoros","","","","","",NA +51,"cog","Congo","Congo (Brazzaville)","Republic of the Congo","Congo, Republic of the","The Republic of the Congo","Congo, Rep.","Republic of Congo","Congo, Republic of" +52,"cod","Congo, The Democratic Republic of the","Democratic Republic of the Congo","Congo (Kinshasa)","Congo, Democratic Republic of the","The Democratic Republic of the Congo","Congo, Dem. Rep.","Democratic Republic of Congo","Congo, Democratic Republic of" +53,"cok","Cook Islands","","","","","","",NA +257,"","Coral Sea Islands","Coral Sea Islands Territory","","","","","",NA +54,"cri","Costa Rica","Republic of Costa Rica","","","","","",NA +55,"civ","Cote d'Ivoire","Republic of Cote D'Ivoire","Ivory Coast","Cote d Ivoire","","","",NA +56,"hrv","Croatia","Republic of Croatia","","","","","",NA +57,"cub","Cuba","Republic of Cuba","","","","","",NA +58,"cuw","Curacao","","","","","","",NA +59,"cyp","Cyprus","Republic of Cyprus","","","","","",NA +60,"cze","Czech Republic","","","","","","",NA +61,"dnk","Denmark","Kingdom of Denmark","","","","","",NA +62,"dji","Djibouti","Republic of Djibouti","","","","","",NA +63,"dma","Dominica","Commonwealth of Dominica","","","","","",NA +64,"dom","Dominican Republic","","","","","","",NA +65,"ecu","Ecuador","Republic of Ecuador","","","","","",NA +66,"egy","Egypt","Arab Republic of Egypt","Egypt, Arab Rep.","","","","",NA +67,"slv","El Salvador","Republic of El Salvador","","","","","",NA +68,"gnq","Equatorial Guinea","Republic of Equatorial Guinea","","","","","",NA +69,"eri","Eritrea","State of Eritrea","","","","","",NA +70,"est","Estonia","Republic of Estonia","","","","","",NA +71,"eth","Ethiopia","Federal Democratic Republic of Ethiopia","","","","","",NA +258,"","Europa Island","","","","","","",NA +279,"","European Union","","","","","","",NA +72,"flk","Falkland Islands (Malvinas)","Falkland Islands (Islas Malvinas)","","","","","",NA +73,"fro","Faroe Islands","Faeroe Islands","","","","","",NA +74,"fji","Fiji","Republic of the Fiji Islands","","","","","",NA +75,"fin","Finland","Republic of Finland","","","","","",NA +76,"fra","France","French Republic","France (metropolitan)","","","","",NA +77,"guf","French Guiana","Department of Guiana","French Guyana","","","","",NA +78,"pyf","French Polynesia","Territory of French Polynesia","","","","","",NA +79,"atf","French Southern Territories","French Southern and Antarctic Lands","Territory of the French Southern and Antarctic Lands","","","","",NA +80,"gab","Gabon","Gabonese Republic","","","","","",NA +81,"gmb","Gambia","Gambia, The","Republic of the Gambia","The Gambia","","","",NA +259,"gaza","Gaza Strip","Gaza","","","","","",NA +82,"geo","Georgia","","","","","","",NA +83,"deu","Germany","Federal Republic of Germany","","","","","",NA +84,"gha","Ghana","Republic of Ghana","","","","","",NA +85,"gib","Gibraltar","","","","","","",NA +260,"","Glorioso Islands","","","","","","",NA +86,"grc","Greece","Hellenic Republic","","","","","",NA +87,"grl","Greenland","","","","","","",NA +88,"grd","Grenada","","","","","","",NA +89,"glp","Guadeloupe","Department of Guadeloupe","France, Guadeloupe","","","","",NA +90,"gum","Guam","Territory of Guam","","","","","",NA +91,"gtm","Guatemala","Republic of Guatemala","","","","","",NA +92,"ggy","Guernsey","Bailiwick of Guernsey","","","","","",NA +93,"gin","Guinea","Republic of Guinea","","","","","",NA +94,"gnb","Guinea-Bissau","Republic of Guinea-Bissau","Guinea Bissau","","","","",NA +95,"guy","Guyana","Co-operative Republic of Guyana","","","","","",NA +96,"hti","Haiti","Republic of Haiti","","","","","",NA +97,"","Heard Island and Mcdonald Islands","Territory of Heard Island and McDonald Islands","","","","","",NA +98,"vat","Holy See (Vatican City State)","Holy See","Vatican City","State of the Vatican City","Holy See (Vatican City)","","",NA +99,"hnd","Honduras","Republic of Honduras","","","","","",NA +100,"hkg","Hong Kong","China, Hong Kong Special Administrative Region","Hong Kong S.A.R.","Hong Kong Special Administrative Region","Hong Kong Special Administrative Region of China","Hong Kong SAR, China","",NA +261,"","Howland Island","","","","","","",NA +101,"hun","Hungary","Republic of Hungary","","","","","",NA +102,"isl","Iceland","Republic of Iceland","","","","","",NA +103,"ind","India","Republic of India","","","","","",NA +104,"idn","Indonesia","Republic of Indonesia","","","","","",NA +105,"irn","Iran, Islamic Republic of","Iran (Islamic Republic of)","Iran","Islamic Republic of Iran","Iran, Islamic Rep.","","",NA +106,"irq","Iraq","Republic of Iraq","","","","","",NA +107,"irl","Ireland","","","","","","",NA +108,"imn","Isle of Man","","","","","","",NA +109,"isr","Israel","State of Israel","","","","","",NA +110,"ita","Italy","Italian Republic","","","","","",NA +111,"jam","Jamaica","","","","","","",NA +262,"","Jan Mayen","","","","","","",NA +112,"jpn","Japan","","","","","","",NA +263,"","Jarvis Island","","","","","","",NA +113,"jey","Jersey","Bailiwick of Jersey","","","","","",NA +264,"","Johnston Atoll","","","","","","",NA +114,"jor","Jordan","Hashemite Kingdom of Jordan","","","","","",NA +265,"","Juan De Nova Island","","","","","","",NA +115,"kaz","Kazakhstan","Republic of Kazakhstan","Kazakstan","","","","",NA +116,"ken","Kenya","Republic of Kenya","","","","","",NA +266,"","Kingman Reef","","","","","","",NA +117,"kir","Kiribati","Republic of Kiribati","","","","","",NA +118,"prk","Korea, Democratic People's Republic of","Democratic People's Republic of Korea","Korea, North","North Korea","Korea, Dem. Rep.","Korea, Democratic Republic of","",NA +119,"kor","Korea, Republic of","Republic of Korea","Korea, South","South Korea","Korea","Korea, Rep.","",NA +282,"kos","Kosovo","","","","","","",NA +120,"kwt","Kuwait","State of Kuwait","","","","","",NA +121,"kgz","Kyrgyzstan","Kyrgyz Republic","","","","","",NA +122,"lao","Lao People's Democratic Republic","Laos","Lao PDR","","","","",NA +123,"lva","Latvia","Republic of Latvia","","","","","",NA +124,"lbn","Lebanon","Lebanese Republic","","","","","",NA +125,"lso","Lesotho","Republic of Lesotho","","","","","",NA +126,"lbr","Liberia","Republic of Liberia","","","","","",NA +127,"lby","Libya","Great Socialist People's Libyan Arab Jamahiriya","","","","","",NA +128,"lie","Liechtenstein","Principality of Liechtenstein","","","","","",NA +129,"ltu","Lithuania","Republic of Lithuania","","","","","",NA +130,"lux","Luxembourg","Grand Duchy of Luxembourg","","","","","",NA +131,"mac","Macao","China, Macao Special Administrative Region","Macau S.A.R","Macau Special Administrative Region","Macau S.A.R.","Macau","Macao Special Administrative Region of China","Macao SAR, China " +132,"mkd","Macedonia, The Former Yugoslav Republic of","The former Yugoslav Republic of Macedonia","Macedonia","Republic of Macedonia","Macedonia, Former Yugoslav Republic of","Macedonia, FYR","FYR Macedonia",NA +133,"mdg","Madagascar","Republic of Madagascar","","","","","",NA +134,"mwi","Malawi","Republic of Malawi","","","","","",NA +135,"mys","Malaysia","","","","","","",NA +136,"mdv","Maldives","Republic of Maldives","","","","","",NA +137,"mli","Mali","Republic of Mali","","","","","",NA +138,"mlt","Malta","Republic of Malta","","","","","",NA +139,"mhl","Marshall Islands","Republic of the Marshall Islands","","","","","",NA +140,"mtq","Martinique","Department of Martinique","France, Martinique","","","","",NA +141,"mrt","Mauritania","Islamic Republic of Mauritania","","","","","",NA +142,"mus","Mauritius","Republic of Mauritius","","","","","",NA +143,"myt","Mayotte","Territorial Collectivity of Mayotte","","","","","",NA +144,"mex","Mexico","United Mexican States","","","","","",NA +145,"fsm","Micronesia, Federated States of","Micronesia (Federated States of)","Federated States of Micronesia","Micronesia, Fed. States","Micronesia, Fed. Sts. ","","",NA +267,"","Midway Islands","","","","","","",NA +146,"mda","Moldova, Republic of","Republic of Moldova","Moldova","","","","",NA +147,"mco","Monaco","Principality of Monaco","","","","","",NA +148,"mng","Mongolia","","","","","","",NA +149,"mne","Montenegro","","","","","","",NA +150,"msr","Montserrat","","","","","","",NA +151,"mar","Morocco","Kingdom of Morocco","","","","","",NA +152,"moz","Mozambique","Republic of Mozambique","","","","","",NA +153,"mmr","Myanmar","Burma","Union of Burma","","","","",NA +154,"nam","Namibia","Republic of Namibia","","","","","",NA +155,"nru","Nauru","Republic of Nauru","","","","","",NA +268,"","Navassa Island","","","","","","",NA +156,"npl","Nepal","Kingdom of Nepal","","","","","",NA +157,"nld","Netherlands","Kingdom of the Netherlands","The Netherlands","","","","",NA +269,"","Netherlands Antilles","","","","","","",NA +158,"ncl","New Caledonia","Territory of New Caledonia and Dependencies","","","","","",NA +159,"nzl","New Zealand","","","","","","",NA +160,"nic","Nicaragua","Republic of Nicaragua","","","","","",NA +161,"ner","Niger","Republic of Niger","","","","","",NA +162,"nga","Nigeria","Federal Republic of Nigeria","","","","","",NA +163,"niu","Niue","","","","","","",NA +164,"nfk","Norfolk Island","Territory of Norfolk Island","","","","","",NA +165,"mnp","Northern Mariana Islands","Commonwealth of the Northern Mariana Islands","","","","","",NA +166,"nor","Norway","Kingdom of Norway","","","","","",NA +167,"omn","Oman","Sultanate of Oman","","","","","",NA +168,"pak","Pakistan","Islamic Republic of Pakistan","","","","","",NA +169,"plw","Palau","Republic of Palau","","","","","",NA +270,"","Palmyra Atoll","","","","","","",NA +171,"pan","Panama","Republic of Panama","","","","","",NA +172,"png","Papua New Guinea","Independent State of Papua New Guinea","","","","","",NA +271,"","Paracel Islands","","","","","","",NA +173,"pry","Paraguay","Republic of Paraguay","","","","","",NA +174,"per","Peru","Republic of Peru","","","","","",NA +175,"phl","Philippines","Republic of the Philippines","","","","","",NA +176,"pcn","Pitcairn","Pitcairn Islands","Pitcairn, Henderson, Ducie and Oeno Islands","Pitcairn Island","","","",NA +177,"pol","Poland","Republic of Poland","","","","","",NA +178,"prt","Portugal","Portuguese Republic","","","","","",NA +281,"","Portuguese Timor","","","","","","",NA +179,"pri","Puerto Rico","Commonwealth of Puerto Rico","","","","","",NA +180,"qat","Qatar","State of Qatar","","","","","",NA +181,"reu","Reunion","Department of Reunion","","","","","",NA +182,"rou","Romania","","","","","","",NA +183,"rus","Russian Federation","Russia","","","","","",NA +184,"rwa","Rwanda","Rwandese Republic","","","","","",NA +185,"blm","Saint Barthelemy","Saint-Barthelemy","","","","","",NA +186,"shn","Saint Helena, Ascension and Tristan da Cunha","Saint Helena","St. Helena","","","","",NA +187,"kna","Saint Kitts and Nevis","Federation of Saint Kitts and Nevis","St. Kitts-Nevis","St. Kitts and Nevis","St. Kitts & Nevis","Saint Kitts & Nevis","",NA +188,"lca","Saint Lucia","St. Lucia","","","","","",NA +189,"maf","Saint Martin (French part)","Saint-Martin (French part)","Saint-Martin","Saint Martin","St. Martin (French part) ","","",NA +190,"spm","Saint Pierre and Miquelon","Territorial Collectivity of Saint Pierre and Miquelon","","","","","",NA +191,"vct","Saint Vincent and the Grenadines","St.Vincent & Grenadines","St. Vincent and the Grenadines","","","","",NA +192,"wsm","Samoa","Independent State of Samoa","","","","","",NA +193,"smr","San Marino","Republic of San Marino","","","","","",NA +194,"stp","Sao Tome and Principe","Democratic Republic of Sao Tome and Principe","Sao Tome & Principe","","","","",NA +251,"","Sark","","","","","","",NA +195,"sau","Saudi Arabia","Kingdom of Saudi Arabia","","","","","",NA +196,"sen","Senegal","Republic of Senegal","","","","","",NA +197,"srb","Serbia","","","","","","",NA +252,"","Serbia and Montenegro","","","","","","",NA +198,"syc","Seychelles","Republic of Seychelles","","","","","",NA +199,"sle","Sierra Leone","Republic of Sierra Leone","","","","","",NA +200,"sgp","Singapore","Republic of Singapore","","","","","",NA +201,"sxm","Sint Maarten (Dutch part)","","","","","","",NA +202,"svk","Slovakia","Slovak Republic","","","","","",NA +203,"svn","Slovenia","Republic of Slovenia","","","","","",NA +204,"slb","Solomon Islands","","","","","","",NA +205,"som","Somalia","","","","","","",NA +206,"zaf","South Africa","Republic of South Africa","South African Republic","","","","",NA +207,"","South Georgia and the South Sandwich Islands","South Georgia and the Islands","","","","","",NA +208,"ssd","South Sudan","","","","","","",NA +280,"","Soviet Union","","","","","","",NA +209,"esp","Spain","Kingdom of Spain","","","","","",NA +272,"","Spratly Islands","","","","","","",NA +210,"lka","Sri Lanka","Democratic Socialist Republic of Sri Lanka","","","","","",NA +211,"sdn","Sudan","Republic of the Sudan","","","","","",NA +212,"sur","Suriname","Republic of Suriname","","","","","",NA +273,"","Svalbard","","","","","","",NA +213,"sjm","Svalbard and Jan Mayen","Svalbard and Jan Mayen Islands","","","","","",NA +214,"swz","Swaziland","Kingdom of Swaziland","","","","","",NA +215,"swe","Sweden","Kingdom of Sweden","","","","","",NA +216,"che","Switzerland","Swiss Confederation","","","","","",NA +217,"syr","Syrian Arab Republic","Syria","Golan Heights (Israeli-occupied)","","","","",NA +218,"twn","Taiwan, Province of China","Taiwan","Chinese Taipei","Republic of China","ROC","","",NA +219,"tjk","Tajikistan","Republic of Tajikistan","","","","","",NA +220,"tza","Tanzania, United Republic of","United Republic of Tanzania","Tanzania","","","","",NA +221,"tha","Thailand","Kingdom of Thailand","","","","","",NA +222,"tls","Timor-Leste","East Timor","","","","","",NA +223,"tgo","Togo","Togolese Republic","","","","","",NA +224,"tkl","Tokelau","","","","","","",NA +225,"ton","Tonga","Kingdom of Tonga","","","","","",NA +226,"tto","Trinidad and Tobago","Republic of Trinidad and Tobago","","","","","",NA +274,"","Tromelin Island","","","","","","",NA +227,"tun","Tunisia","Republic of Tunisia","","","","","",NA +228,"tur","Turkey","Republic of Turkey","","","","","",NA +229,"tkm","Turkmenistan","","","","","","",NA +230,"tca","Turks and Caicos Islands","","","","","","",NA +231,"tuv","Tuvalu","","","","","","",NA +232,"uga","Uganda","","","","","","",NA +233,"ukr","Ukraine","","","","","","",NA +234,"are","United Arab Emirates","","","","","","",NA +235,"gbr","United Kingdom","United Kingdom of Great Britain and Northern Ireland","Great Britain","UK","","","",NA +236,"usa","United States","United States of America","US","USA","U.S.A.","U.S.","",NA +237,"umi","United States Minor Outlying Islands","","","","","","",NA +238,"ury","Uruguay","Oriental Republic of Uruguay","","","","","",NA +239,"uzb","Uzbekistan","Republic of Uzbekistan","","","","","",NA +240,"vut","Vanuatu","Republic of Vanuatu","","","","","",NA +241,"ven","Venezuela, Bolivarian Republic of","Venezuela (Bolivarian Republic of)","Venezuela","Bolivarian Republic of Venezuela","Venezuela, RB","","",NA +242,"vnm","Viet Nam","Vietnam","Socialist Republic of Vietnam","","","","",NA +243,"vgb","Virgin Islands, British","British Virgin Islands","Virgin Islands (UK)","","","","",NA +244,"vir","Virgin Islands, U.S.","United States Virgin Islands","Virgin Islands","Virgin Islands of the United States","Virgin Islands (US)","Virgin Islands (U.S.)","",NA +275,"","Wake Atoll","","","","","","",NA +245,"wlf","Wallis and Futuna","Wallis and Futuna Islands","Territory of the Wallis and Futuna Islands","","","","",NA +276,"pse","Palestine", "West Bank","West Bank and Gaza","Palestinian Territory, Occupied","Occupied Palestinian Territory","","",NA +246,"esh","Western Sahara","","","","","","",NA +247,"yem","Yemen","Republic of Yemen","Yemen, Rep.","","","","",NA +248,"zmb","Zambia","Republic of Zambia","","","","","",NA +249,"zwe","Zimbabwe","Republic of Zimbabwe","","","","","",NA diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/country_aliases.csv b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/country_aliases.csv new file mode 100644 index 000000000..3acfe87d8 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/country_aliases.csv @@ -0,0 +1,305 @@ +country_code,potential_name +AFG,Afghanistan +ALA,Aland Islands +ALA,Åland Islands +ALB,Albania +DZA,Algeria +ASM,American Samoa +AND,Andorra +AGO,Angola +AIA,Anguilla +ATA,Antarctica +ATA,French Southern and Antarctic Lands +ATG,Antigua and Barbuda +ARG,Argentina +ARM,Armenia +ABW,Aruba +AUS,Australia +AUT,Austria +AZE,Azerbaijan +BHS,Bahamas +BHR,Bahrain +BGD,Bangladesh +BRB,Barbados +BLR,Belarus +BEL,Belgium +BLZ,Belize +BEN,Benin +BMU,Bermuda +BTN,Bhutan +BOL,Bolivia +BOL,Bolivia (Plurinational State of) +BIH,Bosnia and Herzegovina +BWA,Botswana +BVT,Bouvet Island +BRA,Brazil +VGB,British Virgin Islands +IOT,British Indian Ocean Territory +BRN,Brunei Darussalam +BGR,Bulgaria +BFA,Burkina Faso +BDI,Burundi +KHM,Cambodia +CMR,Cameroon +CMR,Cameroun +CMR,CAM +CAN,Canada +CPV,Cape Verde +CPV,Cabo Verde +CYM,Cayman Islands +CAF,Central African Republic +TCD,Chad +CHL,Chile +CHN,China +HKG,"Hong Kong, SAR China" +HKG,Hong Kong +MAC,"Macao, SAR China" +MAC,Macao +MAC,Macau +CXR,Christmas Island +CCK,Cocos (Keeling) Islands +COL,Colombia +COM,Comoros +COG,Congo (Brazzaville) +COD,"Congo, (Kinshasa)" +COD,DRC +COD,Democratic Republic of the Congo +COD,Democratic Republic of Congo +COK,Cook Islands +CRI,Costa Rica +CIV,Cote d'Ivoire +CIV,C?_te d'Ivoire +CIV,C\314\253te d'Ivoire +CIV,C_te d'Ivoire +CIV,Cte d'Ivoire +CIV,C\u00f4te d'Ivoire +CIV,Ivory Coast +HRV,Croatia +CUB,Cuba +CYP,Cyprus +CZE,Czech Republic +CZE,Czechia +DNK,Denmark +DJI,Djibouti +DMA,Dominica +DOM,Dominican Republic +DOM,Dom. Rep. +ECU,Ecuador +EGY,Egypt +SLV,El Salvador +GNQ,Equatorial Guinea +ERI,Eritrea +EST,Estonia +ETH,Ethiopia +FLK,Falkland Islands (Malvinas) +FRO,Faroe Islands +FJI,Fiji +FIN,Finland +FRA,France +GUF,French Guiana +PYF,French Polynesia +ATF,French Southern Territories +GAB,Gabon +GMB,Gambia +GEO,Georgia +DEU,Germany +GHA,Ghana +GIB,Gibraltar +GRC,Greece +GRL,Greenland +GRD,Grenada +GLP,Guadeloupe +GUM,Guam +GTM,Guatemala +GGY,Guernsey +GIN,Guinea +GNB,Guinea-Bissau +GNB,Guinea Bissau +GUY,Guyana +HTI,Haiti +HMD,Heard and Mcdonald Islands +HMD,Heard Island and McDonald Islands +VAT,Holy See (Vatican City State) +VAT,Holy See (Vatican City) +HND,Honduras +HUN,Hungary +ISL,Iceland +IND,India +IDN,Indonesia +IRN,"Iran, Islamic Republic of" +IRN,Iran (Islamic Republic of) +IRQ,Iraq +IRL,Ireland +IMN,Isle of Man +ISR,Israel +ITA,Italy +JAM,Jamaica +JPN,Japan +JEY,Jersey +JOR,Jordan +KAZ,Kazakhstan +KEN,Kenya +KIR,Kiribati +PRK,Korea (North) +PRK,Democratic People's Republic of Korea +PRK,"Korea, Democratic People's Republic of" +KOR,Korea (South) +KOR,Republic of Korea +KOR,"Korea, Republic of" +KWT,Kuwait +KGZ,Kyrgyzstan +LAO,Lao PDR +LAO,Lao People's Democratic Republic +LVA,Latvia +LBN,Lebanon +LSO,Lesotho +LBR,Liberia +LBY,Libya +LBY,Libyan Arab Jamahiriya +LIE,Liechtenstein +LTU,Lithuania +LUX,Luxembourg +MKD,"Macedonia, Republic of" +MKD,The former Yugoslav Republic of Macedonia +MDG,Madagascar +MWI,Malawi +MYS,Malaysia +MDV,Maldives +MLI,Mali +MLT,Malta +MHL,Marshall Islands +MTQ,Martinique +MRT,Mauritania +MUS,Mauritius +MYT,Mayotte +MEX,Mexico +FSM,"Micronesia, Federated States of" +FSM,Micronesia (Federated States of) +MDA,Moldova +MDA,Republic of Moldova +MCO,Monaco +MNG,Mongolia +MNE,Montenegro +MSR,Montserrat +MAR,Morocco +MOZ,Mozambique +MMR,Myanmar +MMR,Burma +NAM,Namibia +NRU,Nauru +NPL,Nepal +NLD,Netherlands +ANT,Netherlands Antilles +NCL,New Caledonia +NZL,New Zealand +NIC,Nicaragua +NER,Niger +NGA,Nigeria +NIU,Niue +NFK,Norfolk Island +MNP,Northern Mariana Islands +NOR,Norway +OMN,Oman +PAK,Pakistan +PLW,Palau +PSE,Palestinian Territory +PSE,Palestine +PAN,Panama +PNG,Papua New Guinea +PRY,Paraguay +PER,Peru +PHL,Philippines +PCN,Pitcairn +PCN,Pitcairn Islands +POL,Poland +PRT,Portugal +PRI,Puerto Rico +QAT,Qatar +REU,R͂??union +REU,Reunion +ROU,Romania +RUS,Russian Federation +RUS,Russia +RWA,Rwanda +BLM,Saint-Barth͂??lemy +BLM,Saint Barthelemy +SHN,Saint Helena +KNA,Saint Kitts and Nevis +LCA,Saint Lucia +MAF,Saint-Martin (French part) +MAF,Saint Martin +SPM,Saint Pierre and Miquelon +VCT,Saint Vincent and Grenadines +VCT,Saint Vincent and the Grenadines +WSM,Samoa +SMR,San Marino +STP,Sao Tome and Principe +SAU,Saudi Arabia +SEN,Senegal +SRB,Serbia +SYC,Seychelles +SLE,Sierra Leone +SGP,Singapore +SVK,Slovakia +SVN,Slovenia +SLB,Solomon Islands +SOM,Somalia +ZAF,South Africa +SGS,South Georgia and the South Sandwich Islands +SGS,South Georgia South Sandwich Islands +SSD,South Sudan +ESP,Spain +LKA,Sri Lanka +SDN,Sudan +SUR,Suriname +SJM,Svalbard and Jan Mayen Islands +SJM,Svalbard +SWZ,Swaziland +SWE,Sweden +CHE,Switzerland +SYR,Syrian Arab Republic (Syria) +SYR,Syrian Arab Republic +SYR,Syria +TWN,"Taiwan, Republic of China" +TWN,Taiwan +TJK,Tajikistan +TZA,"Tanzania, United Republic of" +TZA,Tanzania +TZA,United Republic of Tanzania +THA,Thailand +TLS,Timor-Leste +TGO,Togo +TKL,Tokelau +TON,Tonga +TTO,Trinidad and Tobago +TUN,Tunisia +TUR,Turkey +TKM,Turkmenistan +TCA,Turks and Caicos Islands +TUV,Tuvalu +UGA,Uganda +UKR,Ukraine +ARE,United Arab Emirates +GBR,United Kingdom +GBR,United Kingdom of Great Britain and Northern Ireland +USA,United States of America +USA,United States +UMI,US Minor Outlying Islands +UMI,United States Minor Outlying Islands +URY,Uruguay +UZB,Uzbekistan +VUT,Vanuatu +VEN,Venezuela (Bolivarian Republic) +VEN,Venezuela (Bolivarian Republic of) +VEN,Venezuela +VNM,Viet Nam +VIR,"Virgin Islands, US" +VIR,US Virgin Islands +VIR,United States Virgin Islands +WLF,Wallis and Futuna Islands +ESH,Western Sahara +YEM,Yemen +ZMB,Zambia +ZWE,Zimbabwe +COG,Congo +COG,Republic of Congo diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/country_worldpop_regions.csv b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/country_worldpop_regions.csv new file mode 100644 index 000000000..bedfb64dd --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/country_worldpop_regions.csv @@ -0,0 +1,128 @@ +"region","country","country_code","region_code" +"Africa","Algeria","DZA","AFR" +"Africa","Angola","AGO","AFR" +"Africa","Benin","BEN","AFR" +"Africa","Botswana","BWA","AFR" +"Africa","Burkina Faso","BFA","AFR" +"Africa","Burundi","BDI","AFR" +"Africa","Cameroon","CMR","AFR" +"Africa","Central African Republic","CAF","AFR" +"Africa","Chad","TCD","AFR" +"Africa","Congo","COG","AFR" +"Africa","Côte d'Ivoire","CIV","AFR" +"Africa","Democratic Republic of the Congo","COD","AFR" +"Africa","Djibouti","DJI","AFR" +"Africa","Egypt","EGY","AFR" +"Africa","Equatorial Guinea","GNQ","AFR" +"Africa","Eritrea","ERI","AFR" +"Africa","Ethiopia","ETH","AFR" +"Africa","Gabon","GAB","AFR" +"Africa","Gambia","GMB","AFR" +"Africa","Ghana","GHA","AFR" +"Africa","Guinea","GIN","AFR" +"Africa","Guinea-Bissau","GNB","AFR" +"Africa","Kenya","KEN","AFR" +"Africa","Lesotho","LSO","AFR" +"Africa","Liberia","LBR","AFR" +"Africa","Libya","LBY","AFR" +"Africa","Madagascar","MDG","AFR" +"Africa","Malawi","MWI","AFR" +"Africa","Mali","MLI","AFR" +"Africa","Mauritania","MRT","AFR" +"Africa","Morocco","MAR","AFR" +"Africa","Mozambique","MOZ","AFR" +"Africa","Namibia","NAM","AFR" +"Africa","Niger","NER","AFR" +"Africa","Nigeria","NGA","AFR" +"Africa","Rwanda","RWA","AFR" +"Africa","Senegal","SEN","AFR" +"Africa","Sierra Leone","SLE","AFR" +"Africa","Somalia","SOM","AFR" +"Africa","South Africa","ZAF","AFR" +"Africa","South Sudan","SSD","AFR" +"Africa","Sudan","SDN","AFR" +"Africa","Swaziland","SWZ","AFR" +"Africa","Togo","TGO","AFR" +"Africa","Tunisia","TUN","AFR" +"Africa","Uganda","UGA","AFR" +"Africa","United Republic of Tanzania","TZA","AFR" +"Africa","Western Sahara","ESH","AFR" +"Africa","Zambia","ZMB","AFR" +"Africa","Zimbabwe","ZWE","AFR" +"Latin America and the Caribbean","Antigua and Barbuda","ATG","LAC" +"Latin America and the Caribbean","Argentina","ARG","LAC" +"Latin America and the Caribbean","Belize","BLZ","LAC" +"Latin America and the Caribbean","Bolivia (Plurinational State of)","BOL","LAC" +"Latin America and the Caribbean","Brazil","BRA","LAC" +"Latin America and the Caribbean","Chile","CHL","LAC" +"Latin America and the Caribbean","Colombia","COL","LAC" +"Latin America and the Caribbean","Costa Rica","CRI","LAC" +"Latin America and the Caribbean","Cuba","CUB","LAC" +"Latin America and the Caribbean","Dominican Republic","DOM","LAC" +"Latin America and the Caribbean","Ecuador","ECU","LAC" +"Latin America and the Caribbean","El Salvador","SLV","LAC" +"Latin America and the Caribbean","French Guiana","GUF","LAC" +"Latin America and the Caribbean","Guatemala","GTM","LAC" +"Latin America and the Caribbean","Guyana","GUY","LAC" +"Latin America and the Caribbean","Haiti","HTI","LAC" +"Latin America and the Caribbean","Honduras","HND","LAC" +"Latin America and the Caribbean","Jamaica","JAM","LAC" +"Latin America and the Caribbean","Mexico","MEX","LAC" +"Latin America and the Caribbean","Nicaragua","NIC","LAC" +"Latin America and the Caribbean","Panama","PAN","LAC" +"Latin America and the Caribbean","Paraguay","PRY","LAC" +"Latin America and the Caribbean","Peru","PER","LAC" +"Latin America and the Caribbean","Puerto Rico","PRI","LAC" +"Latin America and the Caribbean","Suriname","SUR","LAC" +"Latin America and the Caribbean","Trinidad and Tobago","TTO","LAC" +"Latin America and the Caribbean","Uruguay","URY","LAC" +"Latin America and the Caribbean","Venezuela (Bolivarian Republic of)","VEN","LAC" +"Asia","Afghanistan","AFG","ASI" +"Asia","Armenia","ARM","ASI" +"Asia","Azerbaijan","AZE","ASI" +"Asia","Bangladesh","BGD","ASI" +"Asia","Bhutan","BTN","ASI" +"Asia","Brunei Darussalam","BRN","ASI" +"Asia","Cambodia","KHM","ASI" +"Asia","China","CHN","ASI" +"Asia","Democratic People's Republic of Korea","PRK","ASI" +"Asia","Georgia","GEO","ASI" +"Asia","India","IND","ASI" +"Asia","Indonesia","IDN","ASI" +"Asia","Iraq","IRQ","ASI" +"Asia","Japan","JPN","ASI" +"Asia","Kazakhstan","KAZ","ASI" +"Asia","Kyrgyzstan","KGZ","ASI" +"Asia","Lao People's Democratic Republic","LAO","ASI" +"Asia","Malaysia","MYS","ASI" +"Asia","Maldives","MDV","ASI" +"Asia","Mongolia","MNG","ASI" +"Asia","Myanmar","MMR","ASI" +"Asia","Nepal","NPL","ASI" +"Asia","Oman","OMN","ASI" +"Asia","Pakistan","PAK","ASI" +"Asia","Philippines","PHL","ASI" +"Asia","Republic of Korea","KOR","ASI" +"Asia","Saudi Arabia","SAU","ASI" +"Asia","Singapore","SGP","ASI" +"Asia","Sri Lanka","LKA","ASI" +"Asia","State of Palestine","PSE","ASI" +"Asia","Syrian Arab Republic","SYR","ASI" +"Asia","Taiwan","TWN","ASI" +"Asia","Tajikistan","TJK","ASI" +"Asia","Thailand","THA","ASI" +"Asia","Timor-Leste","TLS","ASI" +"Asia","Uzbekistan","UZB","ASI" +"Asia","Viet Nam","VNM","ASI" +"Asia","Yemen","YEM","ASI" +"Europe","Ukraine","UKR","EUR" +"Oceania","Fiji","FJI","OCE" +"Oceania","Kiribati","KIR","OCE" +"Oceania","Marshall Islands","MHL","OCE" +"Oceania","Micronesia (Federated States of)","FSM","OCE" +"Oceania","Palau","PLW","OCE" +"Oceania","Papua New Guinea","PNG","OCE" +"Oceania","Samoa","WSM","OCE" +"Oceania","Solomon Islands","SLB","OCE" +"Oceania","Tonga","TON","OCE" +"Oceania","Vanuatu","VUT","OCE" diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/iso31662_codes.csv b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/iso31662_codes.csv new file mode 100644 index 000000000..c749b5cbc --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/iso31662_codes.csv @@ -0,0 +1,4800 @@ +"ISO3","ISO2","Code","Name","Type","Parent","ISO_level" +"AND","AD","AD-02","Canillo","Parish","Andorra",2 +"AND","AD","AD-03","Encamp","Parish","Andorra",2 +"AND","AD","AD-04","La Massana","Parish","Andorra",2 +"AND","AD","AD-05","Ordino","Parish","Andorra",2 +"AND","AD","AD-06","Sant Julià de Lòria","Parish","Andorra",2 +"AND","AD","AD-07","Andorra la Vella","Parish","Andorra",2 +"AND","AD","AD-08","Escaldes-Engordany","Parish","Andorra",2 +"ARE","AE","AE-AJ","Ajman","Emirate","United Arab Emirates",2 +"ARE","AE","AE-AZ","Abu Dhabi","Emirate","United Arab Emirates",2 +"ARE","AE","AE-DU","Dubai","Emirate","United Arab Emirates",2 +"ARE","AE","AE-FU","Al Fujayrah","Emirate","United Arab Emirates",2 +"ARE","AE","AE-RK","Ra’s al Khaymah","Emirate","United Arab Emirates",2 +"ARE","AE","AE-SH","Ash Shāriqah","Emirate","United Arab Emirates",2 +"ARE","AE","AE-UQ","Umm al Qaywayn","Emirate","United Arab Emirates",2 +"AFG","AF","AF-BAL","Balkh","Province","Afghanistan",2 +"AFG","AF","AF-BAM","Bāmyān","Province","Afghanistan",2 +"AFG","AF","AF-BDG","Bādghīs","Province","Afghanistan",2 +"AFG","AF","AF-BDS","Badakhshān","Province","Afghanistan",2 +"AFG","AF","AF-BGL","Baghlān","Province","Afghanistan",2 +"AFG","AF","AF-DAY","Dāykundī","Province","Afghanistan",2 +"AFG","AF","AF-FRA","Farāh","Province","Afghanistan",2 +"AFG","AF","AF-FYB","Fāryāb","Province","Afghanistan",2 +"AFG","AF","AF-GHA","Ghaznī","Province","Afghanistan",2 +"AFG","AF","AF-GHO","Ghōr","Province","Afghanistan",2 +"AFG","AF","AF-HEL","Helmand","Province","Afghanistan",2 +"AFG","AF","AF-HER","Herāt","Province","Afghanistan",2 +"AFG","AF","AF-JOW","Jowzjān","Province","Afghanistan",2 +"AFG","AF","AF-KAB","Kābul","Province","Afghanistan",2 +"AFG","AF","AF-KAN","Kandahār","Province","Afghanistan",2 +"AFG","AF","AF-KAP","Kāpīsā","Province","Afghanistan",2 +"AFG","AF","AF-KDZ","Kunduz","Province","Afghanistan",2 +"AFG","AF","AF-KHO","Khōst","Province","Afghanistan",2 +"AFG","AF","AF-KNR","Kunar","Province","Afghanistan",2 +"AFG","AF","AF-LAG","Laghmān","Province","Afghanistan",2 +"AFG","AF","AF-LOG","Lōgar","Province","Afghanistan",2 +"AFG","AF","AF-NAN","Nangarhār","Province","Afghanistan",2 +"AFG","AF","AF-NIM","Nīmrōz","Province","Afghanistan",2 +"AFG","AF","AF-NUR","Nūristān","Province","Afghanistan",2 +"AFG","AF","AF-PAN","Panjshayr","Province","Afghanistan",2 +"AFG","AF","AF-PAR","Parwān","Province","Afghanistan",2 +"AFG","AF","AF-PIA","Paktiyā","Province","Afghanistan",2 +"AFG","AF","AF-PKA","Paktīkā","Province","Afghanistan",2 +"AFG","AF","AF-SAM","Samangān","Province","Afghanistan",2 +"AFG","AF","AF-SAR","Sar-e Pul","Province","Afghanistan",2 +"AFG","AF","AF-TAK","Takhār","Province","Afghanistan",2 +"AFG","AF","AF-URU","Uruzgān","Province","Afghanistan",2 +"AFG","AF","AF-WAR","Wardak","Province","Afghanistan",2 +"AFG","AF","AF-ZAB","Zābul","Province","Afghanistan",2 +"ATG","AG","AG-03","Saint George","Parish","Antigua and Barbuda",2 +"ATG","AG","AG-04","Saint John","Parish","Antigua and Barbuda",2 +"ATG","AG","AG-05","Saint Mary","Parish","Antigua and Barbuda",2 +"ATG","AG","AG-06","Saint Paul","Parish","Antigua and Barbuda",2 +"ATG","AG","AG-07","Saint Peter","Parish","Antigua and Barbuda",2 +"ATG","AG","AG-08","Saint Philip","Parish","Antigua and Barbuda",2 +"ATG","AG","AG-10","Barbuda","Dependency","Antigua and Barbuda",2 +"ATG","AG","AG-11","Redonda","Dependency","Antigua and Barbuda",2 +"ALB","AL","AL-01","Berat","County","Albania",2 +"ALB","AL","AL-02","Durrës","County","Albania",2 +"ALB","AL","AL-03","Elbasan","County","Albania",2 +"ALB","AL","AL-04","Fier","County","Albania",2 +"ALB","AL","AL-05","Gjirokastër","County","Albania",2 +"ALB","AL","AL-06","Korçë","County","Albania",2 +"ALB","AL","AL-07","Kukës","County","Albania",2 +"ALB","AL","AL-08","Lezhë","County","Albania",2 +"ALB","AL","AL-09","Dibër","County","Albania",2 +"ALB","AL","AL-10","Shkodër","County","Albania",2 +"ALB","AL","AL-11","Tiranë","County","Albania",2 +"ALB","AL","AL-12","Vlorë","County","Albania",2 +"ARM","AM","AM-AG","Aragacotn","Province","Armenia",2 +"ARM","AM","AM-AR","Ararat","Province","Armenia",2 +"ARM","AM","AM-AV","Armavir","Province","Armenia",2 +"ARM","AM","AM-ER","Erevan","Province","Armenia",2 +"ARM","AM","AM-GR","Gegarkunik'","Province","Armenia",2 +"ARM","AM","AM-KT","Kotayk'","Province","Armenia",2 +"ARM","AM","AM-LO","Lory","Province","Armenia",2 +"ARM","AM","AM-SH","Sirak","Province","Armenia",2 +"ARM","AM","AM-SU","Syunik'","Province","Armenia",2 +"ARM","AM","AM-TV","Tavus","Province","Armenia",2 +"ARM","AM","AM-VD","Vayoc Jor","Province","Armenia",2 +"AGO","AO","AO-BGO","Bengo","Province","Angola",2 +"AGO","AO","AO-BGU","Benguela","Province","Angola",2 +"AGO","AO","AO-BIE","Bié","Province","Angola",2 +"AGO","AO","AO-CAB","Cabinda","Province","Angola",2 +"AGO","AO","AO-CCU","Cuando-Cubango","Province","Angola",2 +"AGO","AO","AO-CNN","Cunene","Province","Angola",2 +"AGO","AO","AO-CNO","Cuanza Norte","Province","Angola",2 +"AGO","AO","AO-CUS","Cuanza Sul","Province","Angola",2 +"AGO","AO","AO-HUA","Huambo","Province","Angola",2 +"AGO","AO","AO-HUI","Huíla","Province","Angola",2 +"AGO","AO","AO-LNO","Lunda Norte","Province","Angola",2 +"AGO","AO","AO-LSU","Lunda Sul","Province","Angola",2 +"AGO","AO","AO-LUA","Luanda","Province","Angola",2 +"AGO","AO","AO-MAL","Malange","Province","Angola",2 +"AGO","AO","AO-MOX","Moxico","Province","Angola",2 +"AGO","AO","AO-NAM","Namibe","Province","Angola",2 +"AGO","AO","AO-UIG","Uíge","Province","Angola",2 +"AGO","AO","AO-ZAI","Zaire","Province","Angola",2 +"ARG","AR","AR-A","Salta","Province","Argentina",2 +"ARG","AR","AR-B","Buenos Aires","Province","Argentina",2 +"ARG","AR","AR-C","Ciudad Autónoma de Buenos Aires","City","Argentina",2 +"ARG","AR","AR-D","San Luis","Province","Argentina",2 +"ARG","AR","AR-E","Entre Rios","Province","Argentina",2 +"ARG","AR","AR-G","Santiago del Estero","Province","Argentina",2 +"ARG","AR","AR-H","Chaco","Province","Argentina",2 +"ARG","AR","AR-J","San Juan","Province","Argentina",2 +"ARG","AR","AR-K","Catamarca","Province","Argentina",2 +"ARG","AR","AR-L","La Pampa","Province","Argentina",2 +"ARG","AR","AR-M","Mendoza","Province","Argentina",2 +"ARG","AR","AR-N","Misiones","Province","Argentina",2 +"ARG","AR","AR-P","Formosa","Province","Argentina",2 +"ARG","AR","AR-Q","Neuquen","Province","Argentina",2 +"ARG","AR","AR-R","Rio Negro","Province","Argentina",2 +"ARG","AR","AR-S","Santa Fe","Province","Argentina",2 +"ARG","AR","AR-T","Tucuman","Province","Argentina",2 +"ARG","AR","AR-U","Chubut","Province","Argentina",2 +"ARG","AR","AR-V","Tierra del Fuego","Province","Argentina",2 +"ARG","AR","AR-W","Corrientes","Province","Argentina",2 +"ARG","AR","AR-X","Cordoba","Province","Argentina",2 +"ARG","AR","AR-Y","Jujuy","Province","Argentina",2 +"ARG","AR","AR-Z","Santa Cruz","Province","Argentina",2 +"AUT","AT","AT-1","Burgenland","State","Austria",2 +"AUT","AT","AT-2","Kärnten","State","Austria",2 +"AUT","AT","AT-3","Niederösterreich","State","Austria",2 +"AUT","AT","AT-4","Oberösterreich","State","Austria",2 +"AUT","AT","AT-5","Salzburg","State","Austria",2 +"AUT","AT","AT-6","Steiermark","State","Austria",2 +"AUT","AT","AT-7","Tirol","State","Austria",2 +"AUT","AT","AT-8","Vorarlberg","State","Austria",2 +"AUT","AT","AT-9","Wien","State","Austria",2 +"AUS","AU","AU-ACT","Australian Capital Territory","Territory","Australia",2 +"AUS","AU","AU-NSW","New South Wales","State","Australia",2 +"AUS","AU","AU-NT","Northern Territory","Territory","Australia",2 +"AUS","AU","AU-QLD","Queensland","State","Australia",2 +"AUS","AU","AU-SA","South Australia","State","Australia",2 +"AUS","AU","AU-TAS","Tasmania","State","Australia",2 +"AUS","AU","AU-VIC","Victoria","State","Australia",2 +"AUS","AU","AU-WA","Western Australia","State","Australia",2 +"AZE","AZ","AZ-ABS","Abşeron","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-AGA","Ağstafa","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-AGC","Ağcabədi","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-AGM","Ağdam","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-AGS","Ağdaş","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-AGU","Ağsu","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-AST","Astara","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-BA","Bakı","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-BAB","Babək","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-BAL","Balakən","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-BAR","Bərdə","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-BEY","Beyləqan","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-BIL","Biləsuvar","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-CAB","Cəbrayıl","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-CAL","Cəlilabab","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-CUL","Culfa","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-DAS","Daşkəsən","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-FUZ","Füzuli","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-GA","Gəncə","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-GAD","Gədəbəy","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-GOR","Goranboy","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-GOY","Göyçay","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-GYG","Göygöl","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-HAC","Hacıqabul","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-IMI","İmişli","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-ISM","İsmayıllı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-KAL","Kəlbəcər","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-KAN","Kǝngǝrli","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-KUR","Kürdəmir","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-LA","Lənkəran","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-LAC","Laçın","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-LAN","Lənkəran","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-LER","Lerik","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-MAS","Masallı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-MI","Mingəçevir","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-NA","Naftalan","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-NEF","Neftçala","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-NV","Naxçıvan","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-NX","Naxçıvan","Autonomous republic","Azerbaijan",2 +"AZE","AZ","AZ-OGU","Oğuz","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-ORD","Ordubad","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-QAB","Qəbələ","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-QAX","Qax","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-QAZ","Qazax","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-QBA","Quba","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-QBI","Qubadlı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-QOB","Qobustan","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-QUS","Qusar","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SA","Şəki","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-SAB","Sabirabad","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SAD","Sədərək","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SAH","Şahbuz","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SAK","Şəki","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SAL","Salyan","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SAR","Şərur","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SAT","Saatlı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SBN","Şabran","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SIY","Siyəzən","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SKR","Şəmkir","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SM","Sumqayıt","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-SMI","Şamaxı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SMX","Samux","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-SR","Şirvan","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-SUS","Şuşa","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-TAR","Tərtər","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-TOV","Tovuz","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-UCA","Ucar","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-XA","Xankəndi","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-XAC","Xaçmaz","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-XCI","Xocalı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-XIZ","Xızı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-XVD","Xocavənd","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-YAR","Yardımlı","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-YE","Yevlax","Municipality","Azerbaijan",2 +"AZE","AZ","AZ-YEV","Yevlax","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-ZAN","Zəngilan","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-ZAQ","Zaqatala","Rayon","Azerbaijan",2 +"AZE","AZ","AZ-ZAR","Zərdab","Rayon","Azerbaijan",2 +"BIH","BA","BA-01","Unsko-sanski kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-02","Posavski kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-03","Tuzlanski kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-04","Zeničko-dobojski kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-05","Bosansko-podrinjski kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-06","Srednjobosanski kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-07","Hercegovačko-neretvanski kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-08","Zapadnohercegovački kanton","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-09","Kanton Sarajevo","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-10","Kanton br. 10 (Livanjski kanton)","Canton","Bosnia and Herzegovina",2 +"BIH","BA","BA-BIH","Federacija Bosne i Hercegovine","Entity","Bosnia and Herzegovina",2 +"BIH","BA","BA-BRC","Brčko distrikt","District","Bosnia and Herzegovina",2 +"BIH","BA","BA-SRP","Republika Srpska","Entity","Bosnia and Herzegovina",2 +"BRB","BB","BB-01","Christ Church","Parish","Barbados",2 +"BRB","BB","BB-02","Saint Andrew","Parish","Barbados",2 +"BRB","BB","BB-03","Saint George","Parish","Barbados",2 +"BRB","BB","BB-04","Saint James","Parish","Barbados",2 +"BRB","BB","BB-05","Saint John","Parish","Barbados",2 +"BRB","BB","BB-06","Saint Joseph","Parish","Barbados",2 +"BRB","BB","BB-07","Saint Lucy","Parish","Barbados",2 +"BRB","BB","BB-08","Saint Michael","Parish","Barbados",2 +"BRB","BB","BB-09","Saint Peter","Parish","Barbados",2 +"BRB","BB","BB-10","Saint Philip","Parish","Barbados",2 +"BRB","BB","BB-11","Saint Thomas","Parish","Barbados",2 +"BGD","BD","BD-01","Bandarban","District","Bangladesh",2 +"BGD","BD","BD-02","Barguna","District","Bangladesh",2 +"BGD","BD","BD-03","Bogra","District","Bangladesh",2 +"BGD","BD","BD-04","Brahmanbaria","District","Bangladesh",2 +"BGD","BD","BD-05","Bagerhat","District","Bangladesh",2 +"BGD","BD","BD-06","Barisal","District","Bangladesh",2 +"BGD","BD","BD-07","Bhola","District","Bangladesh",2 +"BGD","BD","BD-08","Comilla","District","Bangladesh",2 +"BGD","BD","BD-09","Chandpur","District","Bangladesh",2 +"BGD","BD","BD-10","Chittagong","District","Bangladesh",2 +"BGD","BD","BD-11","Cox's Bazar","District","Bangladesh",2 +"BGD","BD","BD-12","Chuadanga","District","Bangladesh",2 +"BGD","BD","BD-13","Dhaka","District","Bangladesh",2 +"BGD","BD","BD-14","Dinajpur","District","Bangladesh",2 +"BGD","BD","BD-15","Faridpur","District","Bangladesh",2 +"BGD","BD","BD-16","Feni","District","Bangladesh",2 +"BGD","BD","BD-17","Gopalganj","District","Bangladesh",2 +"BGD","BD","BD-18","Gazipur","District","Bangladesh",2 +"BGD","BD","BD-19","Gaibandha","District","Bangladesh",2 +"BGD","BD","BD-20","Habiganj","District","Bangladesh",2 +"BGD","BD","BD-21","Jamalpur","District","Bangladesh",2 +"BGD","BD","BD-22","Jessore","District","Bangladesh",2 +"BGD","BD","BD-23","Jhenaidah","District","Bangladesh",2 +"BGD","BD","BD-24","Jaipurhat","District","Bangladesh",2 +"BGD","BD","BD-25","Jhalakati","District","Bangladesh",2 +"BGD","BD","BD-26","Kishorganj","District","Bangladesh",2 +"BGD","BD","BD-27","Khulna","District","Bangladesh",2 +"BGD","BD","BD-28","Kurigram","District","Bangladesh",2 +"BGD","BD","BD-29","Khagrachari","District","Bangladesh",2 +"BGD","BD","BD-30","Kushtia","District","Bangladesh",2 +"BGD","BD","BD-31","Lakshmipur","District","Bangladesh",2 +"BGD","BD","BD-32","Lalmonirhat","District","Bangladesh",2 +"BGD","BD","BD-33","Manikganj","District","Bangladesh",2 +"BGD","BD","BD-34","Mymensingh","District","Bangladesh",2 +"BGD","BD","BD-35","Munshiganj","District","Bangladesh",2 +"BGD","BD","BD-36","Madaripur","District","Bangladesh",2 +"BGD","BD","BD-37","Magura","District","Bangladesh",2 +"BGD","BD","BD-38","Moulvibazar","District","Bangladesh",2 +"BGD","BD","BD-39","Meherpur","District","Bangladesh",2 +"BGD","BD","BD-40","Narayanganj","District","Bangladesh",2 +"BGD","BD","BD-41","Netrakona","District","Bangladesh",2 +"BGD","BD","BD-42","Narsingdi","District","Bangladesh",2 +"BGD","BD","BD-43","Narail","District","Bangladesh",2 +"BGD","BD","BD-44","Natore","District","Bangladesh",2 +"BGD","BD","BD-45","Nawabganj","District","Bangladesh",2 +"BGD","BD","BD-46","Nilphamari","District","Bangladesh",2 +"BGD","BD","BD-47","Noakhali","District","Bangladesh",2 +"BGD","BD","BD-48","Naogaon","District","Bangladesh",2 +"BGD","BD","BD-49","Pabna","District","Bangladesh",2 +"BGD","BD","BD-50","Pirojpur","District","Bangladesh",2 +"BGD","BD","BD-51","Patuakhali","District","Bangladesh",2 +"BGD","BD","BD-52","Panchagarh","District","Bangladesh",2 +"BGD","BD","BD-53","Rajbari","District","Bangladesh",2 +"BGD","BD","BD-54","Rajshahi","District","Bangladesh",2 +"BGD","BD","BD-55","Rangpur","District","Bangladesh",2 +"BGD","BD","BD-56","Rangamati","District","Bangladesh",2 +"BGD","BD","BD-57","Sherpur","District","Bangladesh",2 +"BGD","BD","BD-58","Satkhira","District","Bangladesh",2 +"BGD","BD","BD-59","Sirajganj","District","Bangladesh",2 +"BGD","BD","BD-60","Sylhet","District","Bangladesh",2 +"BGD","BD","BD-61","Sunamganj","District","Bangladesh",2 +"BGD","BD","BD-62","Shariatpur","District","Bangladesh",2 +"BGD","BD","BD-63","Tangail","District","Bangladesh",2 +"BGD","BD","BD-64","Thakurgaon","District","Bangladesh",2 +"BGD","BD","BD-A","Barisal","Division","Bangladesh",2 +"BGD","BD","BD-B","Chittagong","Division","Bangladesh",2 +"BGD","BD","BD-C","Dhaka","Division","Bangladesh",2 +"BGD","BD","BD-D","Khulna","Division","Bangladesh",2 +"BGD","BD","BD-E","Rajshahi","Division","Bangladesh",2 +"BGD","BD","BD-F","Rangpur","Division","Bangladesh",2 +"BGD","BD","BD-G","Sylhet","Division","Bangladesh",2 +"BEL","BE","BE-BRU","Bruxelles-Capitale, Région de;Brussels Hoofdstedelijk Gewest","Region","Belgium",2 +"BEL","BE","BE-VAN","Antwerpen","Province","Belgium",2 +"BEL","BE","BE-VBR","Vlaams-Brabant","Province","Belgium",2 +"BEL","BE","BE-VLG","Vlaams Gewest","Region","Belgium",2 +"BEL","BE","BE-VLI","Limburg","Province","Belgium",2 +"BEL","BE","BE-VOV","Oost-Vlaanderen","Province","Belgium",2 +"BEL","BE","BE-VWV","West-Vlaanderen","Province","Belgium",2 +"BEL","BE","BE-WAL","wallonne, Région","Region","Belgium",2 +"BEL","BE","BE-WBR","Brabant wallon","Province","Belgium",2 +"BEL","BE","BE-WHT","Hainaut","Province","Belgium",2 +"BEL","BE","BE-WLG","Liège","Province","Belgium",2 +"BEL","BE","BE-WLX","Luxembourg","Province","Belgium",2 +"BEL","BE","BE-WNA","Namur","Province","Belgium",2 +"BFA","BF","BF-01","Boucle du Mouhoun","Region","Burkina Faso",2 +"BFA","BF","BF-02","Cascades","Region","Burkina Faso",2 +"BFA","BF","BF-03","Centre","Region","Burkina Faso",2 +"BFA","BF","BF-04","Centre-Est","Region","Burkina Faso",2 +"BFA","BF","BF-05","Centre-Nord","Region","Burkina Faso",2 +"BFA","BF","BF-06","Centre-Ouest","Region","Burkina Faso",2 +"BFA","BF","BF-07","Centre-Sud","Region","Burkina Faso",2 +"BFA","BF","BF-08","Est","Region","Burkina Faso",2 +"BFA","BF","BF-09","Hauts-Bassins","Region","Burkina Faso",2 +"BFA","BF","BF-10","Nord","Region","Burkina Faso",2 +"BFA","BF","BF-11","Plateau-Central","Region","Burkina Faso",2 +"BFA","BF","BF-12","Sahel","Region","Burkina Faso",2 +"BFA","BF","BF-13","Sud-Ouest","Region","Burkina Faso",2 +"BFA","BF","BF-BAL","Balé","Province","Burkina Faso",2 +"BFA","BF","BF-BAM","Bam","Province","Burkina Faso",2 +"BFA","BF","BF-BAN","Banwa","Province","Burkina Faso",2 +"BFA","BF","BF-BAZ","Bazèga","Province","Burkina Faso",2 +"BFA","BF","BF-BGR","Bougouriba","Province","Burkina Faso",2 +"BFA","BF","BF-BLG","Boulgou","Province","Burkina Faso",2 +"BFA","BF","BF-BLK","Boulkiemdé","Province","Burkina Faso",2 +"BFA","BF","BF-COM","Comoé","Province","Burkina Faso",2 +"BFA","BF","BF-GAN","Ganzourgou","Province","Burkina Faso",2 +"BFA","BF","BF-GNA","Gnagna","Province","Burkina Faso",2 +"BFA","BF","BF-GOU","Gourma","Province","Burkina Faso",2 +"BFA","BF","BF-HOU","Houet","Province","Burkina Faso",2 +"BFA","BF","BF-IOB","Ioba","Province","Burkina Faso",2 +"BFA","BF","BF-KAD","Kadiogo","Province","Burkina Faso",2 +"BFA","BF","BF-KEN","Kénédougou","Province","Burkina Faso",2 +"BFA","BF","BF-KMD","Komondjari","Province","Burkina Faso",2 +"BFA","BF","BF-KMP","Kompienga","Province","Burkina Faso",2 +"BFA","BF","BF-KOP","Koulpélogo","Province","Burkina Faso",2 +"BFA","BF","BF-KOS","Kossi","Province","Burkina Faso",2 +"BFA","BF","BF-KOT","Kouritenga","Province","Burkina Faso",2 +"BFA","BF","BF-KOW","Kourwéogo","Province","Burkina Faso",2 +"BFA","BF","BF-LER","Léraba","Province","Burkina Faso",2 +"BFA","BF","BF-LOR","Loroum","Province","Burkina Faso",2 +"BFA","BF","BF-MOU","Mouhoun","Province","Burkina Faso",2 +"BFA","BF","BF-NAM","Namentenga","Province","Burkina Faso",2 +"BFA","BF","BF-NAO","Naouri","Province","Burkina Faso",2 +"BFA","BF","BF-NAY","Nayala","Province","Burkina Faso",2 +"BFA","BF","BF-NOU","Noumbiel","Province","Burkina Faso",2 +"BFA","BF","BF-OUB","Oubritenga","Province","Burkina Faso",2 +"BFA","BF","BF-OUD","Oudalan","Province","Burkina Faso",2 +"BFA","BF","BF-PAS","Passoré","Province","Burkina Faso",2 +"BFA","BF","BF-PON","Poni","Province","Burkina Faso",2 +"BFA","BF","BF-SEN","Séno","Province","Burkina Faso",2 +"BFA","BF","BF-SIS","Sissili","Province","Burkina Faso",2 +"BFA","BF","BF-SMT","Sanmatenga","Province","Burkina Faso",2 +"BFA","BF","BF-SNG","Sanguié","Province","Burkina Faso",2 +"BFA","BF","BF-SOM","Soum","Province","Burkina Faso",2 +"BFA","BF","BF-SOR","Sourou","Province","Burkina Faso",2 +"BFA","BF","BF-TAP","Tapoa","Province","Burkina Faso",2 +"BFA","BF","BF-TUI","Tui","Province","Burkina Faso",2 +"BFA","BF","BF-YAG","Yagha","Province","Burkina Faso",2 +"BFA","BF","BF-YAT","Yatenga","Province","Burkina Faso",2 +"BFA","BF","BF-ZIR","Ziro","Province","Burkina Faso",2 +"BFA","BF","BF-ZON","Zondoma","Province","Burkina Faso",2 +"BFA","BF","BF-ZOU","Zoundwéogo","Province","Burkina Faso",2 +"BGR","BG","BG-01","Blagoevgrad","Region","Bulgaria",2 +"BGR","BG","BG-02","Burgas","Region","Bulgaria",2 +"BGR","BG","BG-03","Varna","Region","Bulgaria",2 +"BGR","BG","BG-04","Veliko Tarnovo","Region","Bulgaria",2 +"BGR","BG","BG-05","Vidin","Region","Bulgaria",2 +"BGR","BG","BG-06","Vratsa","Region","Bulgaria",2 +"BGR","BG","BG-07","Gabrovo","Region","Bulgaria",2 +"BGR","BG","BG-08","Dobrich","Region","Bulgaria",2 +"BGR","BG","BG-09","Kardzhali","Region","Bulgaria",2 +"BGR","BG","BG-10","Kyustendil","Region","Bulgaria",2 +"BGR","BG","BG-11","Lovech","Region","Bulgaria",2 +"BGR","BG","BG-12","Montana","Region","Bulgaria",2 +"BGR","BG","BG-13","Pazardzhik","Region","Bulgaria",2 +"BGR","BG","BG-14","Pernik","Region","Bulgaria",2 +"BGR","BG","BG-15","Pleven","Region","Bulgaria",2 +"BGR","BG","BG-16","Plovdiv","Region","Bulgaria",2 +"BGR","BG","BG-17","Razgrad","Region","Bulgaria",2 +"BGR","BG","BG-18","Ruse","Region","Bulgaria",2 +"BGR","BG","BG-19","Silistra","Region","Bulgaria",2 +"BGR","BG","BG-20","Sliven","Region","Bulgaria",2 +"BGR","BG","BG-21","Smolyan","Region","Bulgaria",2 +"BGR","BG","BG-22","Sofia-Grad","Region","Bulgaria",2 +"BGR","BG","BG-23","Sofia","Region","Bulgaria",2 +"BGR","BG","BG-24","Stara Zagora","Region","Bulgaria",2 +"BGR","BG","BG-25","Targovishte","Region","Bulgaria",2 +"BGR","BG","BG-26","Haskovo","Region","Bulgaria",2 +"BGR","BG","BG-27","Shumen","Region","Bulgaria",2 +"BGR","BG","BG-28","Yambol","Region","Bulgaria",2 +"BHR","BH","BH-13","Al Manāmah (Al ‘Āşimah)","Governorate","Bahrain",2 +"BHR","BH","BH-14","Al Janūbīyah","Governorate","Bahrain",2 +"BHR","BH","BH-15","Al Muḩarraq","Governorate","Bahrain",2 +"BHR","BH","BH-16","Al Wusţá","Governorate","Bahrain",2 +"BHR","BH","BH-17","Ash Shamālīyah","Governorate","Bahrain",2 +"BDI","BI","BI-BB","Bubanza","Province","Burundi",2 +"BDI","BI","BI-BL","Bujumbura Rural","Province","Burundi",2 +"BDI","BI","BI-BM","Bujumbura Mairie","Province","Burundi",2 +"BDI","BI","BI-BR","Bururi","Province","Burundi",2 +"BDI","BI","BI-CA","Cankuzo","Province","Burundi",2 +"BDI","BI","BI-CI","Cibitoke","Province","Burundi",2 +"BDI","BI","BI-GI","Gitega","Province","Burundi",2 +"BDI","BI","BI-KI","Kirundo","Province","Burundi",2 +"BDI","BI","BI-KR","Karuzi","Province","Burundi",2 +"BDI","BI","BI-KY","Kayanza","Province","Burundi",2 +"BDI","BI","BI-MA","Makamba","Province","Burundi",2 +"BDI","BI","BI-MU","Muramvya","Province","Burundi",2 +"BDI","BI","BI-MW","Mwaro","Province","Burundi",2 +"BDI","BI","BI-NG","Ngozi","Province","Burundi",2 +"BDI","BI","BI-RT","Rutana","Province","Burundi",2 +"BDI","BI","BI-RY","Ruyigi","Province","Burundi",2 +"BEN","BJ","BJ-AK","Atakora","Department","Benin",2 +"BEN","BJ","BJ-AL","Alibori","Department","Benin",2 +"BEN","BJ","BJ-AQ","Atlantique","Department","Benin",2 +"BEN","BJ","BJ-BO","Borgou","Department","Benin",2 +"BEN","BJ","BJ-CO","Collines","Department","Benin",2 +"BEN","BJ","BJ-DO","Donga","Department","Benin",2 +"BEN","BJ","BJ-KO","Kouffo","Department","Benin",2 +"BEN","BJ","BJ-LI","Littoral","Department","Benin",2 +"BEN","BJ","BJ-MO","Mono","Department","Benin",2 +"BEN","BJ","BJ-OU","Ouémé","Department","Benin",2 +"BEN","BJ","BJ-PL","Plateau","Department","Benin",2 +"BEN","BJ","BJ-ZO","Zou","Department","Benin",2 +"BRN","BN","BN-BE","Belait","District","Brunei Darussalam",2 +"BRN","BN","BN-BM","Brunei-Muara","District","Brunei Darussalam",2 +"BRN","BN","BN-TE","Temburong","District","Brunei Darussalam",2 +"BRN","BN","BN-TU","Tutong","District","Brunei Darussalam",2 +"BOL","BO","BO-B","El Beni","Department","Bolivia",2 +"BOL","BO","BO-C","Cochabamba","Department","Bolivia",2 +"BOL","BO","BO-H","Chuquisaca","Department","Bolivia",2 +"BOL","BO","BO-L","La Paz","Department","Bolivia",2 +"BOL","BO","BO-N","Pando","Department","Bolivia",2 +"BOL","BO","BO-O","Oruro","Department","Bolivia",2 +"BOL","BO","BO-P","Potosí","Department","Bolivia",2 +"BOL","BO","BO-S","Santa Cruz","Department","Bolivia",2 +"BOL","BO","BO-T","Tarija","Department","Bolivia",2 +"BES","BQ","BQ-BO","Bonaire","Special municipality","Bonaire, Sint Eustatius and Saba",2 +"BES","BQ","BQ-SA","Saba","Special municipality","Bonaire, Sint Eustatius and Saba",2 +"BES","BQ","BQ-SE","Sint Eustatius","Special municipality","Bonaire, Sint Eustatius and Saba",2 +"BRA","BR","BR-AC","Acre","State","Brazil",2 +"BRA","BR","BR-AL","Alagoas","State","Brazil",2 +"BRA","BR","BR-AM","Amazonas","State","Brazil",2 +"BRA","BR","BR-AP","Amapá","State","Brazil",2 +"BRA","BR","BR-BA","Bahia","State","Brazil",2 +"BRA","BR","BR-CE","Ceará","State","Brazil",2 +"BRA","BR","BR-DF","Distrito Federal","Federal District","Brazil",2 +"BRA","BR","BR-ES","Espírito Santo","State","Brazil",2 +"BRA","BR","BR-FN","Fernando de Noronha","State","Brazil",2 +"BRA","BR","BR-GO","Goiás","State","Brazil",2 +"BRA","BR","BR-MA","Maranhão","State","Brazil",2 +"BRA","BR","BR-MG","Minas Gerais","State","Brazil",2 +"BRA","BR","BR-MS","Mato Grosso do Sul","State","Brazil",2 +"BRA","BR","BR-MT","Mato Grosso","State","Brazil",2 +"BRA","BR","BR-PA","Pará","State","Brazil",2 +"BRA","BR","BR-PB","Paraíba","State","Brazil",2 +"BRA","BR","BR-PE","Pernambuco","State","Brazil",2 +"BRA","BR","BR-PI","Piauí","State","Brazil",2 +"BRA","BR","BR-PR","Paraná","State","Brazil",2 +"BRA","BR","BR-RJ","Rio de Janeiro","State","Brazil",2 +"BRA","BR","BR-RN","Rio Grande do Norte","State","Brazil",2 +"BRA","BR","BR-RO","Rondônia","State","Brazil",2 +"BRA","BR","BR-RR","Roraima","State","Brazil",2 +"BRA","BR","BR-RS","Rio Grande do Sul","State","Brazil",2 +"BRA","BR","BR-SC","Santa Catarina","State","Brazil",2 +"BRA","BR","BR-SE","Sergipe","State","Brazil",2 +"BRA","BR","BR-SP","São Paulo","State","Brazil",2 +"BRA","BR","BR-TO","Tocantins","State","Brazil",2 +"BHS","BS","BS-AK","Acklins","District","Bahamas",2 +"BHS","BS","BS-BI","Bimini","District","Bahamas",2 +"BHS","BS","BS-BP","Black Point","District","Bahamas",2 +"BHS","BS","BS-BY","Berry Islands","District","Bahamas",2 +"BHS","BS","BS-CE","Central Eleuthera","District","Bahamas",2 +"BHS","BS","BS-CI","Cat Island","District","Bahamas",2 +"BHS","BS","BS-CK","Crooked Island and Long Cay","District","Bahamas",2 +"BHS","BS","BS-CO","Central Abaco","District","Bahamas",2 +"BHS","BS","BS-CS","Central Andros","District","Bahamas",2 +"BHS","BS","BS-EG","East Grand Bahama","District","Bahamas",2 +"BHS","BS","BS-EX","Exuma","District","Bahamas",2 +"BHS","BS","BS-FP","City of Freeport","District","Bahamas",2 +"BHS","BS","BS-GC","Grand Cay","District","Bahamas",2 +"BHS","BS","BS-HI","Harbour Island","District","Bahamas",2 +"BHS","BS","BS-HT","Hope Town","District","Bahamas",2 +"BHS","BS","BS-IN","Inagua","District","Bahamas",2 +"BHS","BS","BS-LI","Long Island","District","Bahamas",2 +"BHS","BS","BS-MC","Mangrove Cay","District","Bahamas",2 +"BHS","BS","BS-MG","Mayaguana","District","Bahamas",2 +"BHS","BS","BS-MI","Moore's Island","District","Bahamas",2 +"BHS","BS","BS-NE","North Eleuthera","District","Bahamas",2 +"BHS","BS","BS-NO","North Abaco","District","Bahamas",2 +"BHS","BS","BS-NS","North Andros","District","Bahamas",2 +"BHS","BS","BS-RC","Rum Cay","District","Bahamas",2 +"BHS","BS","BS-RI","Ragged Island","District","Bahamas",2 +"BHS","BS","BS-SA","South Andros","District","Bahamas",2 +"BHS","BS","BS-SE","South Eleuthera","District","Bahamas",2 +"BHS","BS","BS-SO","South Abaco","District","Bahamas",2 +"BHS","BS","BS-SS","San Salvador","District","Bahamas",2 +"BHS","BS","BS-SW","Spanish Wells","District","Bahamas",2 +"BHS","BS","BS-WG","West Grand Bahama","District","Bahamas",2 +"BTN","BT","BT-11","Paro","District","Bhutan",2 +"BTN","BT","BT-12","Chhukha","District","Bhutan",2 +"BTN","BT","BT-13","Ha","District","Bhutan",2 +"BTN","BT","BT-14","Samtee","District","Bhutan",2 +"BTN","BT","BT-15","Thimphu","District","Bhutan",2 +"BTN","BT","BT-21","Tsirang","District","Bhutan",2 +"BTN","BT","BT-22","Dagana","District","Bhutan",2 +"BTN","BT","BT-23","Punakha","District","Bhutan",2 +"BTN","BT","BT-24","Wangdue Phodrang","District","Bhutan",2 +"BTN","BT","BT-31","Sarpang","District","Bhutan",2 +"BTN","BT","BT-32","Trongsa","District","Bhutan",2 +"BTN","BT","BT-33","Bumthang","District","Bhutan",2 +"BTN","BT","BT-34","Zhemgang","District","Bhutan",2 +"BTN","BT","BT-41","Trashigang","District","Bhutan",2 +"BTN","BT","BT-42","Monggar","District","Bhutan",2 +"BTN","BT","BT-43","Pemagatshel","District","Bhutan",2 +"BTN","BT","BT-44","Lhuentse","District","Bhutan",2 +"BTN","BT","BT-45","Samdrup Jongkha","District","Bhutan",2 +"BTN","BT","BT-GA","Gasa","District","Bhutan",2 +"BTN","BT","BT-TY","Trashi Yangtse","District","Bhutan",2 +"BWA","BW","BW-CE","Central","District","Botswana",2 +"BWA","BW","BW-GH","Ghanzi","District","Botswana",2 +"BWA","BW","BW-KG","Kgalagadi","District","Botswana",2 +"BWA","BW","BW-KL","Kgatleng","District","Botswana",2 +"BWA","BW","BW-KW","Kweneng","District","Botswana",2 +"BWA","BW","BW-NE","North-East","District","Botswana",2 +"BWA","BW","BW-NW","North-West","District","Botswana",2 +"BWA","BW","BW-SE","South-East","District","Botswana",2 +"BWA","BW","BW-SO","Southern","District","Botswana",2 +"BLR","BY","BY-BR","Brèsckaja voblasc'","Oblast","Belarus",2 +"BLR","BY","BY-HM","Horad Minsk","City","Belarus",2 +"BLR","BY","BY-HO","Homel'skaja voblasc'","Oblast","Belarus",2 +"BLR","BY","BY-HR","Hrodzenskaja voblasc'","Oblast","Belarus",2 +"BLR","BY","BY-MA","Mahilëuskaja voblasc'","Oblast","Belarus",2 +"BLR","BY","BY-MI","Minskaja voblasc'","Oblast","Belarus",2 +"BLR","BY","BY-VI","Vicebskaja voblasc'","Oblast","Belarus",2 +"BLZ","BZ","BZ-BZ","Belize","District","Belize",2 +"BLZ","BZ","BZ-CY","Cayo","District","Belize",2 +"BLZ","BZ","BZ-CZL","Corozal","District","Belize",2 +"BLZ","BZ","BZ-OW","Orange Walk","District","Belize",2 +"BLZ","BZ","BZ-SC","Stann Creek","District","Belize",2 +"BLZ","BZ","BZ-TOL","Toledo","District","Belize",2 +"CAN","CA","CA-AB","Alberta","Province","Canada",2 +"CAN","CA","CA-BC","British Columbia","Province","Canada",2 +"CAN","CA","CA-MB","Manitoba","Province","Canada",2 +"CAN","CA","CA-NB","New Brunswick","Province","Canada",2 +"CAN","CA","CA-NL","Newfoundland and Labrador","Province","Canada",2 +"CAN","CA","CA-NS","Nova Scotia","Province","Canada",2 +"CAN","CA","CA-NT","Northwest Territories","Territory","Canada",2 +"CAN","CA","CA-NU","Nunavut","Territory","Canada",2 +"CAN","CA","CA-ON","Ontario","Province","Canada",2 +"CAN","CA","CA-PE","Prince Edward Island","Province","Canada",2 +"CAN","CA","CA-QC","Quebec","Province","Canada",2 +"CAN","CA","CA-SK","Saskatchewan","Province","Canada",2 +"CAN","CA","CA-YT","Yukon Territory","Territory","Canada",2 +"COD","CD","CD-BC","Bas-Congo","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-BN","Bandundu","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-EQ","Équateur","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-KA","Katanga","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-KE","Kasai-Oriental","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-KN","Kinshasa","City","Congo, The Democratic Republic of the",2 +"COD","CD","CD-KW","Kasai-Occidental","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-MA","Maniema","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-NK","Nord-Kivu","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-OR","Orientale","Province","Congo, The Democratic Republic of the",2 +"COD","CD","CD-SK","Sud-Kivu","Province","Congo, The Democratic Republic of the",2 +"CAF","CF","CF-AC","Ouham","Prefecture","Central African Republic",2 +"CAF","CF","CF-BB","Bamingui-Bangoran","Prefecture","Central African Republic",2 +"CAF","CF","CF-BGF","Bangui","Commune","Central African Republic",2 +"CAF","CF","CF-BK","Basse-Kotto","Prefecture","Central African Republic",2 +"CAF","CF","CF-HK","Haute-Kotto","Prefecture","Central African Republic",2 +"CAF","CF","CF-HM","Haut-Mbomou","Prefecture","Central African Republic",2 +"CAF","CF","CF-HS","Haute-Sangha / Mambéré-Kadéï","Prefecture","Central African Republic",2 +"CAF","CF","CF-KB","Gribingui","Economic Prefecture","Central African Republic",2 +"CAF","CF","CF-KG","Kémo-Gribingui","Prefecture","Central African Republic",2 +"CAF","CF","CF-LB","Lobaye","Prefecture","Central African Republic",2 +"CAF","CF","CF-MB","Mbomou","Prefecture","Central African Republic",2 +"CAF","CF","CF-MP","Ombella-M'poko","Prefecture","Central African Republic",2 +"CAF","CF","CF-NM","Nana-Mambéré","Prefecture","Central African Republic",2 +"CAF","CF","CF-OP","Ouham-Pendé","Prefecture","Central African Republic",2 +"CAF","CF","CF-SE","Sangha","Economic Prefecture","Central African Republic",2 +"CAF","CF","CF-UK","Ouaka","Prefecture","Central African Republic",2 +"CAF","CF","CF-VK","Vakaga","Prefecture","Central African Republic",2 +"COG","CG","CG-11","Bouenza","Region","Congo",2 +"COG","CG","CG-12","Pool","Region","Congo",2 +"COG","CG","CG-13","Sangha","Region","Congo",2 +"COG","CG","CG-14","Plateaux","Region","Congo",2 +"COG","CG","CG-15","Cuvette-Ouest","Region","Congo",2 +"COG","CG","CG-2","Lékoumou","Region","Congo",2 +"COG","CG","CG-5","Kouilou","Region","Congo",2 +"COG","CG","CG-7","Likouala","Region","Congo",2 +"COG","CG","CG-8","Cuvette","Region","Congo",2 +"COG","CG","CG-9","Niari","Region","Congo",2 +"COG","CG","CG-BZV","Brazzaville","Capital District","Congo",2 +"CHE","CH","CH-AG","Aargau","Canton","Switzerland",2 +"CHE","CH","CH-AI","Appenzell Innerrhoden","Canton","Switzerland",2 +"CHE","CH","CH-AR","Appenzell Ausserrhoden","Canton","Switzerland",2 +"CHE","CH","CH-BE","Bern","Canton","Switzerland",2 +"CHE","CH","CH-BL","Basel-Landschaft","Canton","Switzerland",2 +"CHE","CH","CH-BS","Basel-Stadt","Canton","Switzerland",2 +"CHE","CH","CH-FR","Fribourg","Canton","Switzerland",2 +"CHE","CH","CH-GE","Genève","Canton","Switzerland",2 +"CHE","CH","CH-GL","Glarus","Canton","Switzerland",2 +"CHE","CH","CH-GR","Graubünden","Canton","Switzerland",2 +"CHE","CH","CH-JU","Jura","Canton","Switzerland",2 +"CHE","CH","CH-LU","Luzern","Canton","Switzerland",2 +"CHE","CH","CH-NE","Neuchâtel","Canton","Switzerland",2 +"CHE","CH","CH-NW","Nidwalden","Canton","Switzerland",2 +"CHE","CH","CH-OW","Obwalden","Canton","Switzerland",2 +"CHE","CH","CH-SG","Sankt Gallen","Canton","Switzerland",2 +"CHE","CH","CH-SH","Schaffhausen","Canton","Switzerland",2 +"CHE","CH","CH-SO","Solothurn","Canton","Switzerland",2 +"CHE","CH","CH-SZ","Schwyz","Canton","Switzerland",2 +"CHE","CH","CH-TG","Thurgau","Canton","Switzerland",2 +"CHE","CH","CH-TI","Ticino","Canton","Switzerland",2 +"CHE","CH","CH-UR","Uri","Canton","Switzerland",2 +"CHE","CH","CH-VD","Vaud","Canton","Switzerland",2 +"CHE","CH","CH-VS","Valais","Canton","Switzerland",2 +"CHE","CH","CH-ZG","Zug","Canton","Switzerland",2 +"CHE","CH","CH-ZH","Zürich","Canton","Switzerland",2 +"CIV","CI","CI-01","Lagunes (Région des)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-02","Haut-Sassandra (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-03","Savanes (Région des)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-04","Vallée du Bandama (Région de la)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-05","Moyen-Comoé (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-06","18 Montagnes (Région des)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-07","Lacs (Région des)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-08","Zanzan (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-09","Bas-Sassandra (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-10","Denguélé (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-11","Nzi-Comoé (Région)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-12","Marahoué (Région de la)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-13","Sud-Comoé (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-14","Worodouqou (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-15","Sud-Bandama (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-16","Agnébi (Région de l')","Region","Côte d'Ivoire",2 +"CIV","CI","CI-17","Bafing (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-18","Fromager (Région du)","Region","Côte d'Ivoire",2 +"CIV","CI","CI-19","Moyen-Cavally (Région du)","Region","Côte d'Ivoire",2 +"CHL","CL","CL-AI","Aisén del General Carlos Ibáñez del Campo","Region","Chile",2 +"CHL","CL","CL-AN","Antofagasta","Region","Chile",2 +"CHL","CL","CL-AP","Arica y Parinacota","Region","Chile",2 +"CHL","CL","CL-AR","Araucanía","Region","Chile",2 +"CHL","CL","CL-AT","Atacama","Region","Chile",2 +"CHL","CL","CL-BI","Bío-Bío","Region","Chile",2 +"CHL","CL","CL-CO","Coquimbo","Region","Chile",2 +"CHL","CL","CL-LI","Libertador General Bernardo O'Higgins","Region","Chile",2 +"CHL","CL","CL-LL","Los Lagos","Region","Chile",2 +"CHL","CL","CL-LR","Los Ríos","Region","Chile",2 +"CHL","CL","CL-MA","Magallanes y Antártica Chilena","Region","Chile",2 +"CHL","CL","CL-ML","Maule","Region","Chile",2 +"CHL","CL","CL-RM","Región Metropolitana de Santiago","Region","Chile",2 +"CHL","CL","CL-TA","Tarapacá","Region","Chile",2 +"CHL","CL","CL-VS","Valparaíso","Region","Chile",2 +"CMR","CM","CM-AD","Adamaoua","Province","Cameroon",2 +"CMR","CM","CM-CE","Centre","Province","Cameroon",2 +"CMR","CM","CM-EN","Far North","Province","Cameroon",2 +"CMR","CM","CM-ES","East","Province","Cameroon",2 +"CMR","CM","CM-LT","Littoral","Province","Cameroon",2 +"CMR","CM","CM-NO","North","Province","Cameroon",2 +"CMR","CM","CM-NW","North-West (Cameroon)","Province","Cameroon",2 +"CMR","CM","CM-OU","West","Province","Cameroon",2 +"CMR","CM","CM-SU","South","Province","Cameroon",2 +"CMR","CM","CM-SW","South-West","Province","Cameroon",2 +"CHN","CN","CN-11","Beijing","Municipality","China",2 +"CHN","CN","CN-12","Tianjin","Municipality","China",2 +"CHN","CN","CN-13","Hebei","Province","China",2 +"CHN","CN","CN-14","Shanxi","Province","China",2 +"CHN","CN","CN-15","Nei Mongol","Autonomous region","China",2 +"CHN","CN","CN-21","Liaoning","Province","China",2 +"CHN","CN","CN-22","Jilin","Province","China",2 +"CHN","CN","CN-23","Heilongjiang","Province","China",2 +"CHN","CN","CN-31","Shanghai","Municipality","China",2 +"CHN","CN","CN-32","Jiangsu","Province","China",2 +"CHN","CN","CN-33","Zhejiang","Province","China",2 +"CHN","CN","CN-34","Anhui","Province","China",2 +"CHN","CN","CN-35","Fujian","Province","China",2 +"CHN","CN","CN-36","Jiangxi","Province","China",2 +"CHN","CN","CN-37","Shandong","Province","China",2 +"CHN","CN","CN-41","Henan","Province","China",2 +"CHN","CN","CN-42","Hubei","Province","China",2 +"CHN","CN","CN-43","Hunan","Province","China",2 +"CHN","CN","CN-44","Guangdong","Province","China",2 +"CHN","CN","CN-45","Guangxi","Autonomous region","China",2 +"CHN","CN","CN-46","Hainan","Province","China",2 +"CHN","CN","CN-50","Chongqing","Municipality","China",2 +"CHN","CN","CN-51","Sichuan","Province","China",2 +"CHN","CN","CN-52","Guizhou","Province","China",2 +"CHN","CN","CN-53","Yunnan","Province","China",2 +"CHN","CN","CN-54","Xizang","Autonomous region","China",2 +"CHN","CN","CN-61","Shaanxi","Province","China",2 +"CHN","CN","CN-62","Gansu","Province","China",2 +"CHN","CN","CN-63","Qinghai","Province","China",2 +"CHN","CN","CN-64","Ningxia","Autonomous region","China",2 +"CHN","CN","CN-65","Xinjiang","Autonomous region","China",2 +"CHN","CN","CN-71","Taiwan","Province","China",2 +"CHN","CN","CN-91","Xianggang (Hong-Kong)","Special administrative region","China",2 +"CHN","CN","CN-92","Aomen (Macau)","Special administrative region","China",2 +"COL","CO","CO-AMA","Amazonas","Department","Colombia",2 +"COL","CO","CO-ANT","Antioquia","Department","Colombia",2 +"COL","CO","CO-ARA","Arauca","Department","Colombia",2 +"COL","CO","CO-ATL","Atlántico","Department","Colombia",2 +"COL","CO","CO-BOL","Bolívar","Department","Colombia",2 +"COL","CO","CO-BOY","Boyacá","Department","Colombia",2 +"COL","CO","CO-CAL","Caldas","Department","Colombia",2 +"COL","CO","CO-CAQ","Caquetá","Department","Colombia",2 +"COL","CO","CO-CAS","Casanare","Department","Colombia",2 +"COL","CO","CO-CAU","Cauca","Department","Colombia",2 +"COL","CO","CO-CES","Cesar","Department","Colombia",2 +"COL","CO","CO-CHO","Chocó","Department","Colombia",2 +"COL","CO","CO-COR","Córdoba","Department","Colombia",2 +"COL","CO","CO-CUN","Cundinamarca","Department","Colombia",2 +"COL","CO","CO-DC","Distrito Capital de Bogotá","Capital district","Colombia",2 +"COL","CO","CO-GUA","Guainía","Department","Colombia",2 +"COL","CO","CO-GUV","Guaviare","Department","Colombia",2 +"COL","CO","CO-HUI","Huila","Department","Colombia",2 +"COL","CO","CO-LAG","La Guajira","Department","Colombia",2 +"COL","CO","CO-MAG","Magdalena","Department","Colombia",2 +"COL","CO","CO-MET","Meta","Department","Colombia",2 +"COL","CO","CO-NAR","Nariño","Department","Colombia",2 +"COL","CO","CO-NSA","Norte de Santander","Department","Colombia",2 +"COL","CO","CO-PUT","Putumayo","Department","Colombia",2 +"COL","CO","CO-QUI","Quindío","Department","Colombia",2 +"COL","CO","CO-RIS","Risaralda","Department","Colombia",2 +"COL","CO","CO-SAN","Santander","Department","Colombia",2 +"COL","CO","CO-SAP","San Andrés, Providencia y Santa Catalina","Department","Colombia",2 +"COL","CO","CO-SUC","Sucre","Department","Colombia",2 +"COL","CO","CO-TOL","Tolima","Department","Colombia",2 +"COL","CO","CO-VAC","Valle del Cauca","Department","Colombia",2 +"COL","CO","CO-VAU","Vaupés","Department","Colombia",2 +"COL","CO","CO-VID","Vichada","Department","Colombia",2 +"CRI","CR","CR-A","Alajuela","Province","Costa Rica",2 +"CRI","CR","CR-C","Cartago","Province","Costa Rica",2 +"CRI","CR","CR-G","Guanacaste","Province","Costa Rica",2 +"CRI","CR","CR-H","Heredia","Province","Costa Rica",2 +"CRI","CR","CR-L","Limón","Province","Costa Rica",2 +"CRI","CR","CR-P","Puntarenas","Province","Costa Rica",2 +"CRI","CR","CR-SJ","San José","Province","Costa Rica",2 +"CUB","CU","CU-01","Pinar del Rio","Province","Cuba",2 +"CUB","CU","CU-02","La Habana","Province","Cuba",2 +"CUB","CU","CU-03","Ciudad de La Habana","Province","Cuba",2 +"CUB","CU","CU-04","Matanzas","Province","Cuba",2 +"CUB","CU","CU-05","Villa Clara","Province","Cuba",2 +"CUB","CU","CU-06","Cienfuegos","Province","Cuba",2 +"CUB","CU","CU-07","Sancti Spíritus","Province","Cuba",2 +"CUB","CU","CU-08","Ciego de Ávila","Province","Cuba",2 +"CUB","CU","CU-09","Camagüey","Province","Cuba",2 +"CUB","CU","CU-10","Las Tunas","Province","Cuba",2 +"CUB","CU","CU-11","Holguín","Province","Cuba",2 +"CUB","CU","CU-12","Granma","Province","Cuba",2 +"CUB","CU","CU-13","Santiago de Cuba","Province","Cuba",2 +"CUB","CU","CU-14","Guantánamo","Province","Cuba",2 +"CUB","CU","CU-99","Isla de la Juventud","Special municipality","Cuba",2 +"CPV","CV","CV-B","Ilhas de Barlavento","Geographical region","Cabo Verde",2 +"CPV","CV","CV-BR","Brava","Municipality","Cabo Verde",2 +"CPV","CV","CV-BV","Boa Vista","Municipality","Cabo Verde",2 +"CPV","CV","CV-CA","Santa Catarina","Municipality","Cabo Verde",2 +"CPV","CV","CV-CF","Santa Catarina de Fogo","Municipality","Cabo Verde",2 +"CPV","CV","CV-CR","Santa Cruz","Municipality","Cabo Verde",2 +"CPV","CV","CV-MA","Maio","Municipality","Cabo Verde",2 +"CPV","CV","CV-MO","Mosteiros","Municipality","Cabo Verde",2 +"CPV","CV","CV-PA","Paul","Municipality","Cabo Verde",2 +"CPV","CV","CV-PN","Porto Novo","Municipality","Cabo Verde",2 +"CPV","CV","CV-PR","Praia","Municipality","Cabo Verde",2 +"CPV","CV","CV-RB","Ribeira Brava","Municipality","Cabo Verde",2 +"CPV","CV","CV-RG","Ribeira Grande","Municipality","Cabo Verde",2 +"CPV","CV","CV-RS","Ribeira Grande de Santiago","Municipality","Cabo Verde",2 +"CPV","CV","CV-S","Ilhas de Sotavento","Geographical region","Cabo Verde",2 +"CPV","CV","CV-SD","São Domingos","Municipality","Cabo Verde",2 +"CPV","CV","CV-SF","São Filipe","Municipality","Cabo Verde",2 +"CPV","CV","CV-SL","Sal","Municipality","Cabo Verde",2 +"CPV","CV","CV-SM","São Miguel","Municipality","Cabo Verde",2 +"CPV","CV","CV-SO","São Lourenço dos Órgãos","Municipality","Cabo Verde",2 +"CPV","CV","CV-SS","São Salvador do Mundo","Municipality","Cabo Verde",2 +"CPV","CV","CV-SV","São Vicente","Municipality","Cabo Verde",2 +"CPV","CV","CV-TA","Tarrafal","Municipality","Cabo Verde",2 +"CPV","CV","CV-TS","Tarrafal de São Nicolau","Municipality","Cabo Verde",2 +"CYP","CY","CY-01","Lefkosía","District","Cyprus",2 +"CYP","CY","CY-02","Lemesós","District","Cyprus",2 +"CYP","CY","CY-03","Lárnaka","District","Cyprus",2 +"CYP","CY","CY-04","Ammóchostos","District","Cyprus",2 +"CYP","CY","CY-05","Páfos","District","Cyprus",2 +"CYP","CY","CY-06","Kerýneia","District","Cyprus",2 +"CZE","CZ","CZ-10","Praha, Hlavní mešto","capital city","Czechia",2 +"CZE","CZ","CZ-101","Praha 1","district","Czechia",2 +"CZE","CZ","CZ-102","Praha 2","district","Czechia",2 +"CZE","CZ","CZ-103","Praha 3","district","Czechia",2 +"CZE","CZ","CZ-104","Praha 4","district","Czechia",2 +"CZE","CZ","CZ-105","Praha 5","district","Czechia",2 +"CZE","CZ","CZ-106","Praha 6","district","Czechia",2 +"CZE","CZ","CZ-107","Praha 7","district","Czechia",2 +"CZE","CZ","CZ-108","Praha 8","district","Czechia",2 +"CZE","CZ","CZ-109","Praha 9","district","Czechia",2 +"CZE","CZ","CZ-110","Praha 10","district","Czechia",2 +"CZE","CZ","CZ-111","Praha 11","district","Czechia",2 +"CZE","CZ","CZ-112","Praha 12","district","Czechia",2 +"CZE","CZ","CZ-113","Praha 13","district","Czechia",2 +"CZE","CZ","CZ-114","Praha 14","district","Czechia",2 +"CZE","CZ","CZ-115","Praha 15","district","Czechia",2 +"CZE","CZ","CZ-116","Praha 16","district","Czechia",2 +"CZE","CZ","CZ-117","Praha 17","district","Czechia",2 +"CZE","CZ","CZ-118","Praha 18","district","Czechia",2 +"CZE","CZ","CZ-119","Praha 19","district","Czechia",2 +"CZE","CZ","CZ-120","Praha 20","district","Czechia",2 +"CZE","CZ","CZ-121","Praha 21","district","Czechia",2 +"CZE","CZ","CZ-122","Praha 22","district","Czechia",2 +"CZE","CZ","CZ-20","Středočeský kraj","region","Czechia",2 +"CZE","CZ","CZ-201","Benešov","district","Czechia",2 +"CZE","CZ","CZ-202","Beroun","district","Czechia",2 +"CZE","CZ","CZ-203","Kladno","district","Czechia",2 +"CZE","CZ","CZ-204","Kolín","district","Czechia",2 +"CZE","CZ","CZ-205","Kutná Hora","district","Czechia",2 +"CZE","CZ","CZ-206","Mělník","district","Czechia",2 +"CZE","CZ","CZ-207","Mladá Boleslav","district","Czechia",2 +"CZE","CZ","CZ-208","Nymburk","district","Czechia",2 +"CZE","CZ","CZ-209","Praha-východ","district","Czechia",2 +"CZE","CZ","CZ-20A","Praha-západ","district","Czechia",2 +"CZE","CZ","CZ-20B","Příbram","district","Czechia",2 +"CZE","CZ","CZ-20C","Rakovník","district","Czechia",2 +"CZE","CZ","CZ-31","Jihočeský kraj","region","Czechia",2 +"CZE","CZ","CZ-311","České Budějovice","district","Czechia",2 +"CZE","CZ","CZ-312","Český Krumlov","district","Czechia",2 +"CZE","CZ","CZ-313","Jindřichův Hradec","district","Czechia",2 +"CZE","CZ","CZ-314","Písek","district","Czechia",2 +"CZE","CZ","CZ-315","Prachatice","district","Czechia",2 +"CZE","CZ","CZ-316","Strakonice","district","Czechia",2 +"CZE","CZ","CZ-317","Tábor","district","Czechia",2 +"CZE","CZ","CZ-32","Plzeňský kraj","region","Czechia",2 +"CZE","CZ","CZ-321","Domažlice","district","Czechia",2 +"CZE","CZ","CZ-322","Klatovy","district","Czechia",2 +"CZE","CZ","CZ-323","Plzeň-město","district","Czechia",2 +"CZE","CZ","CZ-324","Plzeň-jih","district","Czechia",2 +"CZE","CZ","CZ-325","Plzeň-sever","district","Czechia",2 +"CZE","CZ","CZ-326","Rokycany","district","Czechia",2 +"CZE","CZ","CZ-327","Tachov","district","Czechia",2 +"CZE","CZ","CZ-41","Karlovarský kraj","region","Czechia",2 +"CZE","CZ","CZ-411","Cheb","district","Czechia",2 +"CZE","CZ","CZ-412","Karlovy Vary","district","Czechia",2 +"CZE","CZ","CZ-413","Sokolov","district","Czechia",2 +"CZE","CZ","CZ-42","Ústecký kraj","region","Czechia",2 +"CZE","CZ","CZ-421","Děčín","district","Czechia",2 +"CZE","CZ","CZ-422","Chomutov","district","Czechia",2 +"CZE","CZ","CZ-423","Litoměřice","district","Czechia",2 +"CZE","CZ","CZ-424","Louny","district","Czechia",2 +"CZE","CZ","CZ-425","Most","district","Czechia",2 +"CZE","CZ","CZ-426","Teplice","district","Czechia",2 +"CZE","CZ","CZ-427","Ústí nad Labem","district","Czechia",2 +"CZE","CZ","CZ-51","Liberecký kraj","region","Czechia",2 +"CZE","CZ","CZ-511","Česká Lípa","district","Czechia",2 +"CZE","CZ","CZ-512","Jablonec nad Nisou","district","Czechia",2 +"CZE","CZ","CZ-513","Liberec","district","Czechia",2 +"CZE","CZ","CZ-514","Semily","district","Czechia",2 +"CZE","CZ","CZ-52","Královéhradecký kraj","region","Czechia",2 +"CZE","CZ","CZ-521","Hradec Králové","district","Czechia",2 +"CZE","CZ","CZ-522","Jičín","district","Czechia",2 +"CZE","CZ","CZ-523","Náchod","district","Czechia",2 +"CZE","CZ","CZ-524","Rychnov nad Kněžnou","district","Czechia",2 +"CZE","CZ","CZ-525","Trutnov","district","Czechia",2 +"CZE","CZ","CZ-53","Pardubický kraj","region","Czechia",2 +"CZE","CZ","CZ-531","Chrudim","district","Czechia",2 +"CZE","CZ","CZ-532","Pardubice","district","Czechia",2 +"CZE","CZ","CZ-533","Svitavy","district","Czechia",2 +"CZE","CZ","CZ-534","Ústí nad Orlicí","district","Czechia",2 +"CZE","CZ","CZ-63","Kraj Vysočina","region","Czechia",2 +"CZE","CZ","CZ-631","Havlíčkův Brod","district","Czechia",2 +"CZE","CZ","CZ-632","Jihlava","district","Czechia",2 +"CZE","CZ","CZ-633","Pelhřimov","district","Czechia",2 +"CZE","CZ","CZ-634","Třebíč","district","Czechia",2 +"CZE","CZ","CZ-635","Žďár nad Sázavou","district","Czechia",2 +"CZE","CZ","CZ-64","Jihomoravský kraj","region","Czechia",2 +"CZE","CZ","CZ-641","Blansko","district","Czechia",2 +"CZE","CZ","CZ-642","Brno-město","district","Czechia",2 +"CZE","CZ","CZ-643","Brno-venkov","district","Czechia",2 +"CZE","CZ","CZ-644","Břeclav","district","Czechia",2 +"CZE","CZ","CZ-645","Hodonín","district","Czechia",2 +"CZE","CZ","CZ-646","Vyškov","district","Czechia",2 +"CZE","CZ","CZ-647","Znojmo","district","Czechia",2 +"CZE","CZ","CZ-71","Olomoucký kraj","region","Czechia",2 +"CZE","CZ","CZ-711","Jeseník","district","Czechia",2 +"CZE","CZ","CZ-712","Olomouc","district","Czechia",2 +"CZE","CZ","CZ-713","Prostějov","district","Czechia",2 +"CZE","CZ","CZ-714","Přerov","district","Czechia",2 +"CZE","CZ","CZ-715","Šumperk","district","Czechia",2 +"CZE","CZ","CZ-72","Zlínský kraj","region","Czechia",2 +"CZE","CZ","CZ-721","Kroměříž","district","Czechia",2 +"CZE","CZ","CZ-722","Uherské Hradiště","district","Czechia",2 +"CZE","CZ","CZ-723","Vsetín","district","Czechia",2 +"CZE","CZ","CZ-724","Zlín","district","Czechia",2 +"CZE","CZ","CZ-80","Moravskoslezský kraj","region","Czechia",2 +"CZE","CZ","CZ-801","Bruntál","district","Czechia",2 +"CZE","CZ","CZ-802","Frýdek Místek","district","Czechia",2 +"CZE","CZ","CZ-803","Karviná","district","Czechia",2 +"CZE","CZ","CZ-804","Nový Jičín","district","Czechia",2 +"CZE","CZ","CZ-805","Opava","district","Czechia",2 +"CZE","CZ","CZ-806","Ostrava-město","district","Czechia",2 +"DEU","DE","DE-BB","Brandenburg","State","Germany",2 +"DEU","DE","DE-BE","Berlin","State","Germany",2 +"DEU","DE","DE-BW","Baden-Württemberg","State","Germany",2 +"DEU","DE","DE-BY","Bayern","State","Germany",2 +"DEU","DE","DE-HB","Bremen","State","Germany",2 +"DEU","DE","DE-HE","Hessen","State","Germany",2 +"DEU","DE","DE-HH","Hamburg","State","Germany",2 +"DEU","DE","DE-MV","Mecklenburg-Vorpommern","State","Germany",2 +"DEU","DE","DE-NI","Niedersachsen","State","Germany",2 +"DEU","DE","DE-NW","Nordrhein-Westfalen","State","Germany",2 +"DEU","DE","DE-RP","Rheinland-Pfalz","State","Germany",2 +"DEU","DE","DE-SH","Schleswig-Holstein","State","Germany",2 +"DEU","DE","DE-SL","Saarland","State","Germany",2 +"DEU","DE","DE-SN","Sachsen","State","Germany",2 +"DEU","DE","DE-ST","Sachsen-Anhalt","State","Germany",2 +"DEU","DE","DE-TH","Thüringen","State","Germany",2 +"DJI","DJ","DJ-AR","Arta","Region","Djibouti",2 +"DJI","DJ","DJ-AS","Ali Sabieh","Region","Djibouti",2 +"DJI","DJ","DJ-DI","Dikhil","Region","Djibouti",2 +"DJI","DJ","DJ-DJ","Djibouti","City","Djibouti",2 +"DJI","DJ","DJ-OB","Obock","Region","Djibouti",2 +"DJI","DJ","DJ-TA","Tadjourah","Region","Djibouti",2 +"DNK","DK","DK-81","Nordjylland","Region","Denmark",2 +"DNK","DK","DK-82","Midtjylland","Region","Denmark",2 +"DNK","DK","DK-83","Syddanmark","Region","Denmark",2 +"DNK","DK","DK-84","Hovedstaden","Region","Denmark",2 +"DNK","DK","DK-85","Sjælland","Region","Denmark",2 +"DMA","DM","DM-01","Saint Peter","Parish","Dominica",2 +"DMA","DM","DM-02","Saint Andrew","Parish","Dominica",2 +"DMA","DM","DM-03","Saint David","Parish","Dominica",2 +"DMA","DM","DM-04","Saint George","Parish","Dominica",2 +"DMA","DM","DM-05","Saint John","Parish","Dominica",2 +"DMA","DM","DM-06","Saint Joseph","Parish","Dominica",2 +"DMA","DM","DM-07","Saint Luke","Parish","Dominica",2 +"DMA","DM","DM-08","Saint Mark","Parish","Dominica",2 +"DMA","DM","DM-09","Saint Patrick","Parish","Dominica",2 +"DMA","DM","DM-10","Saint Paul","Parish","Dominica",2 +"DOM","DO","DO-01","Distrito Nacional (Santo Domingo)","District","Dominican Republic",2 +"DOM","DO","DO-02","Azua","Province","Dominican Republic",2 +"DOM","DO","DO-03","Bahoruco","Province","Dominican Republic",2 +"DOM","DO","DO-04","Barahona","Province","Dominican Republic",2 +"DOM","DO","DO-05","Dajabón","Province","Dominican Republic",2 +"DOM","DO","DO-06","Duarte","Province","Dominican Republic",2 +"DOM","DO","DO-07","La Estrelleta [Elías Piña]","Province","Dominican Republic",2 +"DOM","DO","DO-08","El Seybo [El Seibo]","Province","Dominican Republic",2 +"DOM","DO","DO-09","Espaillat","Province","Dominican Republic",2 +"DOM","DO","DO-10","Independencia","Province","Dominican Republic",2 +"DOM","DO","DO-11","La Altagracia","Province","Dominican Republic",2 +"DOM","DO","DO-12","La Romana","Province","Dominican Republic",2 +"DOM","DO","DO-13","La Vega","Province","Dominican Republic",2 +"DOM","DO","DO-14","María Trinidad Sánchez","Province","Dominican Republic",2 +"DOM","DO","DO-15","Monte Cristi","Province","Dominican Republic",2 +"DOM","DO","DO-16","Pedernales","Province","Dominican Republic",2 +"DOM","DO","DO-17","Peravia","Province","Dominican Republic",2 +"DOM","DO","DO-18","Puerto Plata","Province","Dominican Republic",2 +"DOM","DO","DO-19","Salcedo","Province","Dominican Republic",2 +"DOM","DO","DO-20","Samaná","Province","Dominican Republic",2 +"DOM","DO","DO-21","San Cristóbal","Province","Dominican Republic",2 +"DOM","DO","DO-22","San Juan","Province","Dominican Republic",2 +"DOM","DO","DO-23","San Pedro de Macorís","Province","Dominican Republic",2 +"DOM","DO","DO-24","Sánchez Ramírez","Province","Dominican Republic",2 +"DOM","DO","DO-25","Santiago","Province","Dominican Republic",2 +"DOM","DO","DO-26","Santiago Rodríguez","Province","Dominican Republic",2 +"DOM","DO","DO-27","Valverde","Province","Dominican Republic",2 +"DOM","DO","DO-28","Monseñor Nouel","Province","Dominican Republic",2 +"DOM","DO","DO-29","Monte Plata","Province","Dominican Republic",2 +"DOM","DO","DO-30","Hato Mayor","Province","Dominican Republic",2 +"DZA","DZ","DZ-01","Adrar","Province","Algeria",2 +"DZA","DZ","DZ-02","Chlef","Province","Algeria",2 +"DZA","DZ","DZ-03","Laghouat","Province","Algeria",2 +"DZA","DZ","DZ-04","Oum el Bouaghi","Province","Algeria",2 +"DZA","DZ","DZ-05","Batna","Province","Algeria",2 +"DZA","DZ","DZ-06","Béjaïa","Province","Algeria",2 +"DZA","DZ","DZ-07","Biskra","Province","Algeria",2 +"DZA","DZ","DZ-08","Béchar","Province","Algeria",2 +"DZA","DZ","DZ-09","Blida","Province","Algeria",2 +"DZA","DZ","DZ-10","Bouira","Province","Algeria",2 +"DZA","DZ","DZ-11","Tamanghasset","Province","Algeria",2 +"DZA","DZ","DZ-12","Tébessa","Province","Algeria",2 +"DZA","DZ","DZ-13","Tlemcen","Province","Algeria",2 +"DZA","DZ","DZ-14","Tiaret","Province","Algeria",2 +"DZA","DZ","DZ-15","Tizi Ouzou","Province","Algeria",2 +"DZA","DZ","DZ-16","Alger","Province","Algeria",2 +"DZA","DZ","DZ-17","Djelfa","Province","Algeria",2 +"DZA","DZ","DZ-18","Jijel","Province","Algeria",2 +"DZA","DZ","DZ-19","Sétif","Province","Algeria",2 +"DZA","DZ","DZ-20","Saïda","Province","Algeria",2 +"DZA","DZ","DZ-21","Skikda","Province","Algeria",2 +"DZA","DZ","DZ-22","Sidi Bel Abbès","Province","Algeria",2 +"DZA","DZ","DZ-23","Annaba","Province","Algeria",2 +"DZA","DZ","DZ-24","Guelma","Province","Algeria",2 +"DZA","DZ","DZ-25","Constantine","Province","Algeria",2 +"DZA","DZ","DZ-26","Médéa","Province","Algeria",2 +"DZA","DZ","DZ-27","Mostaganem","Province","Algeria",2 +"DZA","DZ","DZ-28","Msila","Province","Algeria",2 +"DZA","DZ","DZ-29","Mascara","Province","Algeria",2 +"DZA","DZ","DZ-30","Ouargla","Province","Algeria",2 +"DZA","DZ","DZ-31","Oran","Province","Algeria",2 +"DZA","DZ","DZ-32","El Bayadh","Province","Algeria",2 +"DZA","DZ","DZ-33","Illizi","Province","Algeria",2 +"DZA","DZ","DZ-34","Bordj Bou Arréridj","Province","Algeria",2 +"DZA","DZ","DZ-35","Boumerdès","Province","Algeria",2 +"DZA","DZ","DZ-36","El Tarf","Province","Algeria",2 +"DZA","DZ","DZ-37","Tindouf","Province","Algeria",2 +"DZA","DZ","DZ-38","Tissemsilt","Province","Algeria",2 +"DZA","DZ","DZ-39","El Oued","Province","Algeria",2 +"DZA","DZ","DZ-40","Khenchela","Province","Algeria",2 +"DZA","DZ","DZ-41","Souk Ahras","Province","Algeria",2 +"DZA","DZ","DZ-42","Tipaza","Province","Algeria",2 +"DZA","DZ","DZ-43","Mila","Province","Algeria",2 +"DZA","DZ","DZ-44","Aïn Defla","Province","Algeria",2 +"DZA","DZ","DZ-45","Naama","Province","Algeria",2 +"DZA","DZ","DZ-46","Aïn Témouchent","Province","Algeria",2 +"DZA","DZ","DZ-47","Ghardaïa","Province","Algeria",2 +"DZA","DZ","DZ-48","Relizane","Province","Algeria",2 +"ECU","EC","EC-A","Azuay","Province","Ecuador",2 +"ECU","EC","EC-B","Bolívar","Province","Ecuador",2 +"ECU","EC","EC-C","Carchi","Province","Ecuador",2 +"ECU","EC","EC-D","Orellana","Province","Ecuador",2 +"ECU","EC","EC-E","Esmeraldas","Province","Ecuador",2 +"ECU","EC","EC-F","Cañar","Province","Ecuador",2 +"ECU","EC","EC-G","Guayas","Province","Ecuador",2 +"ECU","EC","EC-H","Chimborazo","Province","Ecuador",2 +"ECU","EC","EC-I","Imbabura","Province","Ecuador",2 +"ECU","EC","EC-L","Loja","Province","Ecuador",2 +"ECU","EC","EC-M","Manabí","Province","Ecuador",2 +"ECU","EC","EC-N","Napo","Province","Ecuador",2 +"ECU","EC","EC-O","El Oro","Province","Ecuador",2 +"ECU","EC","EC-P","Pichincha","Province","Ecuador",2 +"ECU","EC","EC-R","Los Ríos","Province","Ecuador",2 +"ECU","EC","EC-S","Morona-Santiago","Province","Ecuador",2 +"ECU","EC","EC-SD","Santo Domingo de los Tsáchilas","Province","Ecuador",2 +"ECU","EC","EC-SE","Santa Elena","Province","Ecuador",2 +"ECU","EC","EC-T","Tungurahua","Province","Ecuador",2 +"ECU","EC","EC-U","Sucumbíos","Province","Ecuador",2 +"ECU","EC","EC-W","Galápagos","Province","Ecuador",2 +"ECU","EC","EC-X","Cotopaxi","Province","Ecuador",2 +"ECU","EC","EC-Y","Pastaza","Province","Ecuador",2 +"ECU","EC","EC-Z","Zamora-Chinchipe","Province","Ecuador",2 +"EST","EE","EE-37","Harjumaa","County","Estonia",2 +"EST","EE","EE-39","Hiiumaa","County","Estonia",2 +"EST","EE","EE-44","Ida-Virumaa","County","Estonia",2 +"EST","EE","EE-49","Jõgevamaa","County","Estonia",2 +"EST","EE","EE-51","Järvamaa","County","Estonia",2 +"EST","EE","EE-57","Läänemaa","County","Estonia",2 +"EST","EE","EE-59","Lääne-Virumaa","County","Estonia",2 +"EST","EE","EE-65","Põlvamaa","County","Estonia",2 +"EST","EE","EE-67","Pärnumaa","County","Estonia",2 +"EST","EE","EE-70","Raplamaa","County","Estonia",2 +"EST","EE","EE-74","Saaremaa","County","Estonia",2 +"EST","EE","EE-78","Tartumaa","County","Estonia",2 +"EST","EE","EE-82","Valgamaa","County","Estonia",2 +"EST","EE","EE-84","Viljandimaa","County","Estonia",2 +"EST","EE","EE-86","Võrumaa","County","Estonia",2 +"EGY","EG","EG-ALX","Al Iskandarīyah","Governorate","Egypt",2 +"EGY","EG","EG-ASN","Aswān","Governorate","Egypt",2 +"EGY","EG","EG-AST","Asyūt","Governorate","Egypt",2 +"EGY","EG","EG-BA","Al Bahr al Ahmar","Governorate","Egypt",2 +"EGY","EG","EG-BH","Al Buhayrah","Governorate","Egypt",2 +"EGY","EG","EG-BNS","Banī Suwayf","Governorate","Egypt",2 +"EGY","EG","EG-C","Al Qāhirah","Governorate","Egypt",2 +"EGY","EG","EG-DK","Ad Daqahlīyah","Governorate","Egypt",2 +"EGY","EG","EG-DT","Dumyāt","Governorate","Egypt",2 +"EGY","EG","EG-FYM","Al Fayyūm","Governorate","Egypt",2 +"EGY","EG","EG-GH","Al Gharbīyah","Governorate","Egypt",2 +"EGY","EG","EG-GZ","Al Jīzah","Governorate","Egypt",2 +"EGY","EG","EG-HU","Ḩulwān","Governorate","Egypt",2 +"EGY","EG","EG-IS","Al Ismā`īlīyah","Governorate","Egypt",2 +"EGY","EG","EG-JS","Janūb Sīnā'","Governorate","Egypt",2 +"EGY","EG","EG-KB","Al Qalyūbīyah","Governorate","Egypt",2 +"EGY","EG","EG-KFS","Kafr ash Shaykh","Governorate","Egypt",2 +"EGY","EG","EG-KN","Qinā","Governorate","Egypt",2 +"EGY","EG","EG-MN","Al Minyā","Governorate","Egypt",2 +"EGY","EG","EG-MNF","Al Minūfīyah","Governorate","Egypt",2 +"EGY","EG","EG-MT","Matrūh","Governorate","Egypt",2 +"EGY","EG","EG-PTS","Būr Sa`īd","Governorate","Egypt",2 +"EGY","EG","EG-SHG","Sūhāj","Governorate","Egypt",2 +"EGY","EG","EG-SHR","Ash Sharqīyah","Governorate","Egypt",2 +"EGY","EG","EG-SIN","Shamal Sīnā'","Governorate","Egypt",2 +"EGY","EG","EG-SU","As Sādis min Uktūbar","Governorate","Egypt",2 +"EGY","EG","EG-SUZ","As Suways","Governorate","Egypt",2 +"EGY","EG","EG-WAD","Al Wādī al Jadīd","Governorate","Egypt",2 +"ERI","ER","ER-AN","Ansabā","Province","Eritrea",2 +"ERI","ER","ER-DK","Janūbī al Baḩrī al Aḩmar","Province","Eritrea",2 +"ERI","ER","ER-DU","Al Janūbī","Province","Eritrea",2 +"ERI","ER","ER-GB","Qāsh-Barkah","Province","Eritrea",2 +"ERI","ER","ER-MA","Al Awsaţ","Province","Eritrea",2 +"ERI","ER","ER-SK","Shimālī al Baḩrī al Aḩmar","Province","Eritrea",2 +"ESP","ES","ES-A","Alicante","Province","Spain",2 +"ESP","ES","ES-AB","Albacete","Province","Spain",2 +"ESP","ES","ES-AL","Almería","Province","Spain",2 +"ESP","ES","ES-AN","Andalucía","Autonomous community","Spain",2 +"ESP","ES","ES-AR","Aragón","Autonomous community","Spain",2 +"ESP","ES","ES-AS","Asturias, Principado de","Autonomous community","Spain",2 +"ESP","ES","ES-AV","Ávila","Province","Spain",2 +"ESP","ES","ES-B","Barcelona","Province","Spain",2 +"ESP","ES","ES-BA","Badajoz","Province","Spain",2 +"ESP","ES","ES-BI","Bizkaia","Province","Spain",2 +"ESP","ES","ES-BU","Burgos","Province","Spain",2 +"ESP","ES","ES-C","A Coruña","Province","Spain",2 +"ESP","ES","ES-CA","Cádiz","Province","Spain",2 +"ESP","ES","ES-CB","Cantabria","Autonomous community","Spain",2 +"ESP","ES","ES-CC","Cáceres","Province","Spain",2 +"ESP","ES","ES-CE","Ceuta","Autonomous city","Spain",2 +"ESP","ES","ES-CL","Castilla y León","Autonomous community","Spain",2 +"ESP","ES","ES-CM","Castilla-La Mancha","Autonomous community","Spain",2 +"ESP","ES","ES-CN","Canarias","Autonomous community","Spain",2 +"ESP","ES","ES-CO","Córdoba","Province","Spain",2 +"ESP","ES","ES-CR","Ciudad Real","Province","Spain",2 +"ESP","ES","ES-CS","Castellón","Province","Spain",2 +"ESP","ES","ES-CT","Catalunya","Autonomous community","Spain",2 +"ESP","ES","ES-CU","Cuenca","Province","Spain",2 +"ESP","ES","ES-EX","Extremadura","Autonomous community","Spain",2 +"ESP","ES","ES-GA","Galicia","Autonomous community","Spain",2 +"ESP","ES","ES-GC","Las Palmas","Province","Spain",2 +"ESP","ES","ES-GI","Girona","Province","Spain",2 +"ESP","ES","ES-GR","Granada","Province","Spain",2 +"ESP","ES","ES-GU","Guadalajara","Province","Spain",2 +"ESP","ES","ES-H","Huelva","Province","Spain",2 +"ESP","ES","ES-HU","Huesca","Province","Spain",2 +"ESP","ES","ES-IB","Illes Balears","Autonomous community","Spain",2 +"ESP","ES","ES-J","Jaén","Province","Spain",2 +"ESP","ES","ES-L","Lleida","Province","Spain",2 +"ESP","ES","ES-LE","León","Province","Spain",2 +"ESP","ES","ES-LO","La Rioja","Province","Spain",2 +"ESP","ES","ES-LU","Lugo","Province","Spain",2 +"ESP","ES","ES-M","Madrid","Province","Spain",2 +"ESP","ES","ES-MA","Málaga","Province","Spain",2 +"ESP","ES","ES-MC","Murcia, Región de","Autonomous community","Spain",2 +"ESP","ES","ES-MD","Madrid, Comunidad de","Autonomous community","Spain",2 +"ESP","ES","ES-ML","Melilla","Autonomous city","Spain",2 +"ESP","ES","ES-MU","Murcia","Province","Spain",2 +"ESP","ES","ES-NA","Navarra / Nafarroa","Province","Spain",2 +"ESP","ES","ES-NC","Navarra, Comunidad Foral de / Nafarroako Foru Komunitatea","Autonomous community","Spain",2 +"ESP","ES","ES-O","Asturias","Province","Spain",2 +"ESP","ES","ES-OR","Ourense","Province","Spain",2 +"ESP","ES","ES-P","Palencia","Province","Spain",2 +"ESP","ES","ES-PM","Balears","Province","Spain",2 +"ESP","ES","ES-PO","Pontevedra","Province","Spain",2 +"ESP","ES","ES-PV","País Vasco / Euskal Herria","Autonomous community","Spain",2 +"ESP","ES","ES-RI","La Rioja","Autonomous community","Spain",2 +"ESP","ES","ES-S","Cantabria","Province","Spain",2 +"ESP","ES","ES-SA","Salamanca","Province","Spain",2 +"ESP","ES","ES-SE","Sevilla","Province","Spain",2 +"ESP","ES","ES-SG","Segovia","Province","Spain",2 +"ESP","ES","ES-SO","Soria","Province","Spain",2 +"ESP","ES","ES-SS","Gipuzkoa","Province","Spain",2 +"ESP","ES","ES-T","Tarragona","Province","Spain",2 +"ESP","ES","ES-TE","Teruel","Province","Spain",2 +"ESP","ES","ES-TF","Santa Cruz de Tenerife","Province","Spain",2 +"ESP","ES","ES-TO","Toledo","Province","Spain",2 +"ESP","ES","ES-V","Valencia / València","Province","Spain",2 +"ESP","ES","ES-VA","Valladolid","Province","Spain",2 +"ESP","ES","ES-VC","Valenciana, Comunidad / Valenciana, Comunitat","Autonomous community","Spain",2 +"ESP","ES","ES-VI","Álava","Province","Spain",2 +"ESP","ES","ES-Z","Zaragoza","Province","Spain",2 +"ESP","ES","ES-ZA","Zamora","Province","Spain",2 +"ETH","ET","ET-AA","Ādīs Ābeba","Administration","Ethiopia",2 +"ETH","ET","ET-AF","Āfar","State","Ethiopia",2 +"ETH","ET","ET-AM","Āmara","State","Ethiopia",2 +"ETH","ET","ET-BE","Bīnshangul Gumuz","State","Ethiopia",2 +"ETH","ET","ET-DD","Dirē Dawa","Administration","Ethiopia",2 +"ETH","ET","ET-GA","Gambēla Hizboch","State","Ethiopia",2 +"ETH","ET","ET-HA","Hārerī Hizb","State","Ethiopia",2 +"ETH","ET","ET-OR","Oromīya","State","Ethiopia",2 +"ETH","ET","ET-SN","YeDebub Bihēroch Bihēreseboch na Hizboch","State","Ethiopia",2 +"ETH","ET","ET-SO","Sumalē","State","Ethiopia",2 +"ETH","ET","ET-TI","Tigray","State","Ethiopia",2 +"FIN","FI","FI-01","Ahvenanmaan maakunta","Region","Finland",2 +"FIN","FI","FI-02","Etelä-Karjala","Region","Finland",2 +"FIN","FI","FI-03","Etelä-Pohjanmaa","Region","Finland",2 +"FIN","FI","FI-04","Etelä-Savo","Region","Finland",2 +"FIN","FI","FI-05","Kainuu","Region","Finland",2 +"FIN","FI","FI-06","Kanta-Häme","Region","Finland",2 +"FIN","FI","FI-07","Keski-Pohjanmaa","Region","Finland",2 +"FIN","FI","FI-08","Keski-Suomi","Region","Finland",2 +"FIN","FI","FI-09","Kymenlaakso","Region","Finland",2 +"FIN","FI","FI-10","Lappi","Region","Finland",2 +"FIN","FI","FI-11","Pirkanmaa","Region","Finland",2 +"FIN","FI","FI-12","Pohjanmaa","Region","Finland",2 +"FIN","FI","FI-13","Pohjois-Karjala","Region","Finland",2 +"FIN","FI","FI-14","Pohjois-Pohjanmaa","Region","Finland",2 +"FIN","FI","FI-15","Pohjois-Savo","Region","Finland",2 +"FIN","FI","FI-16","Päijät-Häme","Region","Finland",2 +"FIN","FI","FI-17","Satakunta","Region","Finland",2 +"FIN","FI","FI-18","Uusimaa","Region","Finland",2 +"FIN","FI","FI-19","Varsinais-Suomi","Region","Finland",2 +"FJI","FJ","FJ-C","Central","Division","Fiji",2 +"FJI","FJ","FJ-E","Eastern","Division","Fiji",2 +"FJI","FJ","FJ-N","Northern","Division","Fiji",2 +"FJI","FJ","FJ-R","Rotuma","Dependency","Fiji",2 +"FJI","FJ","FJ-W","Western","Division","Fiji",2 +"FSM","FM","FM-KSA","Kosrae","State","Micronesia, Federated States of",2 +"FSM","FM","FM-PNI","Pohnpei","State","Micronesia, Federated States of",2 +"FSM","FM","FM-TRK","Chuuk","State","Micronesia, Federated States of",2 +"FSM","FM","FM-YAP","Yap","State","Micronesia, Federated States of",2 +"FRA","FR","FR-01","Ain","Metropolitan department","France",2 +"FRA","FR","FR-02","Aisne","Metropolitan department","France",2 +"FRA","FR","FR-03","Allier","Metropolitan department","France",2 +"FRA","FR","FR-04","Alpes-de-Haute-Provence","Metropolitan department","France",2 +"FRA","FR","FR-05","Hautes-Alpes","Metropolitan department","France",2 +"FRA","FR","FR-06","Alpes-Maritimes","Metropolitan department","France",2 +"FRA","FR","FR-07","Ardèche","Metropolitan department","France",2 +"FRA","FR","FR-08","Ardennes","Metropolitan department","France",2 +"FRA","FR","FR-09","Ariège","Metropolitan department","France",2 +"FRA","FR","FR-10","Aube","Metropolitan department","France",2 +"FRA","FR","FR-11","Aude","Metropolitan department","France",2 +"FRA","FR","FR-12","Aveyron","Metropolitan department","France",2 +"FRA","FR","FR-13","Bouches-du-Rhône","Metropolitan department","France",2 +"FRA","FR","FR-14","Calvados","Metropolitan department","France",2 +"FRA","FR","FR-15","Cantal","Metropolitan department","France",2 +"FRA","FR","FR-16","Charente","Metropolitan department","France",2 +"FRA","FR","FR-17","Charente-Maritime","Metropolitan department","France",2 +"FRA","FR","FR-18","Cher","Metropolitan department","France",2 +"FRA","FR","FR-19","Corrèze","Metropolitan department","France",2 +"FRA","FR","FR-21","Côte-d'Or","Metropolitan department","France",2 +"FRA","FR","FR-22","Côtes-d'Armor","Metropolitan department","France",2 +"FRA","FR","FR-23","Creuse","Metropolitan department","France",2 +"FRA","FR","FR-24","Dordogne","Metropolitan department","France",2 +"FRA","FR","FR-25","Doubs","Metropolitan department","France",2 +"FRA","FR","FR-26","Drôme","Metropolitan department","France",2 +"FRA","FR","FR-27","Eure","Metropolitan department","France",2 +"FRA","FR","FR-28","Eure-et-Loir","Metropolitan department","France",2 +"FRA","FR","FR-29","Finistère","Metropolitan department","France",2 +"FRA","FR","FR-2A","Corse-du-Sud","Metropolitan department","France",2 +"FRA","FR","FR-2B","Haute-Corse","Metropolitan department","France",2 +"FRA","FR","FR-30","Gard","Metropolitan department","France",2 +"FRA","FR","FR-31","Haute-Garonne","Metropolitan department","France",2 +"FRA","FR","FR-32","Gers","Metropolitan department","France",2 +"FRA","FR","FR-33","Gironde","Metropolitan department","France",2 +"FRA","FR","FR-34","Hérault","Metropolitan department","France",2 +"FRA","FR","FR-35","Ille-et-Vilaine","Metropolitan department","France",2 +"FRA","FR","FR-36","Indre","Metropolitan department","France",2 +"FRA","FR","FR-37","Indre-et-Loire","Metropolitan department","France",2 +"FRA","FR","FR-38","Isère","Metropolitan department","France",2 +"FRA","FR","FR-39","Jura","Metropolitan department","France",2 +"FRA","FR","FR-40","Landes","Metropolitan department","France",2 +"FRA","FR","FR-41","Loir-et-Cher","Metropolitan department","France",2 +"FRA","FR","FR-42","Loire","Metropolitan department","France",2 +"FRA","FR","FR-43","Haute-Loire","Metropolitan department","France",2 +"FRA","FR","FR-44","Loire-Atlantique","Metropolitan department","France",2 +"FRA","FR","FR-45","Loiret","Metropolitan department","France",2 +"FRA","FR","FR-46","Lot","Metropolitan department","France",2 +"FRA","FR","FR-47","Lot-et-Garonne","Metropolitan department","France",2 +"FRA","FR","FR-48","Lozère","Metropolitan department","France",2 +"FRA","FR","FR-49","Maine-et-Loire","Metropolitan department","France",2 +"FRA","FR","FR-50","Manche","Metropolitan department","France",2 +"FRA","FR","FR-51","Marne","Metropolitan department","France",2 +"FRA","FR","FR-52","Haute-Marne","Metropolitan department","France",2 +"FRA","FR","FR-53","Mayenne","Metropolitan department","France",2 +"FRA","FR","FR-54","Meurthe-et-Moselle","Metropolitan department","France",2 +"FRA","FR","FR-55","Meuse","Metropolitan department","France",2 +"FRA","FR","FR-56","Morbihan","Metropolitan department","France",2 +"FRA","FR","FR-57","Moselle","Metropolitan department","France",2 +"FRA","FR","FR-58","Nièvre","Metropolitan department","France",2 +"FRA","FR","FR-59","Nord","Metropolitan department","France",2 +"FRA","FR","FR-60","Oise","Metropolitan department","France",2 +"FRA","FR","FR-61","Orne","Metropolitan department","France",2 +"FRA","FR","FR-62","Pas-de-Calais","Metropolitan department","France",2 +"FRA","FR","FR-63","Puy-de-Dôme","Metropolitan department","France",2 +"FRA","FR","FR-64","Pyrénées-Atlantiques","Metropolitan department","France",2 +"FRA","FR","FR-65","Hautes-Pyrénées","Metropolitan department","France",2 +"FRA","FR","FR-66","Pyrénées-Orientales","Metropolitan department","France",2 +"FRA","FR","FR-67","Bas-Rhin","Metropolitan department","France",2 +"FRA","FR","FR-68","Haut-Rhin","Metropolitan department","France",2 +"FRA","FR","FR-69","Rhône","Metropolitan department","France",2 +"FRA","FR","FR-70","Haute-Saône","Metropolitan department","France",2 +"FRA","FR","FR-71","Saône-et-Loire","Metropolitan department","France",2 +"FRA","FR","FR-72","Sarthe","Metropolitan department","France",2 +"FRA","FR","FR-73","Savoie","Metropolitan department","France",2 +"FRA","FR","FR-74","Haute-Savoie","Metropolitan department","France",2 +"FRA","FR","FR-75","Paris","Metropolitan department","France",2 +"FRA","FR","FR-76","Seine-Maritime","Metropolitan department","France",2 +"FRA","FR","FR-77","Seine-et-Marne","Metropolitan department","France",2 +"FRA","FR","FR-78","Yvelines","Metropolitan department","France",2 +"FRA","FR","FR-79","Deux-Sèvres","Metropolitan department","France",2 +"FRA","FR","FR-80","Somme","Metropolitan department","France",2 +"FRA","FR","FR-81","Tarn","Metropolitan department","France",2 +"FRA","FR","FR-82","Tarn-et-Garonne","Metropolitan department","France",2 +"FRA","FR","FR-83","Var","Metropolitan department","France",2 +"FRA","FR","FR-84","Vaucluse","Metropolitan department","France",2 +"FRA","FR","FR-85","Vendée","Metropolitan department","France",2 +"FRA","FR","FR-86","Vienne","Metropolitan department","France",2 +"FRA","FR","FR-87","Haute-Vienne","Metropolitan department","France",2 +"FRA","FR","FR-88","Vosges","Metropolitan department","France",2 +"FRA","FR","FR-89","Yonne","Metropolitan department","France",2 +"FRA","FR","FR-90","Territoire de Belfort","Metropolitan department","France",2 +"FRA","FR","FR-91","Essonne","Metropolitan department","France",2 +"FRA","FR","FR-92","Hauts-de-Seine","Metropolitan department","France",2 +"FRA","FR","FR-93","Seine-Saint-Denis","Metropolitan department","France",2 +"FRA","FR","FR-94","Val-de-Marne","Metropolitan department","France",2 +"FRA","FR","FR-95","Val-d'Oise","Metropolitan department","France",2 +"FRA","FR","FR-ARA","Auvergne-Rhône-Alpes","Metropolitan region","France",2 +"FRA","FR","FR-BFC","Bourgogne-Franche-Comté","Metropolitan region","France",2 +"FRA","FR","FR-BL","Saint-Barthélemy","Overseas territorial collectivity","France",2 +"FRA","FR","FR-BRE","Bretagne","Metropolitan region","France",2 +"FRA","FR","FR-COR","Corse","Metropolitan region","France",2 +"FRA","FR","FR-CP","Clipperton","Dependency","France",2 +"FRA","FR","FR-CVL","Centre-Val de Loire","Metropolitan region","France",2 +"FRA","FR","FR-GES","Grand-Est","Metropolitan region","France",2 +"FRA","FR","FR-GF","Guyane (française)","Overseas territorial collectivity","France",2 +"FRA","FR","FR-GP","Guadeloupe","Overseas department","France",2 +"FRA","FR","FR-GUA","Guadeloupe","Overseas region","France",2 +"FRA","FR","FR-HDF","Hauts-de-France","Metropolitan region","France",2 +"FRA","FR","FR-IDF","Île-de-France","Metropolitan region","France",2 +"FRA","FR","FR-LRE","La Réunion","Overseas region","France",2 +"FRA","FR","FR-MAY","Mayotte","Overseas region","France",2 +"FRA","FR","FR-MF","Saint-Martin","Overseas territorial collectivity","France",2 +"FRA","FR","FR-MQ","Martinique","Overseas territorial collectivity","France",2 +"FRA","FR","FR-NAQ","Nouvelle-Aquitaine","Metropolitan region","France",2 +"FRA","FR","FR-NC","Nouvelle-Calédonie","Overseas territorial collectivity","France",2 +"FRA","FR","FR-NOR","Normandie","Metropolitan region","France",2 +"FRA","FR","FR-OCC","Occitanie","Metropolitan region","France",2 +"FRA","FR","FR-PAC","Provence-Alpes-Côte-d’Azur","Metropolitan region","France",2 +"FRA","FR","FR-PDL","Pays-de-la-Loire","Metropolitan region","France",2 +"FRA","FR","FR-PF","Polynésie française","Overseas territorial collectivity","France",2 +"FRA","FR","FR-PM","Saint-Pierre-et-Miquelon","Overseas territorial collectivity","France",2 +"FRA","FR","FR-RE","La Réunion","Overseas department","France",2 +"FRA","FR","FR-TF","Terres australes françaises","Overseas territorial collectivity","France",2 +"FRA","FR","FR-WF","Wallis-et-Futuna","Overseas territorial collectivity","France",2 +"FRA","FR","FR-YT","Mayotte","Overseas department","France",2 +"GAB","GA","GA-1","Estuaire","Province","Gabon",2 +"GAB","GA","GA-2","Haut-Ogooué","Province","Gabon",2 +"GAB","GA","GA-3","Moyen-Ogooué","Province","Gabon",2 +"GAB","GA","GA-4","Ngounié","Province","Gabon",2 +"GAB","GA","GA-5","Nyanga","Province","Gabon",2 +"GAB","GA","GA-6","Ogooué-Ivindo","Province","Gabon",2 +"GAB","GA","GA-7","Ogooué-Lolo","Province","Gabon",2 +"GAB","GA","GA-8","Ogooué-Maritime","Province","Gabon",2 +"GAB","GA","GA-9","Woleu-Ntem","Province","Gabon",2 +"GBR","GB","GB-ABC","Armagh, Banbridge and Craigavon","District","United Kingdom",2 +"GBR","GB","GB-ABD","Aberdeenshire","Council area","United Kingdom",2 +"GBR","GB","GB-ABE","Aberdeen City","Council area","United Kingdom",2 +"GBR","GB","GB-AGB","Argyll and Bute","Council area","United Kingdom",2 +"GBR","GB","GB-AGY","Isle of Anglesey; Sir Ynys Môn","Unitary authority","United Kingdom",2 +"GBR","GB","GB-AND","Ards and North Down","District","United Kingdom",2 +"GBR","GB","GB-ANN","Antrim and Newtownabbey","District","United Kingdom",2 +"GBR","GB","GB-ANS","Angus","Council area","United Kingdom",2 +"GBR","GB","GB-BAS","Bath and North East Somerset","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BBD","Blackburn with Darwen","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BDF","Bedford","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BDG","Barking and Dagenham","London borough","United Kingdom",2 +"GBR","GB","GB-BEN","Brent","London borough","United Kingdom",2 +"GBR","GB","GB-BEX","Bexley","London borough","United Kingdom",2 +"GBR","GB","GB-BFS","Belfast","District","United Kingdom",2 +"GBR","GB","GB-BGE","Bridgend; Pen-y-bont ar Ogwr","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BGW","Blaenau Gwent","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BIR","Birmingham","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-BKM","Buckinghamshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-BMH","Bournemouth","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BNE","Barnet","London borough","United Kingdom",2 +"GBR","GB","GB-BNH","Brighton and Hove","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BNS","Barnsley","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-BOL","Bolton","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-BPL","Blackpool","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BRC","Bracknell Forest","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BRD","Bradford","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-BRY","Bromley","London borough","United Kingdom",2 +"GBR","GB","GB-BST","Bristol, City of","Unitary authority","United Kingdom",2 +"GBR","GB","GB-BUR","Bury","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-CAM","Cambridgeshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-CAY","Caerphilly; Caerffili","Unitary authority","United Kingdom",2 +"GBR","GB","GB-CBF","Central Bedfordshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-CCG","Causeway Coast and Glens","District","United Kingdom",2 +"GBR","GB","GB-CGN","Ceredigion; Sir Ceredigion","Unitary authority","United Kingdom",2 +"GBR","GB","GB-CHE","Cheshire East","Unitary authority","United Kingdom",2 +"GBR","GB","GB-CHW","Cheshire West and Chester","Unitary authority","United Kingdom",2 +"GBR","GB","GB-CLD","Calderdale","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-CLK","Clackmannanshire","Council area","United Kingdom",2 +"GBR","GB","GB-CMA","Cumbria","Two-tier county","United Kingdom",2 +"GBR","GB","GB-CMD","Camden","London borough","United Kingdom",2 +"GBR","GB","GB-CMN","Carmarthenshire; Sir Gaerfyrddin","Unitary authority","United Kingdom",2 +"GBR","GB","GB-CON","Cornwall","Unitary authority","United Kingdom",2 +"GBR","GB","GB-COV","Coventry","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-CRF","Cardiff; Caerdydd","Unitary authority","United Kingdom",2 +"GBR","GB","GB-CRY","Croydon","London borough","United Kingdom",2 +"GBR","GB","GB-CWY","Conwy","Unitary authority","United Kingdom",2 +"GBR","GB","GB-DAL","Darlington","Unitary authority","United Kingdom",2 +"GBR","GB","GB-DBY","Derbyshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-DEN","Denbighshire; Sir Ddinbych","Unitary authority","United Kingdom",2 +"GBR","GB","GB-DER","Derby","Unitary authority","United Kingdom",2 +"GBR","GB","GB-DEV","Devon","Two-tier county","United Kingdom",2 +"GBR","GB","GB-DGY","Dumfries and Galloway","Council area","United Kingdom",2 +"GBR","GB","GB-DNC","Doncaster","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-DND","Dundee City","Council area","United Kingdom",2 +"GBR","GB","GB-DOR","Dorset","Two-tier county","United Kingdom",2 +"GBR","GB","GB-DRS","Derry and Strabane","District","United Kingdom",2 +"GBR","GB","GB-DUD","Dudley","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-DUR","Durham County","Unitary authority","United Kingdom",2 +"GBR","GB","GB-EAL","Ealing","London borough","United Kingdom",2 +"GBR","GB","GB-EAW","England and Wales","Nation","United Kingdom",2 +"GBR","GB","GB-EAY","East Ayrshire","Council area","United Kingdom",2 +"GBR","GB","GB-EDH","Edinburgh, City of","Council area","United Kingdom",2 +"GBR","GB","GB-EDU","East Dunbartonshire","Council area","United Kingdom",2 +"GBR","GB","GB-ELN","East Lothian","Council area","United Kingdom",2 +"GBR","GB","GB-ELS","Eilean Siar","Council area","United Kingdom",2 +"GBR","GB","GB-ENF","Enfield","London borough","United Kingdom",2 +"GBR","GB","GB-ENG","England","Country","United Kingdom",2 +"GBR","GB","GB-ERW","East Renfrewshire","Council area","United Kingdom",2 +"GBR","GB","GB-ERY","East Riding of Yorkshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-ESS","Essex","Two-tier county","United Kingdom",2 +"GBR","GB","GB-ESX","East Sussex","Two-tier county","United Kingdom",2 +"GBR","GB","GB-FAL","Falkirk","Council area","United Kingdom",2 +"GBR","GB","GB-FIF","Fife","Council area","United Kingdom",2 +"GBR","GB","GB-FLN","Flintshire; Sir y Fflint","Unitary authority","United Kingdom",2 +"GBR","GB","GB-FMO","Fermanagh and Omagh","District","United Kingdom",2 +"GBR","GB","GB-GAT","Gateshead","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-GBN","Great Britain","Nation","United Kingdom",2 +"GBR","GB","GB-GLG","Glasgow City","Council area","United Kingdom",2 +"GBR","GB","GB-GLS","Gloucestershire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-GRE","Greenwich","London borough","United Kingdom",2 +"GBR","GB","GB-GWN","Gwynedd","Unitary authority","United Kingdom",2 +"GBR","GB","GB-HAL","Halton","Unitary authority","United Kingdom",2 +"GBR","GB","GB-HAM","Hampshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-HAV","Havering","London borough","United Kingdom",2 +"GBR","GB","GB-HCK","Hackney","London borough","United Kingdom",2 +"GBR","GB","GB-HEF","Herefordshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-HIL","Hillingdon","London borough","United Kingdom",2 +"GBR","GB","GB-HLD","Highland","Council area","United Kingdom",2 +"GBR","GB","GB-HMF","Hammersmith and Fulham","London borough","United Kingdom",2 +"GBR","GB","GB-HNS","Hounslow","London borough","United Kingdom",2 +"GBR","GB","GB-HPL","Hartlepool","Unitary authority","United Kingdom",2 +"GBR","GB","GB-HRT","Hertfordshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-HRW","Harrow","London borough","United Kingdom",2 +"GBR","GB","GB-HRY","Haringey","London borough","United Kingdom",2 +"GBR","GB","GB-IOS","Isles of Scilly","Unitary authority","United Kingdom",2 +"GBR","GB","GB-IOW","Isle of Wight","Unitary authority","United Kingdom",2 +"GBR","GB","GB-ISL","Islington","London borough","United Kingdom",2 +"GBR","GB","GB-IVC","Inverclyde","Council area","United Kingdom",2 +"GBR","GB","GB-KEC","Kensington and Chelsea","London borough","United Kingdom",2 +"GBR","GB","GB-KEN","Kent","Two-tier county","United Kingdom",2 +"GBR","GB","GB-KHL","Kingston upon Hull","Unitary authority","United Kingdom",2 +"GBR","GB","GB-KIR","Kirklees","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-KTT","Kingston upon Thames","London borough","United Kingdom",2 +"GBR","GB","GB-KWL","Knowsley","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-LAN","Lancashire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-LBC","Lisburn and Castlereagh","District","United Kingdom",2 +"GBR","GB","GB-LBH","Lambeth","London borough","United Kingdom",2 +"GBR","GB","GB-LCE","Leicester","Unitary authority","United Kingdom",2 +"GBR","GB","GB-LDS","Leeds","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-LEC","Leicestershire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-LEW","Lewisham","London borough","United Kingdom",2 +"GBR","GB","GB-LIN","Lincolnshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-LIV","Liverpool","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-LND","London, City of","City corporation","United Kingdom",2 +"GBR","GB","GB-LUT","Luton","Unitary authority","United Kingdom",2 +"GBR","GB","GB-MAN","Manchester","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-MDB","Middlesbrough","Unitary authority","United Kingdom",2 +"GBR","GB","GB-MDW","Medway","Unitary authority","United Kingdom",2 +"GBR","GB","GB-MEA","Mid and East Antrim","District","United Kingdom",2 +"GBR","GB","GB-MIK","Milton Keynes","Unitary authority","United Kingdom",2 +"GBR","GB","GB-MLN","Midlothian","Council area","United Kingdom",2 +"GBR","GB","GB-MON","Monmouthshire; Sir Fynwy","Unitary authority","United Kingdom",2 +"GBR","GB","GB-MRT","Merton","London borough","United Kingdom",2 +"GBR","GB","GB-MRY","Moray","Council area","United Kingdom",2 +"GBR","GB","GB-MTY","Merthyr Tydfil; Merthyr Tudful","Unitary authority","United Kingdom",2 +"GBR","GB","GB-MUL","Mid Ulster","District","United Kingdom",2 +"GBR","GB","GB-NAY","North Ayrshire","Council area","United Kingdom",2 +"GBR","GB","GB-NBL","Northumberland","Unitary authority","United Kingdom",2 +"GBR","GB","GB-NEL","North East Lincolnshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-NET","Newcastle upon Tyne","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-NFK","Norfolk","Two-tier county","United Kingdom",2 +"GBR","GB","GB-NGM","Nottingham","Unitary authority","United Kingdom",2 +"GBR","GB","GB-NIR","Northern Ireland","Province","United Kingdom",2 +"GBR","GB","GB-NLK","North Lanarkshire","Council area","United Kingdom",2 +"GBR","GB","GB-NLN","North Lincolnshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-NMD","Newry, Mourne and Down","District","United Kingdom",2 +"GBR","GB","GB-NSM","North Somerset","Unitary authority","United Kingdom",2 +"GBR","GB","GB-NTH","Northamptonshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-NTL","Neath Port Talbot; Castell-nedd Port Talbot","Unitary authority","United Kingdom",2 +"GBR","GB","GB-NTT","Nottinghamshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-NTY","North Tyneside","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-NWM","Newham","London borough","United Kingdom",2 +"GBR","GB","GB-NWP","Newport; Casnewydd","Unitary authority","United Kingdom",2 +"GBR","GB","GB-NYK","North Yorkshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-OLD","Oldham","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-ORK","Orkney Islands","Council area","United Kingdom",2 +"GBR","GB","GB-OXF","Oxfordshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-PEM","Pembrokeshire; Sir Benfro","Unitary authority","United Kingdom",2 +"GBR","GB","GB-PKN","Perth and Kinross","Council area","United Kingdom",2 +"GBR","GB","GB-PLY","Plymouth","Unitary authority","United Kingdom",2 +"GBR","GB","GB-POL","Poole","Unitary authority","United Kingdom",2 +"GBR","GB","GB-POR","Portsmouth","Unitary authority","United Kingdom",2 +"GBR","GB","GB-POW","Powys","Unitary authority","United Kingdom",2 +"GBR","GB","GB-PTE","Peterborough","Unitary authority","United Kingdom",2 +"GBR","GB","GB-RCC","Redcar and Cleveland","Unitary authority","United Kingdom",2 +"GBR","GB","GB-RCH","Rochdale","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-RCT","Rhondda, Cynon, Taff; Rhondda, Cynon, Taf","Unitary authority","United Kingdom",2 +"GBR","GB","GB-RDB","Redbridge","London borough","United Kingdom",2 +"GBR","GB","GB-RDG","Reading","Unitary authority","United Kingdom",2 +"GBR","GB","GB-RFW","Renfrewshire","Council area","United Kingdom",2 +"GBR","GB","GB-RIC","Richmond upon Thames","London borough","United Kingdom",2 +"GBR","GB","GB-ROT","Rotherham","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-RUT","Rutland","Unitary authority","United Kingdom",2 +"GBR","GB","GB-SAW","Sandwell","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SAY","South Ayrshire","Council area","United Kingdom",2 +"GBR","GB","GB-SCB","Scottish Borders, The","Council area","United Kingdom",2 +"GBR","GB","GB-SCT","Scotland","Country","United Kingdom",2 +"GBR","GB","GB-SFK","Suffolk","Two-tier county","United Kingdom",2 +"GBR","GB","GB-SFT","Sefton","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SGC","South Gloucestershire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-SHF","Sheffield","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SHN","St. Helens","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SHR","Shropshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-SKP","Stockport","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SLF","Salford","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SLG","Slough","Unitary authority","United Kingdom",2 +"GBR","GB","GB-SLK","South Lanarkshire","Council area","United Kingdom",2 +"GBR","GB","GB-SND","Sunderland","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SOL","Solihull","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SOM","Somerset","Two-tier county","United Kingdom",2 +"GBR","GB","GB-SOS","Southend-on-Sea","Unitary authority","United Kingdom",2 +"GBR","GB","GB-SRY","Surrey","Two-tier county","United Kingdom",2 +"GBR","GB","GB-STE","Stoke-on-Trent","Unitary authority","United Kingdom",2 +"GBR","GB","GB-STG","Stirling","Council area","United Kingdom",2 +"GBR","GB","GB-STH","Southampton","Unitary authority","United Kingdom",2 +"GBR","GB","GB-STN","Sutton","London borough","United Kingdom",2 +"GBR","GB","GB-STS","Staffordshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-STT","Stockton-on-Tees","Unitary authority","United Kingdom",2 +"GBR","GB","GB-STY","South Tyneside","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-SWA","Swansea; Abertawe","Unitary authority","United Kingdom",2 +"GBR","GB","GB-SWD","Swindon","Unitary authority","United Kingdom",2 +"GBR","GB","GB-SWK","Southwark","London borough","United Kingdom",2 +"GBR","GB","GB-TAM","Tameside","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-TFW","Telford and Wrekin","Unitary authority","United Kingdom",2 +"GBR","GB","GB-THR","Thurrock","Unitary authority","United Kingdom",2 +"GBR","GB","GB-TOB","Torbay","Unitary authority","United Kingdom",2 +"GBR","GB","GB-TOF","Torfaen; Tor-faen","Unitary authority","United Kingdom",2 +"GBR","GB","GB-TRF","Trafford","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-TWH","Tower Hamlets","London borough","United Kingdom",2 +"GBR","GB","GB-UKM","United Kingdom","Nation","United Kingdom",2 +"GBR","GB","GB-VGL","Vale of Glamorgan, The; Bro Morgannwg","Unitary authority","United Kingdom",2 +"GBR","GB","GB-WAR","Warwickshire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-WBK","West Berkshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-WDU","West Dunbartonshire","Council area","United Kingdom",2 +"GBR","GB","GB-WFT","Waltham Forest","London borough","United Kingdom",2 +"GBR","GB","GB-WGN","Wigan","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-WIL","Wiltshire","Unitary authority","United Kingdom",2 +"GBR","GB","GB-WKF","Wakefield","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-WLL","Walsall","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-WLN","West Lothian","Council area","United Kingdom",2 +"GBR","GB","GB-WLS","Wales; Cymru","Country","United Kingdom",2 +"GBR","GB","GB-WLV","Wolverhampton","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-WND","Wandsworth","London borough","United Kingdom",2 +"GBR","GB","GB-WNM","Windsor and Maidenhead","Unitary authority","United Kingdom",2 +"GBR","GB","GB-WOK","Wokingham","Unitary authority","United Kingdom",2 +"GBR","GB","GB-WOR","Worcestershire","Two-tier county","United Kingdom",2 +"GBR","GB","GB-WRL","Wirral","Metropolitan district","United Kingdom",2 +"GBR","GB","GB-WRT","Warrington","Unitary authority","United Kingdom",2 +"GBR","GB","GB-WRX","Wrexham; Wrecsam","Unitary authority","United Kingdom",2 +"GBR","GB","GB-WSM","Westminster","London borough","United Kingdom",2 +"GBR","GB","GB-WSX","West Sussex","Two-tier county","United Kingdom",2 +"GBR","GB","GB-YOR","York","Unitary authority","United Kingdom",2 +"GBR","GB","GB-ZET","Shetland Islands","Council area","United Kingdom",2 +"GRD","GD","GD-01","Saint Andrew","Parish","Grenada",2 +"GRD","GD","GD-02","Saint David","Parish","Grenada",2 +"GRD","GD","GD-03","Saint George","Parish","Grenada",2 +"GRD","GD","GD-04","Saint John","Parish","Grenada",2 +"GRD","GD","GD-05","Saint Mark","Parish","Grenada",2 +"GRD","GD","GD-06","Saint Patrick","Parish","Grenada",2 +"GRD","GD","GD-10","Southern Grenadine Islands","Dependency","Grenada",2 +"GEO","GE","GE-AB","Abkhazia","Autonomous republic","Georgia",2 +"GEO","GE","GE-AJ","Ajaria","Autonomous republic","Georgia",2 +"GEO","GE","GE-GU","Guria","Region","Georgia",2 +"GEO","GE","GE-IM","Imeret’i","Region","Georgia",2 +"GEO","GE","GE-KA","Kakhet’i","Region","Georgia",2 +"GEO","GE","GE-KK","K’vemo K’art’li","Region","Georgia",2 +"GEO","GE","GE-MM","Mts’khet’a-Mt’ianet’i","Region","Georgia",2 +"GEO","GE","GE-RL","Racha-Lech’khumi-K’vemo Svanet’i","Region","Georgia",2 +"GEO","GE","GE-SJ","Samts’khe-Javakhet’i","Region","Georgia",2 +"GEO","GE","GE-SK","Shida K’art’li","Region","Georgia",2 +"GEO","GE","GE-SZ","Samegrelo-Zemo Svanet’i","Region","Georgia",2 +"GEO","GE","GE-TB","T’bilisi","City","Georgia",2 +"GHA","GH","GH-AA","Greater Accra","Region","Ghana",2 +"GHA","GH","GH-AH","Ashanti","Region","Ghana",2 +"GHA","GH","GH-BA","Brong-Ahafo","Region","Ghana",2 +"GHA","GH","GH-CP","Central","Region","Ghana",2 +"GHA","GH","GH-EP","Eastern","Region","Ghana",2 +"GHA","GH","GH-NP","Northern","Region","Ghana",2 +"GHA","GH","GH-TV","Volta","Region","Ghana",2 +"GHA","GH","GH-UE","Upper East","Region","Ghana",2 +"GHA","GH","GH-UW","Upper West","Region","Ghana",2 +"GHA","GH","GH-WP","Western","Region","Ghana",2 +"GRL","GL","GL-KU","Kommune Kujalleq","Municipality","Greenland",2 +"GRL","GL","GL-QA","Qaasuitsup Kommunia","Municipality","Greenland",2 +"GRL","GL","GL-QE","Qeqqata Kommunia","Municipality","Greenland",2 +"GRL","GL","GL-SM","Kommuneqarfik Sermersooq","Municipality","Greenland",2 +"GMB","GM","GM-B","Banjul","City","Gambia",2 +"GMB","GM","GM-L","Lower River","Division","Gambia",2 +"GMB","GM","GM-M","Central River","Division","Gambia",2 +"GMB","GM","GM-N","North Bank","Division","Gambia",2 +"GMB","GM","GM-U","Upper River","Division","Gambia",2 +"GMB","GM","GM-W","Western","Division","Gambia",2 +"GIN","GN","GN-B","Boké","Governorate","Guinea",2 +"GIN","GN","GN-BE","Beyla","Prefecture","Guinea",2 +"GIN","GN","GN-BF","Boffa","Prefecture","Guinea",2 +"GIN","GN","GN-BK","Boké","Prefecture","Guinea",2 +"GIN","GN","GN-C","Conakry","Special zone","Guinea",2 +"GIN","GN","GN-CO","Coyah","Prefecture","Guinea",2 +"GIN","GN","GN-D","Kindia","Governorate","Guinea",2 +"GIN","GN","GN-DB","Dabola","Prefecture","Guinea",2 +"GIN","GN","GN-DI","Dinguiraye","Prefecture","Guinea",2 +"GIN","GN","GN-DL","Dalaba","Prefecture","Guinea",2 +"GIN","GN","GN-DU","Dubréka","Prefecture","Guinea",2 +"GIN","GN","GN-F","Faranah","Governorate","Guinea",2 +"GIN","GN","GN-FA","Faranah","Prefecture","Guinea",2 +"GIN","GN","GN-FO","Forécariah","Prefecture","Guinea",2 +"GIN","GN","GN-FR","Fria","Prefecture","Guinea",2 +"GIN","GN","GN-GA","Gaoual","Prefecture","Guinea",2 +"GIN","GN","GN-GU","Guékédou","Prefecture","Guinea",2 +"GIN","GN","GN-K","Kankan","Governorate","Guinea",2 +"GIN","GN","GN-KA","Kankan","Prefecture","Guinea",2 +"GIN","GN","GN-KB","Koubia","Prefecture","Guinea",2 +"GIN","GN","GN-KD","Kindia","Prefecture","Guinea",2 +"GIN","GN","GN-KE","Kérouané","Prefecture","Guinea",2 +"GIN","GN","GN-KN","Koundara","Prefecture","Guinea",2 +"GIN","GN","GN-KO","Kouroussa","Prefecture","Guinea",2 +"GIN","GN","GN-KS","Kissidougou","Prefecture","Guinea",2 +"GIN","GN","GN-L","Labé","Governorate","Guinea",2 +"GIN","GN","GN-LA","Labé","Prefecture","Guinea",2 +"GIN","GN","GN-LE","Lélouma","Prefecture","Guinea",2 +"GIN","GN","GN-LO","Lola","Prefecture","Guinea",2 +"GIN","GN","GN-M","Mamou","Governorate","Guinea",2 +"GIN","GN","GN-MC","Macenta","Prefecture","Guinea",2 +"GIN","GN","GN-MD","Mandiana","Prefecture","Guinea",2 +"GIN","GN","GN-ML","Mali","Prefecture","Guinea",2 +"GIN","GN","GN-MM","Mamou","Prefecture","Guinea",2 +"GIN","GN","GN-N","Nzérékoré","Governorate","Guinea",2 +"GIN","GN","GN-NZ","Nzérékoré","Prefecture","Guinea",2 +"GIN","GN","GN-PI","Pita","Prefecture","Guinea",2 +"GIN","GN","GN-SI","Siguiri","Prefecture","Guinea",2 +"GIN","GN","GN-TE","Télimélé","Prefecture","Guinea",2 +"GIN","GN","GN-TO","Tougué","Prefecture","Guinea",2 +"GIN","GN","GN-YO","Yomou","Prefecture","Guinea",2 +"GNQ","GQ","GQ-AN","Annobón","Province","Equatorial Guinea",2 +"GNQ","GQ","GQ-BN","Bioko Norte","Province","Equatorial Guinea",2 +"GNQ","GQ","GQ-BS","Bioko Sur","Province","Equatorial Guinea",2 +"GNQ","GQ","GQ-C","Región Continental","Region","Equatorial Guinea",2 +"GNQ","GQ","GQ-CS","Centro Sur","Province","Equatorial Guinea",2 +"GNQ","GQ","GQ-I","Región Insular","Region","Equatorial Guinea",2 +"GNQ","GQ","GQ-KN","Kié-Ntem","Province","Equatorial Guinea",2 +"GNQ","GQ","GQ-LI","Litoral","Province","Equatorial Guinea",2 +"GNQ","GQ","GQ-WN","Wele-Nzas","Province","Equatorial Guinea",2 +"GRC","GR","GR-01","Aitolia kai Akarnania","Department","Greece",2 +"GRC","GR","GR-03","Voiotia","Department","Greece",2 +"GRC","GR","GR-04","Evvoias","Department","Greece",2 +"GRC","GR","GR-05","Evrytania","Department","Greece",2 +"GRC","GR","GR-06","Fthiotida","Department","Greece",2 +"GRC","GR","GR-07","Fokida","Department","Greece",2 +"GRC","GR","GR-11","Argolida","Department","Greece",2 +"GRC","GR","GR-12","Arkadia","Department","Greece",2 +"GRC","GR","GR-13","Achaïa","Department","Greece",2 +"GRC","GR","GR-14","Ileia","Department","Greece",2 +"GRC","GR","GR-15","Korinthia","Department","Greece",2 +"GRC","GR","GR-16","Lakonia","Department","Greece",2 +"GRC","GR","GR-17","Messinia","Department","Greece",2 +"GRC","GR","GR-21","Zakynthos","Department","Greece",2 +"GRC","GR","GR-22","Kerkyra","Department","Greece",2 +"GRC","GR","GR-23","Kefallonia","Department","Greece",2 +"GRC","GR","GR-24","Lefkada","Department","Greece",2 +"GRC","GR","GR-31","Arta","Department","Greece",2 +"GRC","GR","GR-32","Thesprotia","Department","Greece",2 +"GRC","GR","GR-33","Ioannina","Department","Greece",2 +"GRC","GR","GR-34","Preveza","Department","Greece",2 +"GRC","GR","GR-41","Karditsa","Department","Greece",2 +"GRC","GR","GR-42","Larisa","Department","Greece",2 +"GRC","GR","GR-43","Magnisia","Department","Greece",2 +"GRC","GR","GR-44","Trikala","Department","Greece",2 +"GRC","GR","GR-51","Grevena","Department","Greece",2 +"GRC","GR","GR-52","Drama","Department","Greece",2 +"GRC","GR","GR-53","Imathia","Department","Greece",2 +"GRC","GR","GR-54","Thessaloniki","Department","Greece",2 +"GRC","GR","GR-55","Kavala","Department","Greece",2 +"GRC","GR","GR-56","Kastoria","Department","Greece",2 +"GRC","GR","GR-57","Kilkis","Department","Greece",2 +"GRC","GR","GR-58","Kozani","Department","Greece",2 +"GRC","GR","GR-59","Pella","Department","Greece",2 +"GRC","GR","GR-61","Pieria","Department","Greece",2 +"GRC","GR","GR-62","Serres","Department","Greece",2 +"GRC","GR","GR-63","Florina","Department","Greece",2 +"GRC","GR","GR-64","Chalkidiki","Department","Greece",2 +"GRC","GR","GR-69","Agio Oros","Self-governed part","Greece",2 +"GRC","GR","GR-71","Evros","Department","Greece",2 +"GRC","GR","GR-72","Xanthi","Department","Greece",2 +"GRC","GR","GR-73","Rodopi","Department","Greece",2 +"GRC","GR","GR-81","Dodekanisos","Department","Greece",2 +"GRC","GR","GR-82","Kyklades","Department","Greece",2 +"GRC","GR","GR-83","Lesvos","Department","Greece",2 +"GRC","GR","GR-84","Samos","Department","Greece",2 +"GRC","GR","GR-85","Chios","Department","Greece",2 +"GRC","GR","GR-91","Irakleio","Department","Greece",2 +"GRC","GR","GR-92","Lasithi","Department","Greece",2 +"GRC","GR","GR-93","Rethymno","Department","Greece",2 +"GRC","GR","GR-94","Chania","Department","Greece",2 +"GRC","GR","GR-A","Anatoliki Makedonia kai Thraki","Administrative region","Greece",2 +"GRC","GR","GR-A1","Attiki","Department","Greece",2 +"GRC","GR","GR-B","Kentriki Makedonia","Administrative region","Greece",2 +"GRC","GR","GR-C","Dytiki Makedonia","Administrative region","Greece",2 +"GRC","GR","GR-D","Ipeiros","Administrative region","Greece",2 +"GRC","GR","GR-E","Thessalia","Administrative region","Greece",2 +"GRC","GR","GR-F","Ionia Nisia","Administrative region","Greece",2 +"GRC","GR","GR-G","Dytiki Ellada","Administrative region","Greece",2 +"GRC","GR","GR-H","Sterea Ellada","Administrative region","Greece",2 +"GRC","GR","GR-I","Attiki","Administrative region","Greece",2 +"GRC","GR","GR-J","Peloponnisos","Administrative region","Greece",2 +"GRC","GR","GR-K","Voreio Aigaio","Administrative region","Greece",2 +"GRC","GR","GR-L","Notio Aigaio","Administrative region","Greece",2 +"GRC","GR","GR-M","Kriti","Administrative region","Greece",2 +"GTM","GT","GT-AV","Alta Verapaz","Department","Guatemala",2 +"GTM","GT","GT-BV","Baja Verapaz","Department","Guatemala",2 +"GTM","GT","GT-CM","Chimaltenango","Department","Guatemala",2 +"GTM","GT","GT-CQ","Chiquimula","Department","Guatemala",2 +"GTM","GT","GT-ES","Escuintla","Department","Guatemala",2 +"GTM","GT","GT-GU","Guatemala","Department","Guatemala",2 +"GTM","GT","GT-HU","Huehuetenango","Department","Guatemala",2 +"GTM","GT","GT-IZ","Izabal","Department","Guatemala",2 +"GTM","GT","GT-JA","Jalapa","Department","Guatemala",2 +"GTM","GT","GT-JU","Jutiapa","Department","Guatemala",2 +"GTM","GT","GT-PE","Petén","Department","Guatemala",2 +"GTM","GT","GT-PR","El Progreso","Department","Guatemala",2 +"GTM","GT","GT-QC","Quiché","Department","Guatemala",2 +"GTM","GT","GT-QZ","Quetzaltenango","Department","Guatemala",2 +"GTM","GT","GT-RE","Retalhuleu","Department","Guatemala",2 +"GTM","GT","GT-SA","Sacatepéquez","Department","Guatemala",2 +"GTM","GT","GT-SM","San Marcos","Department","Guatemala",2 +"GTM","GT","GT-SO","Sololá","Department","Guatemala",2 +"GTM","GT","GT-SR","Santa Rosa","Department","Guatemala",2 +"GTM","GT","GT-SU","Suchitepéquez","Department","Guatemala",2 +"GTM","GT","GT-TO","Totonicapán","Department","Guatemala",2 +"GTM","GT","GT-ZA","Zacapa","Department","Guatemala",2 +"GNB","GW","GW-BA","Bafatá","Region","Guinea-Bissau",2 +"GNB","GW","GW-BL","Bolama","Region","Guinea-Bissau",2 +"GNB","GW","GW-BM","Biombo","Region","Guinea-Bissau",2 +"GNB","GW","GW-BS","Bissau","Autonomous sector","Guinea-Bissau",2 +"GNB","GW","GW-CA","Cacheu","Region","Guinea-Bissau",2 +"GNB","GW","GW-GA","Gabú","Region","Guinea-Bissau",2 +"GNB","GW","GW-L","Leste","Province","Guinea-Bissau",2 +"GNB","GW","GW-N","Norte","Province","Guinea-Bissau",2 +"GNB","GW","GW-OI","Oio","Region","Guinea-Bissau",2 +"GNB","GW","GW-QU","Quinara","Region","Guinea-Bissau",2 +"GNB","GW","GW-S","Sul","Province","Guinea-Bissau",2 +"GNB","GW","GW-TO","Tombali","Region","Guinea-Bissau",2 +"GUY","GY","GY-BA","Barima-Waini","Region","Guyana",2 +"GUY","GY","GY-CU","Cuyuni-Mazaruni","Region","Guyana",2 +"GUY","GY","GY-DE","Demerara-Mahaica","Region","Guyana",2 +"GUY","GY","GY-EB","East Berbice-Corentyne","Region","Guyana",2 +"GUY","GY","GY-ES","Essequibo Islands-West Demerara","Region","Guyana",2 +"GUY","GY","GY-MA","Mahaica-Berbice","Region","Guyana",2 +"GUY","GY","GY-PM","Pomeroon-Supenaam","Region","Guyana",2 +"GUY","GY","GY-PT","Potaro-Siparuni","Region","Guyana",2 +"GUY","GY","GY-UD","Upper Demerara-Berbice","Region","Guyana",2 +"GUY","GY","GY-UT","Upper Takutu-Upper Essequibo","Region","Guyana",2 +"HND","HN","HN-AT","Atlántida","Department","Honduras",2 +"HND","HN","HN-CH","Choluteca","Department","Honduras",2 +"HND","HN","HN-CL","Colón","Department","Honduras",2 +"HND","HN","HN-CM","Comayagua","Department","Honduras",2 +"HND","HN","HN-CP","Copán","Department","Honduras",2 +"HND","HN","HN-CR","Cortés","Department","Honduras",2 +"HND","HN","HN-EP","El Paraíso","Department","Honduras",2 +"HND","HN","HN-FM","Francisco Morazán","Department","Honduras",2 +"HND","HN","HN-GD","Gracias a Dios","Department","Honduras",2 +"HND","HN","HN-IB","Islas de la Bahía","Department","Honduras",2 +"HND","HN","HN-IN","Intibucá","Department","Honduras",2 +"HND","HN","HN-LE","Lempira","Department","Honduras",2 +"HND","HN","HN-LP","La Paz","Department","Honduras",2 +"HND","HN","HN-OC","Ocotepeque","Department","Honduras",2 +"HND","HN","HN-OL","Olancho","Department","Honduras",2 +"HND","HN","HN-SB","Santa Bárbara","Department","Honduras",2 +"HND","HN","HN-VA","Valle","Department","Honduras",2 +"HND","HN","HN-YO","Yoro","Department","Honduras",2 +"HRV","HR","HR-01","Zagrebačka županija","County","Croatia",2 +"HRV","HR","HR-02","Krapinsko-zagorska županija","County","Croatia",2 +"HRV","HR","HR-03","Sisačko-moslavačka županija","County","Croatia",2 +"HRV","HR","HR-04","Karlovačka županija","County","Croatia",2 +"HRV","HR","HR-05","Varaždinska županija","County","Croatia",2 +"HRV","HR","HR-06","Koprivničko-križevačka županija","County","Croatia",2 +"HRV","HR","HR-07","Bjelovarsko-bilogorska županija","County","Croatia",2 +"HRV","HR","HR-08","Primorsko-goranska županija","County","Croatia",2 +"HRV","HR","HR-09","Ličko-senjska županija","County","Croatia",2 +"HRV","HR","HR-10","Virovitičko-podravska županija","County","Croatia",2 +"HRV","HR","HR-11","Požeško-slavonska županija","County","Croatia",2 +"HRV","HR","HR-12","Brodsko-posavska županija","County","Croatia",2 +"HRV","HR","HR-13","Zadarska županija","County","Croatia",2 +"HRV","HR","HR-14","Osječko-baranjska županija","County","Croatia",2 +"HRV","HR","HR-15","Šibensko-kninska županija","County","Croatia",2 +"HRV","HR","HR-16","Vukovarsko-srijemska županija","County","Croatia",2 +"HRV","HR","HR-17","Splitsko-dalmatinska županija","County","Croatia",2 +"HRV","HR","HR-18","Istarska županija","County","Croatia",2 +"HRV","HR","HR-19","Dubrovačko-neretvanska županija","County","Croatia",2 +"HRV","HR","HR-20","Međimurska županija","County","Croatia",2 +"HRV","HR","HR-21","Grad Zagreb","City","Croatia",2 +"HTI","HT","HT-AR","Artibonite","Department","Haiti",2 +"HTI","HT","HT-CE","Centre","Department","Haiti",2 +"HTI","HT","HT-GA","Grande-Anse","Department","Haiti",2 +"HTI","HT","HT-ND","Nord","Department","Haiti",2 +"HTI","HT","HT-NE","Nord-Est","Department","Haiti",2 +"HTI","HT","HT-NO","Nord-Ouest","Department","Haiti",2 +"HTI","HT","HT-OU","Ouest","Department","Haiti",2 +"HTI","HT","HT-SD","Sud","Department","Haiti",2 +"HTI","HT","HT-SE","Sud-Est","Department","Haiti",2 +"HUN","HU","HU-BA","Baranya","County","Hungary",2 +"HUN","HU","HU-BC","Békéscsaba","City with county rights","Hungary",2 +"HUN","HU","HU-BE","Békés","County","Hungary",2 +"HUN","HU","HU-BK","Bács-Kiskun","County","Hungary",2 +"HUN","HU","HU-BU","Budapest","Capital city","Hungary",2 +"HUN","HU","HU-BZ","Borsod-Abaúj-Zemplén","County","Hungary",2 +"HUN","HU","HU-CS","Csongrád","County","Hungary",2 +"HUN","HU","HU-DE","Debrecen","City with county rights","Hungary",2 +"HUN","HU","HU-DU","Dunaújváros","City with county rights","Hungary",2 +"HUN","HU","HU-EG","Eger","City with county rights","Hungary",2 +"HUN","HU","HU-ER","Érd","City with county rights","Hungary",2 +"HUN","HU","HU-FE","Fejér","County","Hungary",2 +"HUN","HU","HU-GS","Győr-Moson-Sopron","County","Hungary",2 +"HUN","HU","HU-GY","Győr","City with county rights","Hungary",2 +"HUN","HU","HU-HB","Hajdú-Bihar","County","Hungary",2 +"HUN","HU","HU-HE","Heves","County","Hungary",2 +"HUN","HU","HU-HV","Hódmezővásárhely","City with county rights","Hungary",2 +"HUN","HU","HU-JN","Jász-Nagykun-Szolnok","County","Hungary",2 +"HUN","HU","HU-KE","Komárom-Esztergom","County","Hungary",2 +"HUN","HU","HU-KM","Kecskemét","City with county rights","Hungary",2 +"HUN","HU","HU-KV","Kaposvár","City with county rights","Hungary",2 +"HUN","HU","HU-MI","Miskolc","City with county rights","Hungary",2 +"HUN","HU","HU-NK","Nagykanizsa","City with county rights","Hungary",2 +"HUN","HU","HU-NO","Nógrád","County","Hungary",2 +"HUN","HU","HU-NY","Nyíregyháza","City with county rights","Hungary",2 +"HUN","HU","HU-PE","Pest","County","Hungary",2 +"HUN","HU","HU-PS","Pécs","City with county rights","Hungary",2 +"HUN","HU","HU-SD","Szeged","City with county rights","Hungary",2 +"HUN","HU","HU-SF","Székesfehérvár","City with county rights","Hungary",2 +"HUN","HU","HU-SH","Szombathely","City with county rights","Hungary",2 +"HUN","HU","HU-SK","Szolnok","City with county rights","Hungary",2 +"HUN","HU","HU-SN","Sopron","City with county rights","Hungary",2 +"HUN","HU","HU-SO","Somogy","County","Hungary",2 +"HUN","HU","HU-SS","Szekszárd","City with county rights","Hungary",2 +"HUN","HU","HU-ST","Salgótarján","City with county rights","Hungary",2 +"HUN","HU","HU-SZ","Szabolcs-Szatmár-Bereg","County","Hungary",2 +"HUN","HU","HU-TB","Tatabánya","City with county rights","Hungary",2 +"HUN","HU","HU-TO","Tolna","County","Hungary",2 +"HUN","HU","HU-VA","Vas","County","Hungary",2 +"HUN","HU","HU-VE","Veszprém (county)","County","Hungary",2 +"HUN","HU","HU-VM","Veszprém","City with county rights","Hungary",2 +"HUN","HU","HU-ZA","Zala","County","Hungary",2 +"HUN","HU","HU-ZE","Zalaegerszeg","City with county rights","Hungary",2 +"IDN","ID","ID-AC","Aceh","Autonomous Province","Indonesia",2 +"IDN","ID","ID-BA","Bali","Province","Indonesia",2 +"IDN","ID","ID-BB","Bangka Belitung","Province","Indonesia",2 +"IDN","ID","ID-BE","Bengkulu","Province","Indonesia",2 +"IDN","ID","ID-BT","Banten","Province","Indonesia",2 +"IDN","ID","ID-GO","Gorontalo","Province","Indonesia",2 +"IDN","ID","ID-IJ","Papua","Geographical unit","Indonesia",2 +"IDN","ID","ID-JA","Jambi","Province","Indonesia",2 +"IDN","ID","ID-JB","Jawa Barat","Province","Indonesia",2 +"IDN","ID","ID-JI","Jawa Timur","Province","Indonesia",2 +"IDN","ID","ID-JK","Jakarta Raya","Special District","Indonesia",2 +"IDN","ID","ID-JT","Jawa Tengah","Province","Indonesia",2 +"IDN","ID","ID-JW","Jawa","Geographical unit","Indonesia",2 +"IDN","ID","ID-KA","Kalimantan","Geographical unit","Indonesia",2 +"IDN","ID","ID-KB","Kalimantan Barat","Province","Indonesia",2 +"IDN","ID","ID-KI","Kalimantan Timur","Province","Indonesia",2 +"IDN","ID","ID-KR","Kepulauan Riau","Province","Indonesia",2 +"IDN","ID","ID-KS","Kalimantan Selatan","Province","Indonesia",2 +"IDN","ID","ID-KT","Kalimantan Tengah","Province","Indonesia",2 +"IDN","ID","ID-LA","Lampung","Province","Indonesia",2 +"IDN","ID","ID-MA","Maluku","Province","Indonesia",2 +"IDN","ID","ID-ML","Maluku","Geographical unit","Indonesia",2 +"IDN","ID","ID-MU","Maluku Utara","Province","Indonesia",2 +"IDN","ID","ID-NB","Nusa Tenggara Barat","Province","Indonesia",2 +"IDN","ID","ID-NT","Nusa Tenggara Timur","Province","Indonesia",2 +"IDN","ID","ID-NU","Nusa Tenggara","Geographical unit","Indonesia",2 +"IDN","ID","ID-PA","Papua","Province","Indonesia",2 +"IDN","ID","ID-PB","Papua Barat","Province","Indonesia",2 +"IDN","ID","ID-RI","Riau","Province","Indonesia",2 +"IDN","ID","ID-SA","Sulawesi Utara","Province","Indonesia",2 +"IDN","ID","ID-SB","Sumatra Barat","Province","Indonesia",2 +"IDN","ID","ID-SG","Sulawesi Tenggara","Province","Indonesia",2 +"IDN","ID","ID-SL","Sulawesi","Geographical unit","Indonesia",2 +"IDN","ID","ID-SM","Sumatera","Geographical unit","Indonesia",2 +"IDN","ID","ID-SN","Sulawesi Selatan","Province","Indonesia",2 +"IDN","ID","ID-SR","Sulawesi Barat","Province","Indonesia",2 +"IDN","ID","ID-SS","Sumatra Selatan","Province","Indonesia",2 +"IDN","ID","ID-ST","Sulawesi Tengah","Province","Indonesia",2 +"IDN","ID","ID-SU","Sumatera Utara","Province","Indonesia",2 +"IDN","ID","ID-YO","Yogyakarta","Special Region","Indonesia",2 +"IRL","IE","IE-C","Connacht","Province","Ireland",2 +"IRL","IE","IE-CE","Clare","County","Ireland",2 +"IRL","IE","IE-CN","Cavan","County","Ireland",2 +"IRL","IE","IE-CO","Cork","County","Ireland",2 +"IRL","IE","IE-CW","Carlow","County","Ireland",2 +"IRL","IE","IE-D","Dublin","County","Ireland",2 +"IRL","IE","IE-DL","Donegal","County","Ireland",2 +"IRL","IE","IE-G","Galway","County","Ireland",2 +"IRL","IE","IE-KE","Kildare","County","Ireland",2 +"IRL","IE","IE-KK","Kilkenny","County","Ireland",2 +"IRL","IE","IE-KY","Kerry","County","Ireland",2 +"IRL","IE","IE-L","Leinster","Province","Ireland",2 +"IRL","IE","IE-LD","Longford","County","Ireland",2 +"IRL","IE","IE-LH","Louth","County","Ireland",2 +"IRL","IE","IE-LK","Limerick","County","Ireland",2 +"IRL","IE","IE-LM","Leitrim","County","Ireland",2 +"IRL","IE","IE-LS","Laois","County","Ireland",2 +"IRL","IE","IE-M","Munster","Province","Ireland",2 +"IRL","IE","IE-MH","Meath","County","Ireland",2 +"IRL","IE","IE-MN","Monaghan","County","Ireland",2 +"IRL","IE","IE-MO","Mayo","County","Ireland",2 +"IRL","IE","IE-OY","Offaly","County","Ireland",2 +"IRL","IE","IE-RN","Roscommon","County","Ireland",2 +"IRL","IE","IE-SO","Sligo","County","Ireland",2 +"IRL","IE","IE-TA","Tipperary","County","Ireland",2 +"IRL","IE","IE-U","Ulster","Province","Ireland",2 +"IRL","IE","IE-WD","Waterford","County","Ireland",2 +"IRL","IE","IE-WH","Westmeath","County","Ireland",2 +"IRL","IE","IE-WW","Wicklow","County","Ireland",2 +"IRL","IE","IE-WX","Wexford","County","Ireland",2 +"ISR","IL","IL-D","HaDarom","District","Israel",2 +"ISR","IL","IL-HA","Hefa","District","Israel",2 +"ISR","IL","IL-JM","Yerushalayim Al Quds","District","Israel",2 +"ISR","IL","IL-M","HaMerkaz","District","Israel",2 +"ISR","IL","IL-TA","Tel-Aviv","District","Israel",2 +"ISR","IL","IL-Z","HaZafon","District","Israel",2 +"IND","IN","IN-AN","Andaman and Nicobar Islands","Union territory","India",2 +"IND","IN","IN-AP","Andhra Pradesh","State","India",2 +"IND","IN","IN-AR","Arunachal Pradesh","State","India",2 +"IND","IN","IN-AS","Assam","State","India",2 +"IND","IN","IN-BR","Bihar","State","India",2 +"IND","IN","IN-CH","Chandigarh","Union territory","India",2 +"IND","IN","IN-CT","Chhattisgarh","State","India",2 +"IND","IN","IN-DD","Damen and Diu","Union territory","India",2 +"IND","IN","IN-DL","Delhi","Union territory","India",2 +"IND","IN","IN-DN","Dadra and Nagar Haveli","Union territory","India",2 +"IND","IN","IN-GA","Goa","State","India",2 +"IND","IN","IN-GJ","Gujarat","State","India",2 +"IND","IN","IN-HP","Himachal Pradesh","State","India",2 +"IND","IN","IN-HR","Haryana","State","India",2 +"IND","IN","IN-JH","Jharkhand","State","India",2 +"IND","IN","IN-JK","Jammu and Kashmir","State","India",2 +"IND","IN","IN-KA","Karnataka","State","India",2 +"IND","IN","IN-KL","Kerala","State","India",2 +"IND","IN","IN-LD","Lakshadweep","Union territory","India",2 +"IND","IN","IN-MH","Maharashtra","State","India",2 +"IND","IN","IN-ML","Meghalaya","State","India",2 +"IND","IN","IN-MN","Manipur","State","India",2 +"IND","IN","IN-MP","Madhya Pradesh","State","India",2 +"IND","IN","IN-MZ","Mizoram","State","India",2 +"IND","IN","IN-NL","Nagaland","State","India",2 +"IND","IN","IN-OR","Orissa","State","India",2 +"IND","IN","IN-PB","Punjab","State","India",2 +"IND","IN","IN-PY","Puducherry","Union territory","India",2 +"IND","IN","IN-RJ","Rajasthan","State","India",2 +"IND","IN","IN-SK","Sikkim","State","India",2 +"IND","IN","IN-TN","Tamil Nadu","State","India",2 +"IND","IN","IN-TR","Tripura","State","India",2 +"IND","IN","IN-UP","Uttar Pradesh","State","India",2 +"IND","IN","IN-UT","Uttarakhand","State","India",2 +"IND","IN","IN-WB","West Bengal","State","India",2 +"IRQ","IQ","IQ-AN","Al Anbar","Governorate","Iraq",2 +"IRQ","IQ","IQ-AR","Arbil","Governorate","Iraq",2 +"IRQ","IQ","IQ-BA","Al Basrah","Governorate","Iraq",2 +"IRQ","IQ","IQ-BB","Babil","Governorate","Iraq",2 +"IRQ","IQ","IQ-BG","Baghdad","Governorate","Iraq",2 +"IRQ","IQ","IQ-DA","Dahuk","Governorate","Iraq",2 +"IRQ","IQ","IQ-DI","Diyala","Governorate","Iraq",2 +"IRQ","IQ","IQ-DQ","Dhi Qar","Governorate","Iraq",2 +"IRQ","IQ","IQ-KA","Karbala'","Governorate","Iraq",2 +"IRQ","IQ","IQ-MA","Maysan","Governorate","Iraq",2 +"IRQ","IQ","IQ-MU","Al Muthanna","Governorate","Iraq",2 +"IRQ","IQ","IQ-NA","An Najef","Governorate","Iraq",2 +"IRQ","IQ","IQ-NI","Ninawa","Governorate","Iraq",2 +"IRQ","IQ","IQ-QA","Al Qadisiyah","Governorate","Iraq",2 +"IRQ","IQ","IQ-SD","Salah ad Din","Governorate","Iraq",2 +"IRQ","IQ","IQ-SW","As Sulaymaniyah","Governorate","Iraq",2 +"IRQ","IQ","IQ-TS","At Ta'mim","Governorate","Iraq",2 +"IRQ","IQ","IQ-WA","Wasit","Governorate","Iraq",2 +"IRN","IR","IR-01","Āzarbāyjān-e Sharqī","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-02","Āzarbāyjān-e Gharbī","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-03","Ardabīl","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-04","Eşfahān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-05","Īlām","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-06","Būshehr","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-07","Tehrān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-08","Chahār Mahāll va Bakhtīārī","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-10","Khūzestān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-11","Zanjān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-12","Semnān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-13","Sīstān va Balūchestān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-14","Fārs","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-15","Kermān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-16","Kordestān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-17","Kermānshāh","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-18","Kohgīlūyeh va Būyer Ahmad","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-19","Gīlān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-20","Lorestān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-21","Māzandarān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-22","Markazī","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-23","Hormozgān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-24","Hamadān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-25","Yazd","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-26","Qom","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-27","Golestān","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-28","Qazvīn","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-29","Khorāsān-e Janūbī","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-30","Khorāsān-e Razavī","Province","Iran, Islamic Republic of",2 +"IRN","IR","IR-31","Khorāsān-e Shemālī","Province","Iran, Islamic Republic of",2 +"ISL","IS","IS-0","Reykjavík","City","Iceland",2 +"ISL","IS","IS-1","Höfuðborgarsvæðið","Region","Iceland",2 +"ISL","IS","IS-2","Suðurnes","Region","Iceland",2 +"ISL","IS","IS-3","Vesturland","Region","Iceland",2 +"ISL","IS","IS-4","Vestfirðir","Region","Iceland",2 +"ISL","IS","IS-5","Norðurland vestra","Region","Iceland",2 +"ISL","IS","IS-6","Norðurland eystra","Region","Iceland",2 +"ISL","IS","IS-7","Austurland","Region","Iceland",2 +"ISL","IS","IS-8","Suðurland","Region","Iceland",2 +"ITA","IT","IT-21","Piemonte","Region","Italy",2 +"ITA","IT","IT-23","Valle d'Aosta","Region","Italy",2 +"ITA","IT","IT-25","Lombardia","Region","Italy",2 +"ITA","IT","IT-32","Trentino-Alto Adige","Region","Italy",2 +"ITA","IT","IT-34","Veneto","Region","Italy",2 +"ITA","IT","IT-36","Friuli-Venezia Giulia","Region","Italy",2 +"ITA","IT","IT-42","Liguria","Region","Italy",2 +"ITA","IT","IT-45","Emilia-Romagna","Region","Italy",2 +"ITA","IT","IT-52","Toscana","Region","Italy",2 +"ITA","IT","IT-55","Umbria","Region","Italy",2 +"ITA","IT","IT-57","Marche","Region","Italy",2 +"ITA","IT","IT-62","Lazio","Region","Italy",2 +"ITA","IT","IT-65","Abruzzo","Region","Italy",2 +"ITA","IT","IT-67","Molise","Region","Italy",2 +"ITA","IT","IT-72","Campania","Region","Italy",2 +"ITA","IT","IT-75","Puglia","Region","Italy",2 +"ITA","IT","IT-77","Basilicata","Region","Italy",2 +"ITA","IT","IT-78","Calabria","Region","Italy",2 +"ITA","IT","IT-82","Sicilia","Region","Italy",2 +"ITA","IT","IT-88","Sardegna","Region","Italy",2 +"ITA","IT","IT-AG","Agrigento","Province","Italy",2 +"ITA","IT","IT-AL","Alessandria","Province","Italy",2 +"ITA","IT","IT-AN","Ancona","Province","Italy",2 +"ITA","IT","IT-AO","Aosta","Province","Italy",2 +"ITA","IT","IT-AP","Ascoli Piceno","Province","Italy",2 +"ITA","IT","IT-AQ","L'Aquila","Province","Italy",2 +"ITA","IT","IT-AR","Arezzo","Province","Italy",2 +"ITA","IT","IT-AT","Asti","Province","Italy",2 +"ITA","IT","IT-AV","Avellino","Province","Italy",2 +"ITA","IT","IT-BA","Bari","Province","Italy",2 +"ITA","IT","IT-BG","Bergamo","Province","Italy",2 +"ITA","IT","IT-BI","Biella","Province","Italy",2 +"ITA","IT","IT-BL","Belluno","Province","Italy",2 +"ITA","IT","IT-BN","Benevento","Province","Italy",2 +"ITA","IT","IT-BO","Bologna","Province","Italy",2 +"ITA","IT","IT-BR","Brindisi","Province","Italy",2 +"ITA","IT","IT-BS","Brescia","Province","Italy",2 +"ITA","IT","IT-BT","Barletta-Andria-Trani","Province","Italy",2 +"ITA","IT","IT-BZ","Bolzano","Province","Italy",2 +"ITA","IT","IT-CA","Cagliari","Province","Italy",2 +"ITA","IT","IT-CB","Campobasso","Province","Italy",2 +"ITA","IT","IT-CE","Caserta","Province","Italy",2 +"ITA","IT","IT-CH","Chieti","Province","Italy",2 +"ITA","IT","IT-CI","Carbonia-Iglesias","Province","Italy",2 +"ITA","IT","IT-CL","Caltanissetta","Province","Italy",2 +"ITA","IT","IT-CN","Cuneo","Province","Italy",2 +"ITA","IT","IT-CO","Como","Province","Italy",2 +"ITA","IT","IT-CR","Cremona","Province","Italy",2 +"ITA","IT","IT-CS","Cosenza","Province","Italy",2 +"ITA","IT","IT-CT","Catania","Province","Italy",2 +"ITA","IT","IT-CZ","Catanzaro","Province","Italy",2 +"ITA","IT","IT-EN","Enna","Province","Italy",2 +"ITA","IT","IT-FC","Forlì-Cesena","Province","Italy",2 +"ITA","IT","IT-FE","Ferrara","Province","Italy",2 +"ITA","IT","IT-FG","Foggia","Province","Italy",2 +"ITA","IT","IT-FI","Firenze","Province","Italy",2 +"ITA","IT","IT-FM","Fermo","Province","Italy",2 +"ITA","IT","IT-FR","Frosinone","Province","Italy",2 +"ITA","IT","IT-GE","Genova","Province","Italy",2 +"ITA","IT","IT-GO","Gorizia","Province","Italy",2 +"ITA","IT","IT-GR","Grosseto","Province","Italy",2 +"ITA","IT","IT-IM","Imperia","Province","Italy",2 +"ITA","IT","IT-IS","Isernia","Province","Italy",2 +"ITA","IT","IT-KR","Crotone","Province","Italy",2 +"ITA","IT","IT-LC","Lecco","Province","Italy",2 +"ITA","IT","IT-LE","Lecce","Province","Italy",2 +"ITA","IT","IT-LI","Livorno","Province","Italy",2 +"ITA","IT","IT-LO","Lodi","Province","Italy",2 +"ITA","IT","IT-LT","Latina","Province","Italy",2 +"ITA","IT","IT-LU","Lucca","Province","Italy",2 +"ITA","IT","IT-MB","Monza e Brianza","Province","Italy",2 +"ITA","IT","IT-MC","Macerata","Province","Italy",2 +"ITA","IT","IT-ME","Messina","Province","Italy",2 +"ITA","IT","IT-MI","Milano","Province","Italy",2 +"ITA","IT","IT-MN","Mantova","Province","Italy",2 +"ITA","IT","IT-MO","Modena","Province","Italy",2 +"ITA","IT","IT-MS","Massa-Carrara","Province","Italy",2 +"ITA","IT","IT-MT","Matera","Province","Italy",2 +"ITA","IT","IT-NA","Napoli","Province","Italy",2 +"ITA","IT","IT-NO","Novara","Province","Italy",2 +"ITA","IT","IT-NU","Nuoro","Province","Italy",2 +"ITA","IT","IT-OG","Ogliastra","Province","Italy",2 +"ITA","IT","IT-OR","Oristano","Province","Italy",2 +"ITA","IT","IT-OT","Olbia-Tempio","Province","Italy",2 +"ITA","IT","IT-PA","Palermo","Province","Italy",2 +"ITA","IT","IT-PC","Piacenza","Province","Italy",2 +"ITA","IT","IT-PD","Padova","Province","Italy",2 +"ITA","IT","IT-PE","Pescara","Province","Italy",2 +"ITA","IT","IT-PG","Perugia","Province","Italy",2 +"ITA","IT","IT-PI","Pisa","Province","Italy",2 +"ITA","IT","IT-PN","Pordenone","Province","Italy",2 +"ITA","IT","IT-PO","Prato","Province","Italy",2 +"ITA","IT","IT-PR","Parma","Province","Italy",2 +"ITA","IT","IT-PT","Pistoia","Province","Italy",2 +"ITA","IT","IT-PU","Pesaro e Urbino","Province","Italy",2 +"ITA","IT","IT-PV","Pavia","Province","Italy",2 +"ITA","IT","IT-PZ","Potenza","Province","Italy",2 +"ITA","IT","IT-RA","Ravenna","Province","Italy",2 +"ITA","IT","IT-RC","Reggio Calabria","Province","Italy",2 +"ITA","IT","IT-RE","Reggio Emilia","Province","Italy",2 +"ITA","IT","IT-RG","Ragusa","Province","Italy",2 +"ITA","IT","IT-RI","Rieti","Province","Italy",2 +"ITA","IT","IT-RM","Roma","Province","Italy",2 +"ITA","IT","IT-RN","Rimini","Province","Italy",2 +"ITA","IT","IT-RO","Rovigo","Province","Italy",2 +"ITA","IT","IT-SA","Salerno","Province","Italy",2 +"ITA","IT","IT-SI","Siena","Province","Italy",2 +"ITA","IT","IT-SO","Sondrio","Province","Italy",2 +"ITA","IT","IT-SP","La Spezia","Province","Italy",2 +"ITA","IT","IT-SR","Siracusa","Province","Italy",2 +"ITA","IT","IT-SS","Sassari","Province","Italy",2 +"ITA","IT","IT-SV","Savona","Province","Italy",2 +"ITA","IT","IT-TA","Taranto","Province","Italy",2 +"ITA","IT","IT-TE","Teramo","Province","Italy",2 +"ITA","IT","IT-TN","Trento","Province","Italy",2 +"ITA","IT","IT-TO","Torino","Province","Italy",2 +"ITA","IT","IT-TP","Trapani","Province","Italy",2 +"ITA","IT","IT-TR","Terni","Province","Italy",2 +"ITA","IT","IT-TS","Trieste","Province","Italy",2 +"ITA","IT","IT-TV","Treviso","Province","Italy",2 +"ITA","IT","IT-UD","Udine","Province","Italy",2 +"ITA","IT","IT-VA","Varese","Province","Italy",2 +"ITA","IT","IT-VB","Verbano-Cusio-Ossola","Province","Italy",2 +"ITA","IT","IT-VC","Vercelli","Province","Italy",2 +"ITA","IT","IT-VE","Venezia","Province","Italy",2 +"ITA","IT","IT-VI","Vicenza","Province","Italy",2 +"ITA","IT","IT-VR","Verona","Province","Italy",2 +"ITA","IT","IT-VS","Medio Campidano","Province","Italy",2 +"ITA","IT","IT-VT","Viterbo","Province","Italy",2 +"ITA","IT","IT-VV","Vibo Valentia","Province","Italy",2 +"JAM","JM","JM-01","Kingston","Parish","Jamaica",2 +"JAM","JM","JM-02","Saint Andrew","Parish","Jamaica",2 +"JAM","JM","JM-03","Saint Thomas","Parish","Jamaica",2 +"JAM","JM","JM-04","Portland","Parish","Jamaica",2 +"JAM","JM","JM-05","Saint Mary","Parish","Jamaica",2 +"JAM","JM","JM-06","Saint Ann","Parish","Jamaica",2 +"JAM","JM","JM-07","Trelawny","Parish","Jamaica",2 +"JAM","JM","JM-08","Saint James","Parish","Jamaica",2 +"JAM","JM","JM-09","Hanover","Parish","Jamaica",2 +"JAM","JM","JM-10","Westmoreland","Parish","Jamaica",2 +"JAM","JM","JM-11","Saint Elizabeth","Parish","Jamaica",2 +"JAM","JM","JM-12","Manchester","Parish","Jamaica",2 +"JAM","JM","JM-13","Clarendon","Parish","Jamaica",2 +"JAM","JM","JM-14","Saint Catherine","Parish","Jamaica",2 +"JOR","JO","JO-AJ","‘Ajlūn","Governorate","Jordan",2 +"JOR","JO","JO-AM","‘Ammān (Al ‘Aşimah)","Governorate","Jordan",2 +"JOR","JO","JO-AQ","Al ‘Aqabah","Governorate","Jordan",2 +"JOR","JO","JO-AT","Aţ Ţafīlah","Governorate","Jordan",2 +"JOR","JO","JO-AZ","Az Zarqā'","Governorate","Jordan",2 +"JOR","JO","JO-BA","Al Balqā'","Governorate","Jordan",2 +"JOR","JO","JO-IR","Irbid","Governorate","Jordan",2 +"JOR","JO","JO-JA","Jarash","Governorate","Jordan",2 +"JOR","JO","JO-KA","Al Karak","Governorate","Jordan",2 +"JOR","JO","JO-MA","Al Mafraq","Governorate","Jordan",2 +"JOR","JO","JO-MD","Mādabā","Governorate","Jordan",2 +"JOR","JO","JO-MN","Ma‘ān","Governorate","Jordan",2 +"JPN","JP","JP-01","Hokkaido","Prefecture","Japan",2 +"JPN","JP","JP-02","Aomori","Prefecture","Japan",2 +"JPN","JP","JP-03","Iwate","Prefecture","Japan",2 +"JPN","JP","JP-04","Miyagi","Prefecture","Japan",2 +"JPN","JP","JP-05","Akita","Prefecture","Japan",2 +"JPN","JP","JP-06","Yamagata","Prefecture","Japan",2 +"JPN","JP","JP-07","Fukushima","Prefecture","Japan",2 +"JPN","JP","JP-08","Ibaraki","Prefecture","Japan",2 +"JPN","JP","JP-09","Tochigi","Prefecture","Japan",2 +"JPN","JP","JP-10","Gunma","Prefecture","Japan",2 +"JPN","JP","JP-11","Saitama","Prefecture","Japan",2 +"JPN","JP","JP-12","Chiba","Prefecture","Japan",2 +"JPN","JP","JP-13","Tokyo","Prefecture","Japan",2 +"JPN","JP","JP-14","Kanagawa","Prefecture","Japan",2 +"JPN","JP","JP-15","Niigata","Prefecture","Japan",2 +"JPN","JP","JP-16","Toyama","Prefecture","Japan",2 +"JPN","JP","JP-17","Ishikawa","Prefecture","Japan",2 +"JPN","JP","JP-18","Fukui","Prefecture","Japan",2 +"JPN","JP","JP-19","Yamanashi","Prefecture","Japan",2 +"JPN","JP","JP-20","Nagano","Prefecture","Japan",2 +"JPN","JP","JP-21","Gifu","Prefecture","Japan",2 +"JPN","JP","JP-22","Shizuoka","Prefecture","Japan",2 +"JPN","JP","JP-23","Aichi","Prefecture","Japan",2 +"JPN","JP","JP-24","Mie","Prefecture","Japan",2 +"JPN","JP","JP-25","Shiga","Prefecture","Japan",2 +"JPN","JP","JP-26","Kyoto","Prefecture","Japan",2 +"JPN","JP","JP-27","Osaka","Prefecture","Japan",2 +"JPN","JP","JP-28","Hyogo","Prefecture","Japan",2 +"JPN","JP","JP-29","Nara","Prefecture","Japan",2 +"JPN","JP","JP-30","Wakayama","Prefecture","Japan",2 +"JPN","JP","JP-31","Tottori","Prefecture","Japan",2 +"JPN","JP","JP-32","Shimane","Prefecture","Japan",2 +"JPN","JP","JP-33","Okayama","Prefecture","Japan",2 +"JPN","JP","JP-34","Hiroshima","Prefecture","Japan",2 +"JPN","JP","JP-35","Yamaguchi","Prefecture","Japan",2 +"JPN","JP","JP-36","Tokushima","Prefecture","Japan",2 +"JPN","JP","JP-37","Kagawa","Prefecture","Japan",2 +"JPN","JP","JP-38","Ehime","Prefecture","Japan",2 +"JPN","JP","JP-39","Kochi","Prefecture","Japan",2 +"JPN","JP","JP-40","Fukuoka","Prefecture","Japan",2 +"JPN","JP","JP-41","Saga","Prefecture","Japan",2 +"JPN","JP","JP-42","Nagasaki","Prefecture","Japan",2 +"JPN","JP","JP-43","Kumamoto","Prefecture","Japan",2 +"JPN","JP","JP-44","Oita","Prefecture","Japan",2 +"JPN","JP","JP-45","Miyazaki","Prefecture","Japan",2 +"JPN","JP","JP-46","Kagoshima","Prefecture","Japan",2 +"JPN","JP","JP-47","Okinawa","Prefecture","Japan",2 +"KEN","KE","KE-110","Nairobi Municipality","Province","Kenya",2 +"KEN","KE","KE-200","Central","Province","Kenya",2 +"KEN","KE","KE-300","Coast","Province","Kenya",2 +"KEN","KE","KE-400","Eastern","Province","Kenya",2 +"KEN","KE","KE-500","North-Eastern Kaskazini Mashariki","Province","Kenya",2 +"KEN","KE","KE-700","Rift Valley","Province","Kenya",2 +"KEN","KE","KE-800","Western Magharibi","Province","Kenya",2 +"KGZ","KG","KG-B","Batken","Region","Kyrgyzstan",2 +"KGZ","KG","KG-C","Chü","Region","Kyrgyzstan",2 +"KGZ","KG","KG-GB","Bishkek","City","Kyrgyzstan",2 +"KGZ","KG","KG-J","Jalal-Abad","Region","Kyrgyzstan",2 +"KGZ","KG","KG-N","Naryn","Region","Kyrgyzstan",2 +"KGZ","KG","KG-O","Osh","Region","Kyrgyzstan",2 +"KGZ","KG","KG-T","Talas","Region","Kyrgyzstan",2 +"KGZ","KG","KG-Y","Ysyk-Köl","Region","Kyrgyzstan",2 +"KHM","KH","KH-1","Banteay Mean Chey","Province","Cambodia",2 +"KHM","KH","KH-10","Krachoh","Province","Cambodia",2 +"KHM","KH","KH-11","Mondol Kiri","Province","Cambodia",2 +"KHM","KH","KH-12","Phnom Penh","Autonomous municipality","Cambodia",2 +"KHM","KH","KH-13","Preah Vihear","Province","Cambodia",2 +"KHM","KH","KH-14","Prey Veaeng","Province","Cambodia",2 +"KHM","KH","KH-15","Pousaat","Province","Cambodia",2 +"KHM","KH","KH-16","Rotanak Kiri","Province","Cambodia",2 +"KHM","KH","KH-17","Siem Reab","Province","Cambodia",2 +"KHM","KH","KH-18","Krong Preah Sihanouk","Autonomous municipality","Cambodia",2 +"KHM","KH","KH-19","Stueng Traeng","Province","Cambodia",2 +"KHM","KH","KH-2","Battambang","Province","Cambodia",2 +"KHM","KH","KH-20","Svaay Rieng","Province","Cambodia",2 +"KHM","KH","KH-21","Taakaev","Province","Cambodia",2 +"KHM","KH","KH-22","Otdar Mean Chey","Province","Cambodia",2 +"KHM","KH","KH-23","Krong Kaeb","Autonomous municipality","Cambodia",2 +"KHM","KH","KH-24","Krong Pailin","Autonomous municipality","Cambodia",2 +"KHM","KH","KH-3","Kampong Cham","Province","Cambodia",2 +"KHM","KH","KH-4","Kampong Chhnang","Province","Cambodia",2 +"KHM","KH","KH-5","Kampong Speu","Province","Cambodia",2 +"KHM","KH","KH-6","Kampong Thom","Province","Cambodia",2 +"KHM","KH","KH-7","Kampot","Province","Cambodia",2 +"KHM","KH","KH-8","Kandal","Province","Cambodia",2 +"KHM","KH","KH-9","Kach Kong","Province","Cambodia",2 +"KIR","KI","KI-G","Gilbert Islands","Island group","Kiribati",2 +"KIR","KI","KI-L","Line Islands","Island group","Kiribati",2 +"KIR","KI","KI-P","Phoenix Islands","Island group","Kiribati",2 +"COM","KM","KM-A","Andjouân (Anjwān)","Island","Comoros",2 +"COM","KM","KM-G","Andjazîdja (Anjazījah)","Island","Comoros",2 +"COM","KM","KM-M","Moûhîlî (Mūhīlī)","Island","Comoros",2 +"KNA","KN","KN-01","Christ Church Nichola Town","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-02","Saint Anne Sandy Point","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-03","Saint George Basseterre","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-04","Saint George Gingerland","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-05","Saint James Windward","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-06","Saint John Capisterre","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-07","Saint John Figtree","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-08","Saint Mary Cayon","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-09","Saint Paul Capisterre","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-10","Saint Paul Charlestown","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-11","Saint Peter Basseterre","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-12","Saint Thomas Lowland","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-13","Saint Thomas Middle Island","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-15","Trinity Palmetto Point","Parish","Saint Kitts and Nevis",2 +"KNA","KN","KN-K","Saint Kitts","State","Saint Kitts and Nevis",2 +"KNA","KN","KN-N","Nevis","State","Saint Kitts and Nevis",2 +"PRK","KP","KP-01","P’yŏngyang","Capital city","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-02","P’yŏngan-namdo","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-03","P’yŏngan-bukto","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-04","Chagang-do","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-05","Hwanghae-namdo","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-06","Hwanghae-bukto","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-07","Kangwŏn-do","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-08","Hamgyŏng-namdo","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-09","Hamgyŏng-bukto","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-10","Yanggang-do","Province","Korea, Democratic People's Republic of",2 +"PRK","KP","KP-13","Nasŏn (Najin-Sŏnbong)","Special city","Korea, Democratic People's Republic of",2 +"KOR","KR","KR-11","Seoul Teugbyeolsi","Capital Metropolitan City","Korea, Republic of",2 +"KOR","KR","KR-26","Busan Gwang'yeogsi","Metropolitan cities","Korea, Republic of",2 +"KOR","KR","KR-27","Daegu Gwang'yeogsi","Metropolitan cities","Korea, Republic of",2 +"KOR","KR","KR-28","Incheon Gwang'yeogsi","Metropolitan cities","Korea, Republic of",2 +"KOR","KR","KR-29","Gwangju Gwang'yeogsi","Metropolitan cities","Korea, Republic of",2 +"KOR","KR","KR-30","Daejeon Gwang'yeogsi","Metropolitan cities","Korea, Republic of",2 +"KOR","KR","KR-31","Ulsan Gwang'yeogsi","Metropolitan cities","Korea, Republic of",2 +"KOR","KR","KR-41","Gyeonggido","Province","Korea, Republic of",2 +"KOR","KR","KR-42","Gang'weondo","Province","Korea, Republic of",2 +"KOR","KR","KR-43","Chungcheongbukdo","Province","Korea, Republic of",2 +"KOR","KR","KR-44","Chungcheongnamdo","Province","Korea, Republic of",2 +"KOR","KR","KR-45","Jeonrabukdo","Province","Korea, Republic of",2 +"KOR","KR","KR-46","Jeonranamdo","Province","Korea, Republic of",2 +"KOR","KR","KR-47","Gyeongsangbukdo","Province","Korea, Republic of",2 +"KOR","KR","KR-48","Gyeongsangnamdo","Province","Korea, Republic of",2 +"KOR","KR","KR-49","Jejudo","Province","Korea, Republic of",2 +"KWT","KW","KW-AH","Al Ahmadi","Governorate","Kuwait",2 +"KWT","KW","KW-FA","Al Farwānīyah","Governorate","Kuwait",2 +"KWT","KW","KW-HA","Hawallī","Governorate","Kuwait",2 +"KWT","KW","KW-JA","Al Jahrrā’","Governorate","Kuwait",2 +"KWT","KW","KW-KU","Al Kuwayt (Al ‘Āşimah)","Governorate","Kuwait",2 +"KWT","KW","KW-MU","Mubārak al Kabīr","Governorate","Kuwait",2 +"KAZ","KZ","KZ-AKM","Aqmola oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-AKT","Aqtöbe oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-ALA","Almaty","City","Kazakhstan",2 +"KAZ","KZ","KZ-ALM","Almaty oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-AST","Astana","City","Kazakhstan",2 +"KAZ","KZ","KZ-ATY","Atyraū oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-KAR","Qaraghandy oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-KUS","Qostanay oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-KZY","Qyzylorda oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-MAN","Mangghystaū oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-PAV","Pavlodar oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-SEV","Soltüstik Quzaqstan oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-VOS","Shyghys Qazaqstan oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-YUZ","Ongtüstik Qazaqstan oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-ZAP","Batys Quzaqstan oblysy","Region","Kazakhstan",2 +"KAZ","KZ","KZ-ZHA","Zhambyl oblysy","Region","Kazakhstan",2 +"LAO","LA","LA-AT","Attapu","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-BK","Bokèo","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-BL","Bolikhamxai","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-CH","Champasak","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-HO","Houaphan","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-KH","Khammouan","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-LM","Louang Namtha","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-LP","Louangphabang","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-OU","Oudômxai","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-PH","Phôngsali","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-SL","Salavan","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-SV","Savannakhét","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-VI","Vientiane","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-VT","Vientiane","Prefecture","Lao People's Democratic Republic",2 +"LAO","LA","LA-XA","Xaignabouli","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-XE","Xékong","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-XI","Xiangkhouang","Province","Lao People's Democratic Republic",2 +"LAO","LA","LA-XS","Xaisômboun","Province","Lao People's Democratic Republic",2 +"LBN","LB","LB-AK","Aakkâr","Governorate","Lebanon",2 +"LBN","LB","LB-AS","Liban-Nord","Governorate","Lebanon",2 +"LBN","LB","LB-BA","Beyrouth","Governorate","Lebanon",2 +"LBN","LB","LB-BH","Baalbek-Hermel","Governorate","Lebanon",2 +"LBN","LB","LB-BI","Béqaa","Governorate","Lebanon",2 +"LBN","LB","LB-JA","Liban-Sud","Governorate","Lebanon",2 +"LBN","LB","LB-JL","Mont-Liban","Governorate","Lebanon",2 +"LBN","LB","LB-NA","Nabatîyé","Governorate","Lebanon",2 +"LIE","LI","LI-01","Balzers","Commune","Liechtenstein",2 +"LIE","LI","LI-02","Eschen","Commune","Liechtenstein",2 +"LIE","LI","LI-03","Gamprin","Commune","Liechtenstein",2 +"LIE","LI","LI-04","Mauren","Commune","Liechtenstein",2 +"LIE","LI","LI-05","Planken","Commune","Liechtenstein",2 +"LIE","LI","LI-06","Ruggell","Commune","Liechtenstein",2 +"LIE","LI","LI-07","Schaan","Commune","Liechtenstein",2 +"LIE","LI","LI-08","Schellenberg","Commune","Liechtenstein",2 +"LIE","LI","LI-09","Triesen","Commune","Liechtenstein",2 +"LIE","LI","LI-10","Triesenberg","Commune","Liechtenstein",2 +"LIE","LI","LI-11","Vaduz","Commune","Liechtenstein",2 +"LKA","LK","LK-1","Basnāhira paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-11","Kŏḷamba","District","Sri Lanka",2 +"LKA","LK","LK-12","Gampaha","District","Sri Lanka",2 +"LKA","LK","LK-13","Kaḷutara","District","Sri Lanka",2 +"LKA","LK","LK-2","Madhyama paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-21","Mahanuvara","District","Sri Lanka",2 +"LKA","LK","LK-22","Mātale","District","Sri Lanka",2 +"LKA","LK","LK-23","Nuvara Ĕliya","District","Sri Lanka",2 +"LKA","LK","LK-3","Dakuṇu paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-31","Gālla","District","Sri Lanka",2 +"LKA","LK","LK-32","Mātara","District","Sri Lanka",2 +"LKA","LK","LK-33","Hambantŏṭa","District","Sri Lanka",2 +"LKA","LK","LK-4","Uturu paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-41","Yāpanaya","District","Sri Lanka",2 +"LKA","LK","LK-42","Kilinŏchchi","District","Sri Lanka",2 +"LKA","LK","LK-43","Mannārama","District","Sri Lanka",2 +"LKA","LK","LK-44","Vavuniyāva","District","Sri Lanka",2 +"LKA","LK","LK-45","Mulativ","District","Sri Lanka",2 +"LKA","LK","LK-5","Næ̆gĕnahira paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-51","Maḍakalapuva","District","Sri Lanka",2 +"LKA","LK","LK-52","Ampāara","District","Sri Lanka",2 +"LKA","LK","LK-53","Trikuṇāmalaya","District","Sri Lanka",2 +"LKA","LK","LK-6","Vayamba paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-61","Kuruṇægala","District","Sri Lanka",2 +"LKA","LK","LK-62","Puttalama","District","Sri Lanka",2 +"LKA","LK","LK-7","Uturumæ̆da paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-71","Anurādhapura","District","Sri Lanka",2 +"LKA","LK","LK-72","Pŏḷŏnnaruva","District","Sri Lanka",2 +"LKA","LK","LK-8","Ūva paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-81","Badulla","District","Sri Lanka",2 +"LKA","LK","LK-82","Mŏṇarāgala","District","Sri Lanka",2 +"LKA","LK","LK-9","Sabaragamuva paḷāta","Province","Sri Lanka",2 +"LKA","LK","LK-91","Ratnapura","District","Sri Lanka",2 +"LKA","LK","LK-92","Kægalla","District","Sri Lanka",2 +"LBR","LR","LR-BG","Bong","County","Liberia",2 +"LBR","LR","LR-BM","Bomi","County","Liberia",2 +"LBR","LR","LR-CM","Grand Cape Mount","County","Liberia",2 +"LBR","LR","LR-GB","Grand Bassa","County","Liberia",2 +"LBR","LR","LR-GG","Grand Gedeh","County","Liberia",2 +"LBR","LR","LR-GK","Grand Kru","County","Liberia",2 +"LBR","LR","LR-LO","Lofa","County","Liberia",2 +"LBR","LR","LR-MG","Margibi","County","Liberia",2 +"LBR","LR","LR-MO","Montserrado","County","Liberia",2 +"LBR","LR","LR-MY","Maryland","County","Liberia",2 +"LBR","LR","LR-NI","Nimba","County","Liberia",2 +"LBR","LR","LR-RI","Rivercess","County","Liberia",2 +"LBR","LR","LR-SI","Sinoe","County","Liberia",2 +"LSO","LS","LS-A","Maseru","District","Lesotho",2 +"LSO","LS","LS-B","Butha-Buthe","District","Lesotho",2 +"LSO","LS","LS-C","Leribe","District","Lesotho",2 +"LSO","LS","LS-D","Berea","District","Lesotho",2 +"LSO","LS","LS-E","Mafeteng","District","Lesotho",2 +"LSO","LS","LS-F","Mohale's Hoek","District","Lesotho",2 +"LSO","LS","LS-G","Quthing","District","Lesotho",2 +"LSO","LS","LS-H","Qacha's Nek","District","Lesotho",2 +"LSO","LS","LS-J","Mokhotlong","District","Lesotho",2 +"LSO","LS","LS-K","Thaba-Tseka","District","Lesotho",2 +"LTU","LT","LT-AL","Alytaus Apskritis","County","Lithuania",2 +"LTU","LT","LT-KL","Klaipėdos Apskritis","County","Lithuania",2 +"LTU","LT","LT-KU","Kauno Apskritis","County","Lithuania",2 +"LTU","LT","LT-MR","Marijampolės Apskritis","County","Lithuania",2 +"LTU","LT","LT-PN","Panevėžio Apskritis","County","Lithuania",2 +"LTU","LT","LT-SA","Šiaulių Apskritis","County","Lithuania",2 +"LTU","LT","LT-TA","Tauragés Apskritis","County","Lithuania",2 +"LTU","LT","LT-TE","Telšių Apskritis","County","Lithuania",2 +"LTU","LT","LT-UT","Utenos Apskritis","County","Lithuania",2 +"LTU","LT","LT-VL","Vilniaus Apskritis","County","Lithuania",2 +"LUX","LU","LU-D","Diekirch","District","Luxembourg",2 +"LUX","LU","LU-G","Grevenmacher","District","Luxembourg",2 +"LUX","LU","LU-L","Luxembourg","District","Luxembourg",2 +"LVA","LV","LV-001","Aglonas novads","Municipality","Latvia",2 +"LVA","LV","LV-002","Aizkraukles novads","Municipality","Latvia",2 +"LVA","LV","LV-003","Aizputes novads","Municipality","Latvia",2 +"LVA","LV","LV-004","Aknīstes novads","Municipality","Latvia",2 +"LVA","LV","LV-005","Alojas novads","Municipality","Latvia",2 +"LVA","LV","LV-006","Alsungas novads","Municipality","Latvia",2 +"LVA","LV","LV-007","Alūksnes novads","Municipality","Latvia",2 +"LVA","LV","LV-008","Amatas novads","Municipality","Latvia",2 +"LVA","LV","LV-009","Apes novads","Municipality","Latvia",2 +"LVA","LV","LV-010","Auces novads","Municipality","Latvia",2 +"LVA","LV","LV-011","Ādažu novads","Municipality","Latvia",2 +"LVA","LV","LV-012","Babītes novads","Municipality","Latvia",2 +"LVA","LV","LV-013","Baldones novads","Municipality","Latvia",2 +"LVA","LV","LV-014","Baltinavas novads","Municipality","Latvia",2 +"LVA","LV","LV-015","Balvu novads","Municipality","Latvia",2 +"LVA","LV","LV-016","Bauskas novads","Municipality","Latvia",2 +"LVA","LV","LV-017","Beverīnas novads","Municipality","Latvia",2 +"LVA","LV","LV-018","Brocēnu novads","Municipality","Latvia",2 +"LVA","LV","LV-019","Burtnieku novads","Municipality","Latvia",2 +"LVA","LV","LV-020","Carnikavas novads","Municipality","Latvia",2 +"LVA","LV","LV-021","Cesvaines novads","Municipality","Latvia",2 +"LVA","LV","LV-022","Cēsu novads","Municipality","Latvia",2 +"LVA","LV","LV-023","Ciblas novads","Municipality","Latvia",2 +"LVA","LV","LV-024","Dagdas novads","Municipality","Latvia",2 +"LVA","LV","LV-025","Daugavpils novads","Municipality","Latvia",2 +"LVA","LV","LV-026","Dobeles novads","Municipality","Latvia",2 +"LVA","LV","LV-027","Dundagas novads","Municipality","Latvia",2 +"LVA","LV","LV-028","Durbes novads","Municipality","Latvia",2 +"LVA","LV","LV-029","Engures novads","Municipality","Latvia",2 +"LVA","LV","LV-030","Ērgļu novads","Municipality","Latvia",2 +"LVA","LV","LV-031","Garkalnes novads","Municipality","Latvia",2 +"LVA","LV","LV-032","Grobiņas novads","Municipality","Latvia",2 +"LVA","LV","LV-033","Gulbenes novads","Municipality","Latvia",2 +"LVA","LV","LV-034","Iecavas novads","Municipality","Latvia",2 +"LVA","LV","LV-035","Ikšķiles novads","Municipality","Latvia",2 +"LVA","LV","LV-036","Ilūkstes novads","Municipality","Latvia",2 +"LVA","LV","LV-037","Inčukalna novads","Municipality","Latvia",2 +"LVA","LV","LV-038","Jaunjelgavas novads","Municipality","Latvia",2 +"LVA","LV","LV-039","Jaunpiebalgas novads","Municipality","Latvia",2 +"LVA","LV","LV-040","Jaunpils novads","Municipality","Latvia",2 +"LVA","LV","LV-041","Jelgavas novads","Municipality","Latvia",2 +"LVA","LV","LV-042","Jēkabpils novads","Municipality","Latvia",2 +"LVA","LV","LV-043","Kandavas novads","Municipality","Latvia",2 +"LVA","LV","LV-044","Kārsavas novads","Municipality","Latvia",2 +"LVA","LV","LV-045","Kocēnu novads","Municipality","Latvia",2 +"LVA","LV","LV-046","Kokneses novads","Municipality","Latvia",2 +"LVA","LV","LV-047","Krāslavas novads","Municipality","Latvia",2 +"LVA","LV","LV-048","Krimuldas novads","Municipality","Latvia",2 +"LVA","LV","LV-049","Krustpils novads","Municipality","Latvia",2 +"LVA","LV","LV-050","Kuldīgas novads","Municipality","Latvia",2 +"LVA","LV","LV-051","Ķeguma novads","Municipality","Latvia",2 +"LVA","LV","LV-052","Ķekavas novads","Municipality","Latvia",2 +"LVA","LV","LV-053","Lielvārdes novads","Municipality","Latvia",2 +"LVA","LV","LV-054","Limbažu novads","Municipality","Latvia",2 +"LVA","LV","LV-055","Līgatnes novads","Municipality","Latvia",2 +"LVA","LV","LV-056","Līvānu novads","Municipality","Latvia",2 +"LVA","LV","LV-057","Lubānas novads","Municipality","Latvia",2 +"LVA","LV","LV-058","Ludzas novads","Municipality","Latvia",2 +"LVA","LV","LV-059","Madonas novads","Municipality","Latvia",2 +"LVA","LV","LV-060","Mazsalacas novads","Municipality","Latvia",2 +"LVA","LV","LV-061","Mālpils novads","Municipality","Latvia",2 +"LVA","LV","LV-062","Mārupes novads","Municipality","Latvia",2 +"LVA","LV","LV-063","Mērsraga novads","Municipality","Latvia",2 +"LVA","LV","LV-064","Naukšēnu novads","Municipality","Latvia",2 +"LVA","LV","LV-065","Neretas novads","Municipality","Latvia",2 +"LVA","LV","LV-066","Nīcas novads","Municipality","Latvia",2 +"LVA","LV","LV-067","Ogres novads","Municipality","Latvia",2 +"LVA","LV","LV-068","Olaines novads","Municipality","Latvia",2 +"LVA","LV","LV-069","Ozolnieku novads","Municipality","Latvia",2 +"LVA","LV","LV-070","Pārgaujas novads","Municipality","Latvia",2 +"LVA","LV","LV-071","Pāvilostas novads","Municipality","Latvia",2 +"LVA","LV","LV-072","Pļaviņu novads","Municipality","Latvia",2 +"LVA","LV","LV-073","Preiļu novads","Municipality","Latvia",2 +"LVA","LV","LV-074","Priekules novads","Municipality","Latvia",2 +"LVA","LV","LV-075","Priekuļu novads","Municipality","Latvia",2 +"LVA","LV","LV-076","Raunas novads","Municipality","Latvia",2 +"LVA","LV","LV-077","Rēzeknes novads","Municipality","Latvia",2 +"LVA","LV","LV-078","Riebiņu novads","Municipality","Latvia",2 +"LVA","LV","LV-079","Rojas novads","Municipality","Latvia",2 +"LVA","LV","LV-080","Ropažu novads","Municipality","Latvia",2 +"LVA","LV","LV-081","Rucavas novads","Municipality","Latvia",2 +"LVA","LV","LV-082","Rugāju novads","Municipality","Latvia",2 +"LVA","LV","LV-083","Rundāles novads","Municipality","Latvia",2 +"LVA","LV","LV-084","Rūjienas novads","Municipality","Latvia",2 +"LVA","LV","LV-085","Salas novads","Municipality","Latvia",2 +"LVA","LV","LV-086","Salacgrīvas novads","Municipality","Latvia",2 +"LVA","LV","LV-087","Salaspils novads","Municipality","Latvia",2 +"LVA","LV","LV-088","Saldus novads","Municipality","Latvia",2 +"LVA","LV","LV-089","Saulkrastu novads","Municipality","Latvia",2 +"LVA","LV","LV-090","Sējas novads","Municipality","Latvia",2 +"LVA","LV","LV-091","Siguldas novads","Municipality","Latvia",2 +"LVA","LV","LV-092","Skrīveru novads","Municipality","Latvia",2 +"LVA","LV","LV-093","Skrundas novads","Municipality","Latvia",2 +"LVA","LV","LV-094","Smiltenes novads","Municipality","Latvia",2 +"LVA","LV","LV-095","Stopiņu novads","Municipality","Latvia",2 +"LVA","LV","LV-096","Strenču novads","Municipality","Latvia",2 +"LVA","LV","LV-097","Talsu novads","Municipality","Latvia",2 +"LVA","LV","LV-098","Tērvetes novads","Municipality","Latvia",2 +"LVA","LV","LV-099","Tukuma novads","Municipality","Latvia",2 +"LVA","LV","LV-100","Vaiņodes novads","Municipality","Latvia",2 +"LVA","LV","LV-101","Valkas novads","Municipality","Latvia",2 +"LVA","LV","LV-102","Varakļānu novads","Municipality","Latvia",2 +"LVA","LV","LV-103","Vārkavas novads","Municipality","Latvia",2 +"LVA","LV","LV-104","Vecpiebalgas novads","Municipality","Latvia",2 +"LVA","LV","LV-105","Vecumnieku novads","Municipality","Latvia",2 +"LVA","LV","LV-106","Ventspils novads","Municipality","Latvia",2 +"LVA","LV","LV-107","Viesītes novads","Municipality","Latvia",2 +"LVA","LV","LV-108","Viļakas novads","Municipality","Latvia",2 +"LVA","LV","LV-109","Viļānu novads","Municipality","Latvia",2 +"LVA","LV","LV-110","Zilupes novads","Municipality","Latvia",2 +"LVA","LV","LV-DGV","Daugavpils","Republican City","Latvia",2 +"LVA","LV","LV-JEL","Jelgava","Republican City","Latvia",2 +"LVA","LV","LV-JKB","Jēkabpils","Republican City","Latvia",2 +"LVA","LV","LV-JUR","Jūrmala","Republican City","Latvia",2 +"LVA","LV","LV-LPX","Liepāja","Republican City","Latvia",2 +"LVA","LV","LV-REZ","Rēzekne","Republican City","Latvia",2 +"LVA","LV","LV-RIX","Rīga","Republican City","Latvia",2 +"LVA","LV","LV-VEN","Ventspils","Republican City","Latvia",2 +"LVA","LV","LV-VMR","Valmiera","Republican City","Latvia",2 +"LBY","LY","LY-BA","Banghāzī","Popularates","Libya",2 +"LBY","LY","LY-BU","Al Buţnān","Popularates","Libya",2 +"LBY","LY","LY-DR","Darnah","Popularates","Libya",2 +"LBY","LY","LY-GT","Ghāt","Popularates","Libya",2 +"LBY","LY","LY-JA","Al Jabal al Akhḑar","Popularates","Libya",2 +"LBY","LY","LY-JB","Jaghbūb","Popularates","Libya",2 +"LBY","LY","LY-JG","Al Jabal al Gharbī","Popularates","Libya",2 +"LBY","LY","LY-JI","Al Jifārah","Popularates","Libya",2 +"LBY","LY","LY-JU","Al Jufrah","Popularates","Libya",2 +"LBY","LY","LY-KF","Al Kufrah","Popularates","Libya",2 +"LBY","LY","LY-MB","Al Marqab","Popularates","Libya",2 +"LBY","LY","LY-MI","Mişrātah","Popularates","Libya",2 +"LBY","LY","LY-MJ","Al Marj","Popularates","Libya",2 +"LBY","LY","LY-MQ","Murzuq","Popularates","Libya",2 +"LBY","LY","LY-NL","Nālūt","Popularates","Libya",2 +"LBY","LY","LY-NQ","An Nuqaţ al Khams","Popularates","Libya",2 +"LBY","LY","LY-SB","Sabhā","Popularates","Libya",2 +"LBY","LY","LY-SR","Surt","Popularates","Libya",2 +"LBY","LY","LY-TB","Ţarābulus","Popularates","Libya",2 +"LBY","LY","LY-WA","Al Wāḩāt","Popularates","Libya",2 +"LBY","LY","LY-WD","Wādī al Ḩayāt","Popularates","Libya",2 +"LBY","LY","LY-WS","Wādī ash Shāţiʾ","Popularates","Libya",2 +"LBY","LY","LY-ZA","Az Zāwiyah","Popularates","Libya",2 +"MAR","MA","MA-01","Tanger-Tétouan","Economic region","Morocco",2 +"MAR","MA","MA-02","Gharb-Chrarda-Beni Hssen","Economic region","Morocco",2 +"MAR","MA","MA-03","Taza-Al Hoceima-Taounate","Economic region","Morocco",2 +"MAR","MA","MA-04","L'Oriental","Economic region","Morocco",2 +"MAR","MA","MA-05","Fès-Boulemane","Economic region","Morocco",2 +"MAR","MA","MA-06","Meknès-Tafilalet","Economic region","Morocco",2 +"MAR","MA","MA-07","Rabat-Salé-Zemmour-Zaer","Economic region","Morocco",2 +"MAR","MA","MA-08","Grand Casablanca","Economic region","Morocco",2 +"MAR","MA","MA-09","Chaouia-Ouardigha","Economic region","Morocco",2 +"MAR","MA","MA-10","Doukhala-Abda","Economic region","Morocco",2 +"MAR","MA","MA-11","Marrakech-Tensift-Al Haouz","Economic region","Morocco",2 +"MAR","MA","MA-12","Tadla-Azilal","Economic region","Morocco",2 +"MAR","MA","MA-13","Sous-Massa-Draa","Economic region","Morocco",2 +"MAR","MA","MA-14","Guelmim-Es Smara","Economic region","Morocco",2 +"MAR","MA","MA-15","Laâyoune-Boujdour-Sakia el Hamra","Economic region","Morocco",2 +"MAR","MA","MA-16","Oued ed Dahab-Lagouira","Economic region","Morocco",2 +"MAR","MA","MA-AGD","Agadir-Ida-Outanane","Prefecture","Morocco",2 +"MAR","MA","MA-AOU","Aousserd","Prefecture","Morocco",2 +"MAR","MA","MA-ASZ","Assa-Zag","Province","Morocco",2 +"MAR","MA","MA-AZI","Azilal","Province","Morocco",2 +"MAR","MA","MA-BEM","Beni Mellal","Province","Morocco",2 +"MAR","MA","MA-BER","Berkane","Province","Morocco",2 +"MAR","MA","MA-BES","Ben Slimane","Province","Morocco",2 +"MAR","MA","MA-BOD","Boujdour (EH)","Province","Morocco",2 +"MAR","MA","MA-BOM","Boulemane","Province","Morocco",2 +"MAR","MA","MA-CAS","Casablanca [Dar el Beïda]","Prefecture","Morocco",2 +"MAR","MA","MA-CHE","Chefchaouen","Province","Morocco",2 +"MAR","MA","MA-CHI","Chichaoua","Province","Morocco",2 +"MAR","MA","MA-CHT","Chtouka-Ait Baha","Province","Morocco",2 +"MAR","MA","MA-ERR","Errachidia","Province","Morocco",2 +"MAR","MA","MA-ESI","Essaouira","Province","Morocco",2 +"MAR","MA","MA-ESM","Es Smara (EH)","Province","Morocco",2 +"MAR","MA","MA-FAH","Fahs-Beni Makada","Prefecture","Morocco",2 +"MAR","MA","MA-FES","Fès-Dar-Dbibegh","Prefecture","Morocco",2 +"MAR","MA","MA-FIG","Figuig","Province","Morocco",2 +"MAR","MA","MA-GUE","Guelmim","Province","Morocco",2 +"MAR","MA","MA-HAJ","El Hajeb","Province","Morocco",2 +"MAR","MA","MA-HAO","Al Haouz","Province","Morocco",2 +"MAR","MA","MA-HOC","Al Hoceïma","Province","Morocco",2 +"MAR","MA","MA-IFR","Ifrane","Province","Morocco",2 +"MAR","MA","MA-INE","Inezgane-Ait Melloul","Prefecture","Morocco",2 +"MAR","MA","MA-JDI","El Jadida","Province","Morocco",2 +"MAR","MA","MA-JRA","Jrada","Province","Morocco",2 +"MAR","MA","MA-KEN","Kénitra","Province","Morocco",2 +"MAR","MA","MA-KES","Kelaat es Sraghna","Province","Morocco",2 +"MAR","MA","MA-KHE","Khemisaet","Province","Morocco",2 +"MAR","MA","MA-KHN","Khenifra","Province","Morocco",2 +"MAR","MA","MA-KHO","Khouribga","Province","Morocco",2 +"MAR","MA","MA-LAA","Laâyoune (EH)","Province","Morocco",2 +"MAR","MA","MA-LAR","Larache","Province","Morocco",2 +"MAR","MA","MA-MED","Médiouna","Province","Morocco",2 +"MAR","MA","MA-MEK","Meknès","Prefecture","Morocco",2 +"MAR","MA","MA-MMD","Marrakech-Medina","Prefecture","Morocco",2 +"MAR","MA","MA-MMN","Marrakech-Menara","Prefecture","Morocco",2 +"MAR","MA","MA-MOH","Mohammadia","Prefecture","Morocco",2 +"MAR","MA","MA-MOU","Moulay Yacoub","Province","Morocco",2 +"MAR","MA","MA-NAD","Nador","Province","Morocco",2 +"MAR","MA","MA-NOU","Nouaceur","Province","Morocco",2 +"MAR","MA","MA-OUA","Ouarzazate","Province","Morocco",2 +"MAR","MA","MA-OUD","Oued ed Dahab (EH)","Province","Morocco",2 +"MAR","MA","MA-OUJ","Oujda-Angad","Prefecture","Morocco",2 +"MAR","MA","MA-RAB","Rabat","Prefecture","Morocco",2 +"MAR","MA","MA-SAF","Safi","Province","Morocco",2 +"MAR","MA","MA-SAL","Salé","Prefecture","Morocco",2 +"MAR","MA","MA-SEF","Sefrou","Province","Morocco",2 +"MAR","MA","MA-SET","Settat","Province","Morocco",2 +"MAR","MA","MA-SIK","Sidl Kacem","Province","Morocco",2 +"MAR","MA","MA-SKH","Skhirate-Témara","Prefecture","Morocco",2 +"MAR","MA","MA-SYB","Sidi Youssef Ben Ali","Prefecture","Morocco",2 +"MAR","MA","MA-TAI","Taourirt","Province","Morocco",2 +"MAR","MA","MA-TAO","Taounate","Province","Morocco",2 +"MAR","MA","MA-TAR","Taroudant","Province","Morocco",2 +"MAR","MA","MA-TAT","Tata","Province","Morocco",2 +"MAR","MA","MA-TAZ","Taza","Province","Morocco",2 +"MAR","MA","MA-TET","Tétouan","Prefecture","Morocco",2 +"MAR","MA","MA-TIZ","Tiznit","Province","Morocco",2 +"MAR","MA","MA-TNG","Tanger-Assilah","Prefecture","Morocco",2 +"MAR","MA","MA-TNT","Tan-Tan","Province","Morocco",2 +"MAR","MA","MA-ZAG","Zagora","Province","Morocco",2 +"MCO","MC","MC-CL","La Colle","Quarter","Monaco",2 +"MCO","MC","MC-CO","La Condamine","Quarter","Monaco",2 +"MCO","MC","MC-FO","Fontvieille","Quarter","Monaco",2 +"MCO","MC","MC-GA","La Gare","Quarter","Monaco",2 +"MCO","MC","MC-JE","Jardin Exotique","Quarter","Monaco",2 +"MCO","MC","MC-LA","Larvotto","Quarter","Monaco",2 +"MCO","MC","MC-MA","Malbousquet","Quarter","Monaco",2 +"MCO","MC","MC-MC","Monte-Carlo","Quarter","Monaco",2 +"MCO","MC","MC-MG","Moneghetti","Quarter","Monaco",2 +"MCO","MC","MC-MO","Monaco-Ville","Quarter","Monaco",2 +"MCO","MC","MC-MU","Moulins","Quarter","Monaco",2 +"MCO","MC","MC-PH","Port-Hercule","Quarter","Monaco",2 +"MCO","MC","MC-SD","Sainte-Dévote","Quarter","Monaco",2 +"MCO","MC","MC-SO","La Source","Quarter","Monaco",2 +"MCO","MC","MC-SP","Spélugues","Quarter","Monaco",2 +"MCO","MC","MC-SR","Saint-Roman","Quarter","Monaco",2 +"MCO","MC","MC-VR","Vallon de la Rousse","Quarter","Monaco",2 +"MDA","MD","MD-AN","Anenii Noi","District","Moldova",2 +"MDA","MD","MD-BA","Bălți","City","Moldova",2 +"MDA","MD","MD-BD","Tighina","City","Moldova",2 +"MDA","MD","MD-BR","Briceni","District","Moldova",2 +"MDA","MD","MD-BS","Basarabeasca","District","Moldova",2 +"MDA","MD","MD-CA","Cahul","District","Moldova",2 +"MDA","MD","MD-CL","Călărași","District","Moldova",2 +"MDA","MD","MD-CM","Cimișlia","District","Moldova",2 +"MDA","MD","MD-CR","Criuleni","District","Moldova",2 +"MDA","MD","MD-CS","Căușeni","District","Moldova",2 +"MDA","MD","MD-CT","Cantemir","District","Moldova",2 +"MDA","MD","MD-CU","Chișinău","City","Moldova",2 +"MDA","MD","MD-DO","Dondușeni","District","Moldova",2 +"MDA","MD","MD-DR","Drochia","District","Moldova",2 +"MDA","MD","MD-DU","Dubăsari","District","Moldova",2 +"MDA","MD","MD-ED","Edineț","District","Moldova",2 +"MDA","MD","MD-FA","Fălești","District","Moldova",2 +"MDA","MD","MD-FL","Florești","District","Moldova",2 +"MDA","MD","MD-GA","Găgăuzia, Unitatea teritorială autonomă","Autonomous territorial unit","Moldova",2 +"MDA","MD","MD-GL","Glodeni","District","Moldova",2 +"MDA","MD","MD-HI","Hîncești","District","Moldova",2 +"MDA","MD","MD-IA","Ialoveni","District","Moldova",2 +"MDA","MD","MD-LE","Leova","District","Moldova",2 +"MDA","MD","MD-NI","Nisporeni","District","Moldova",2 +"MDA","MD","MD-OC","Ocnița","District","Moldova",2 +"MDA","MD","MD-OR","Orhei","District","Moldova",2 +"MDA","MD","MD-RE","Rezina","District","Moldova",2 +"MDA","MD","MD-RI","Rîșcani","District","Moldova",2 +"MDA","MD","MD-SD","Șoldănești","District","Moldova",2 +"MDA","MD","MD-SI","Sîngerei","District","Moldova",2 +"MDA","MD","MD-SN","Stînga Nistrului, unitatea teritorială din","Territorial unit","Moldova",2 +"MDA","MD","MD-SO","Soroca","District","Moldova",2 +"MDA","MD","MD-ST","Strășeni","District","Moldova",2 +"MDA","MD","MD-SV","Ștefan Vodă","District","Moldova",2 +"MDA","MD","MD-TA","Taraclia","District","Moldova",2 +"MDA","MD","MD-TE","Telenești","District","Moldova",2 +"MDA","MD","MD-UN","Ungheni","District","Moldova",2 +"MNE","ME","ME-01","Andrijevica","Municipality","Montenegro",2 +"MNE","ME","ME-02","Bar","Municipality","Montenegro",2 +"MNE","ME","ME-03","Berane","Municipality","Montenegro",2 +"MNE","ME","ME-04","Bijelo Polje","Municipality","Montenegro",2 +"MNE","ME","ME-05","Budva","Municipality","Montenegro",2 +"MNE","ME","ME-06","Cetinje","Municipality","Montenegro",2 +"MNE","ME","ME-07","Danilovgrad","Municipality","Montenegro",2 +"MNE","ME","ME-08","Herceg-Novi","Municipality","Montenegro",2 +"MNE","ME","ME-09","Kolašin","Municipality","Montenegro",2 +"MNE","ME","ME-10","Kotor","Municipality","Montenegro",2 +"MNE","ME","ME-11","Mojkovac","Municipality","Montenegro",2 +"MNE","ME","ME-12","Nikšić","Municipality","Montenegro",2 +"MNE","ME","ME-13","Plav","Municipality","Montenegro",2 +"MNE","ME","ME-14","Pljevlja","Municipality","Montenegro",2 +"MNE","ME","ME-15","Plužine","Municipality","Montenegro",2 +"MNE","ME","ME-16","Podgorica","Municipality","Montenegro",2 +"MNE","ME","ME-17","Rožaje","Municipality","Montenegro",2 +"MNE","ME","ME-18","Šavnik","Municipality","Montenegro",2 +"MNE","ME","ME-19","Tivat","Municipality","Montenegro",2 +"MNE","ME","ME-20","Ulcinj","Municipality","Montenegro",2 +"MNE","ME","ME-21","Žabljak","Municipality","Montenegro",2 +"MDG","MG","MG-A","Toamasina","Autonomous province","Madagascar",2 +"MDG","MG","MG-D","Antsiranana","Autonomous province","Madagascar",2 +"MDG","MG","MG-F","Fianarantsoa","Autonomous province","Madagascar",2 +"MDG","MG","MG-M","Mahajanga","Autonomous province","Madagascar",2 +"MDG","MG","MG-T","Antananarivo","Autonomous province","Madagascar",2 +"MDG","MG","MG-U","Toliara","Autonomous province","Madagascar",2 +"MHL","MH","MH-ALK","Ailuk","Municipality","Marshall Islands",2 +"MHL","MH","MH-ALL","Ailinglaplap","Municipality","Marshall Islands",2 +"MHL","MH","MH-ARN","Arno","Municipality","Marshall Islands",2 +"MHL","MH","MH-AUR","Aur","Municipality","Marshall Islands",2 +"MHL","MH","MH-EBO","Ebon","Municipality","Marshall Islands",2 +"MHL","MH","MH-ENI","Enewetak","Municipality","Marshall Islands",2 +"MHL","MH","MH-JAB","Jabat","Municipality","Marshall Islands",2 +"MHL","MH","MH-JAL","Jaluit","Municipality","Marshall Islands",2 +"MHL","MH","MH-KIL","Kili","Municipality","Marshall Islands",2 +"MHL","MH","MH-KWA","Kwajalein","Municipality","Marshall Islands",2 +"MHL","MH","MH-L","Ralik chain","Chains (of islands)","Marshall Islands",2 +"MHL","MH","MH-LAE","Lae","Municipality","Marshall Islands",2 +"MHL","MH","MH-LIB","Lib","Municipality","Marshall Islands",2 +"MHL","MH","MH-LIK","Likiep","Municipality","Marshall Islands",2 +"MHL","MH","MH-MAJ","Majuro","Municipality","Marshall Islands",2 +"MHL","MH","MH-MAL","Maloelap","Municipality","Marshall Islands",2 +"MHL","MH","MH-MEJ","Mejit","Municipality","Marshall Islands",2 +"MHL","MH","MH-MIL","Mili","Municipality","Marshall Islands",2 +"MHL","MH","MH-NMK","Namdrik","Municipality","Marshall Islands",2 +"MHL","MH","MH-NMU","Namu","Municipality","Marshall Islands",2 +"MHL","MH","MH-RON","Rongelap","Municipality","Marshall Islands",2 +"MHL","MH","MH-T","Ratak chain","Chains (of islands)","Marshall Islands",2 +"MHL","MH","MH-UJA","Ujae","Municipality","Marshall Islands",2 +"MHL","MH","MH-UTI","Utirik","Municipality","Marshall Islands",2 +"MHL","MH","MH-WTJ","Wotje","Municipality","Marshall Islands",2 +"MHL","MH","MH-WTN","Wotho","Municipality","Marshall Islands",2 +"MKD","MK","MK-01","Aerodrom","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-02","Aračinovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-03","Berovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-04","Bitola","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-05","Bogdanci","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-06","Bogovinje","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-07","Bosilovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-08","Brvenica","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-09","Butel","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-10","Valandovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-11","Vasilevo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-12","Vevčani","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-13","Veles","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-14","Vinica","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-15","Vraneštica","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-16","Vrapčište","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-17","Gazi Baba","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-18","Gevgelija","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-19","Gostivar","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-20","Gradsko","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-21","Debar","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-22","Debarca","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-23","Delčevo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-24","Demir Kapija","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-25","Demir Hisar","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-26","Dojran","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-27","Dolneni","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-28","Drugovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-29","Gjorče Petrov","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-30","Želino","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-31","Zajas","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-32","Zelenikovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-33","Zrnovci","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-34","Ilinden","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-35","Jegunovce","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-36","Kavadarci","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-37","Karbinci","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-38","Karpoš","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-39","Kisela Voda","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-40","Kičevo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-41","Konče","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-42","Kočani","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-43","Kratovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-44","Kriva Palanka","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-45","Krivogaštani","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-46","Kruševo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-47","Kumanovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-48","Lipkovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-49","Lozovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-50","Mavrovo-i-Rostuša","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-51","Makedonska Kamenica","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-52","Makedonski Brod","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-53","Mogila","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-54","Negotino","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-55","Novaci","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-56","Novo Selo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-57","Oslomej","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-58","Ohrid","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-59","Petrovec","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-60","Pehčevo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-61","Plasnica","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-62","Prilep","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-63","Probištip","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-64","Radoviš","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-65","Rankovce","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-66","Resen","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-67","Rosoman","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-68","Saraj","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-69","Sveti Nikole","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-70","Sopište","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-71","Staro Nagoričane","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-72","Struga","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-73","Strumica","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-74","Studeničani","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-75","Tearce","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-76","Tetovo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-77","Centar","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-78","Centar Župa","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-79","Čair","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-80","Čaška","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-81","Češinovo-Obleševo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-82","Čučer Sandevo","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-83","Štip","Municipality","Macedonia, Republic of",2 +"MKD","MK","MK-84","Šuto Orizari","Municipality","Macedonia, Republic of",2 +"MLI","ML","ML-1","Kayes","Region","Mali",2 +"MLI","ML","ML-2","Koulikoro","Region","Mali",2 +"MLI","ML","ML-3","Sikasso","Region","Mali",2 +"MLI","ML","ML-4","Ségou","Region","Mali",2 +"MLI","ML","ML-5","Mopti","Region","Mali",2 +"MLI","ML","ML-6","Tombouctou","Region","Mali",2 +"MLI","ML","ML-7","Gao","Region","Mali",2 +"MLI","ML","ML-8","Kidal","Region","Mali",2 +"MLI","ML","ML-BK0","Bamako","District","Mali",2 +"MMR","MM","MM-01","Sagaing","Division","Myanmar",2 +"MMR","MM","MM-02","Bago","Division","Myanmar",2 +"MMR","MM","MM-03","Magway","Division","Myanmar",2 +"MMR","MM","MM-04","Mandalay","Division","Myanmar",2 +"MMR","MM","MM-05","Tanintharyi","Division","Myanmar",2 +"MMR","MM","MM-06","Yangon","Division","Myanmar",2 +"MMR","MM","MM-07","Ayeyarwady","Division","Myanmar",2 +"MMR","MM","MM-11","Kachin","State","Myanmar",2 +"MMR","MM","MM-12","Kayah","State","Myanmar",2 +"MMR","MM","MM-13","Kayin","State","Myanmar",2 +"MMR","MM","MM-14","Chin","State","Myanmar",2 +"MMR","MM","MM-15","Mon","State","Myanmar",2 +"MMR","MM","MM-16","Rakhine","State","Myanmar",2 +"MMR","MM","MM-17","Shan","State","Myanmar",2 +"MNG","MN","MN-035","Orhon","Municipality","Mongolia",2 +"MNG","MN","MN-037","Darhan uul","Municipality","Mongolia",2 +"MNG","MN","MN-039","Hentiy","Province","Mongolia",2 +"MNG","MN","MN-041","Hövsgöl","Province","Mongolia",2 +"MNG","MN","MN-043","Hovd","Province","Mongolia",2 +"MNG","MN","MN-046","Uvs","Province","Mongolia",2 +"MNG","MN","MN-047","Töv","Province","Mongolia",2 +"MNG","MN","MN-049","Selenge","Province","Mongolia",2 +"MNG","MN","MN-051","Sühbaatar","Province","Mongolia",2 +"MNG","MN","MN-053","Ömnögovi","Province","Mongolia",2 +"MNG","MN","MN-055","Övörhangay","Province","Mongolia",2 +"MNG","MN","MN-057","Dzavhan","Province","Mongolia",2 +"MNG","MN","MN-059","Dundgovi","Province","Mongolia",2 +"MNG","MN","MN-061","Dornod","Province","Mongolia",2 +"MNG","MN","MN-063","Dornogovi","Province","Mongolia",2 +"MNG","MN","MN-064","Govi-Sumber","Municipality","Mongolia",2 +"MNG","MN","MN-065","Govi-Altay","Province","Mongolia",2 +"MNG","MN","MN-067","Bulgan","Province","Mongolia",2 +"MNG","MN","MN-069","Bayanhongor","Province","Mongolia",2 +"MNG","MN","MN-071","Bayan-Ölgiy","Province","Mongolia",2 +"MNG","MN","MN-073","Arhangay","Province","Mongolia",2 +"MNG","MN","MN-1","Ulanbaatar","Municipality","Mongolia",2 +"MRT","MR","MR-01","Hodh ech Chargui","Region","Mauritania",2 +"MRT","MR","MR-02","Hodh el Charbi","Region","Mauritania",2 +"MRT","MR","MR-03","Assaba","Region","Mauritania",2 +"MRT","MR","MR-04","Gorgol","Region","Mauritania",2 +"MRT","MR","MR-05","Brakna","Region","Mauritania",2 +"MRT","MR","MR-06","Trarza","Region","Mauritania",2 +"MRT","MR","MR-07","Adrar","Region","Mauritania",2 +"MRT","MR","MR-08","Dakhlet Nouadhibou","Region","Mauritania",2 +"MRT","MR","MR-09","Tagant","Region","Mauritania",2 +"MRT","MR","MR-10","Guidimaka","Region","Mauritania",2 +"MRT","MR","MR-11","Tiris Zemmour","Region","Mauritania",2 +"MRT","MR","MR-12","Inchiri","Region","Mauritania",2 +"MRT","MR","MR-NKC","Nouakchott","District","Mauritania",2 +"MLT","MT","MT-01","Attard","Local council","Malta",2 +"MLT","MT","MT-02","Balzan","Local council","Malta",2 +"MLT","MT","MT-03","Birgu","Local council","Malta",2 +"MLT","MT","MT-04","Birkirkara","Local council","Malta",2 +"MLT","MT","MT-05","Birżebbuġa","Local council","Malta",2 +"MLT","MT","MT-06","Bormla","Local council","Malta",2 +"MLT","MT","MT-07","Dingli","Local council","Malta",2 +"MLT","MT","MT-08","Fgura","Local council","Malta",2 +"MLT","MT","MT-09","Floriana","Local council","Malta",2 +"MLT","MT","MT-10","Fontana","Local council","Malta",2 +"MLT","MT","MT-11","Gudja","Local council","Malta",2 +"MLT","MT","MT-12","Gżira","Local council","Malta",2 +"MLT","MT","MT-13","Għajnsielem","Local council","Malta",2 +"MLT","MT","MT-14","Għarb","Local council","Malta",2 +"MLT","MT","MT-15","Għargħur","Local council","Malta",2 +"MLT","MT","MT-16","Għasri","Local council","Malta",2 +"MLT","MT","MT-17","Għaxaq","Local council","Malta",2 +"MLT","MT","MT-18","Ħamrun","Local council","Malta",2 +"MLT","MT","MT-19","Iklin","Local council","Malta",2 +"MLT","MT","MT-20","Isla","Local council","Malta",2 +"MLT","MT","MT-21","Kalkara","Local council","Malta",2 +"MLT","MT","MT-22","Kerċem","Local council","Malta",2 +"MLT","MT","MT-23","Kirkop","Local council","Malta",2 +"MLT","MT","MT-24","Lija","Local council","Malta",2 +"MLT","MT","MT-25","Luqa","Local council","Malta",2 +"MLT","MT","MT-26","Marsa","Local council","Malta",2 +"MLT","MT","MT-27","Marsaskala","Local council","Malta",2 +"MLT","MT","MT-28","Marsaxlokk","Local council","Malta",2 +"MLT","MT","MT-29","Mdina","Local council","Malta",2 +"MLT","MT","MT-30","Mellieħa","Local council","Malta",2 +"MLT","MT","MT-31","Mġarr","Local council","Malta",2 +"MLT","MT","MT-32","Mosta","Local council","Malta",2 +"MLT","MT","MT-33","Mqabba","Local council","Malta",2 +"MLT","MT","MT-34","Msida","Local council","Malta",2 +"MLT","MT","MT-35","Mtarfa","Local council","Malta",2 +"MLT","MT","MT-36","Munxar","Local council","Malta",2 +"MLT","MT","MT-37","Nadur","Local council","Malta",2 +"MLT","MT","MT-38","Naxxar","Local council","Malta",2 +"MLT","MT","MT-39","Paola","Local council","Malta",2 +"MLT","MT","MT-40","Pembroke","Local council","Malta",2 +"MLT","MT","MT-41","Pietà","Local council","Malta",2 +"MLT","MT","MT-42","Qala","Local council","Malta",2 +"MLT","MT","MT-43","Qormi","Local council","Malta",2 +"MLT","MT","MT-44","Qrendi","Local council","Malta",2 +"MLT","MT","MT-45","Rabat Għawdex","Local council","Malta",2 +"MLT","MT","MT-46","Rabat Malta","Local council","Malta",2 +"MLT","MT","MT-47","Safi","Local council","Malta",2 +"MLT","MT","MT-48","San Ġiljan","Local council","Malta",2 +"MLT","MT","MT-49","San Ġwann","Local council","Malta",2 +"MLT","MT","MT-50","San Lawrenz","Local council","Malta",2 +"MLT","MT","MT-51","San Pawl il-Baħar","Local council","Malta",2 +"MLT","MT","MT-52","Sannat","Local council","Malta",2 +"MLT","MT","MT-53","Santa Luċija","Local council","Malta",2 +"MLT","MT","MT-54","Santa Venera","Local council","Malta",2 +"MLT","MT","MT-55","Siġġiewi","Local council","Malta",2 +"MLT","MT","MT-56","Sliema","Local council","Malta",2 +"MLT","MT","MT-57","Swieqi","Local council","Malta",2 +"MLT","MT","MT-58","Ta’ Xbiex","Local council","Malta",2 +"MLT","MT","MT-59","Tarxien","Local council","Malta",2 +"MLT","MT","MT-60","Valletta","Local council","Malta",2 +"MLT","MT","MT-61","Xagħra","Local council","Malta",2 +"MLT","MT","MT-62","Xewkija","Local council","Malta",2 +"MLT","MT","MT-63","Xgħajra","Local council","Malta",2 +"MLT","MT","MT-64","Żabbar","Local council","Malta",2 +"MLT","MT","MT-65","Żebbuġ Għawdex","Local council","Malta",2 +"MLT","MT","MT-66","Żebbuġ Malta","Local council","Malta",2 +"MLT","MT","MT-67","Żejtun","Local council","Malta",2 +"MLT","MT","MT-68","Żurrieq","Local council","Malta",2 +"MUS","MU","MU-AG","Agalega Islands","Dependency","Mauritius",2 +"MUS","MU","MU-BL","Black River","District","Mauritius",2 +"MUS","MU","MU-BR","Beau Bassin-Rose Hill","City","Mauritius",2 +"MUS","MU","MU-CC","Cargados Carajos Shoals","Dependency","Mauritius",2 +"MUS","MU","MU-CU","Curepipe","City","Mauritius",2 +"MUS","MU","MU-FL","Flacq","District","Mauritius",2 +"MUS","MU","MU-GP","Grand Port","District","Mauritius",2 +"MUS","MU","MU-MO","Moka","District","Mauritius",2 +"MUS","MU","MU-PA","Pamplemousses","District","Mauritius",2 +"MUS","MU","MU-PL","Port Louis","District","Mauritius",2 +"MUS","MU","MU-PU","Port Louis","City","Mauritius",2 +"MUS","MU","MU-PW","Plaines Wilhems","District","Mauritius",2 +"MUS","MU","MU-QB","Quatre Bornes","City","Mauritius",2 +"MUS","MU","MU-RO","Rodrigues Island","Dependency","Mauritius",2 +"MUS","MU","MU-RP","Rivière du Rempart","District","Mauritius",2 +"MUS","MU","MU-SA","Savanne","District","Mauritius",2 +"MUS","MU","MU-VP","Vacoas-Phoenix","City","Mauritius",2 +"MDV","MV","MV-00","Alifu Dhaalu","Administrative atoll","Maldives",2 +"MDV","MV","MV-01","Seenu","Administrative atoll","Maldives",2 +"MDV","MV","MV-02","Alifu Alifu","Administrative atoll","Maldives",2 +"MDV","MV","MV-03","Lhaviyani","Administrative atoll","Maldives",2 +"MDV","MV","MV-04","Vaavu","Administrative atoll","Maldives",2 +"MDV","MV","MV-05","Laamu","Administrative atoll","Maldives",2 +"MDV","MV","MV-07","Haa Alifu","Administrative atoll","Maldives",2 +"MDV","MV","MV-08","Thaa","Administrative atoll","Maldives",2 +"MDV","MV","MV-12","Meemu","Administrative atoll","Maldives",2 +"MDV","MV","MV-13","Raa","Administrative atoll","Maldives",2 +"MDV","MV","MV-14","Faafu","Administrative atoll","Maldives",2 +"MDV","MV","MV-17","Dhaalu","Administrative atoll","Maldives",2 +"MDV","MV","MV-20","Baa","Administrative atoll","Maldives",2 +"MDV","MV","MV-23","Haa Dhaalu","Administrative atoll","Maldives",2 +"MDV","MV","MV-24","Shaviyani","Administrative atoll","Maldives",2 +"MDV","MV","MV-25","Noonu","Administrative atoll","Maldives",2 +"MDV","MV","MV-26","Kaafu","Administrative atoll","Maldives",2 +"MDV","MV","MV-27","Gaafu Alifu","Administrative atoll","Maldives",2 +"MDV","MV","MV-28","Gaafu Dhaalu","Administrative atoll","Maldives",2 +"MDV","MV","MV-29","Gnaviyani","Administrative atoll","Maldives",2 +"MDV","MV","MV-CE","Central","Province","Maldives",2 +"MDV","MV","MV-MLE","Male","City","Maldives",2 +"MDV","MV","MV-NC","North Central","Province","Maldives",2 +"MDV","MV","MV-NO","North","Province","Maldives",2 +"MDV","MV","MV-SC","South Central","Province","Maldives",2 +"MDV","MV","MV-SU","South","Province","Maldives",2 +"MDV","MV","MV-UN","Upper North","Province","Maldives",2 +"MDV","MV","MV-US","Upper South","Province","Maldives",2 +"MWI","MW","MW-BA","Balaka","District","Malawi",2 +"MWI","MW","MW-BL","Blantyre","District","Malawi",2 +"MWI","MW","MW-C","Central Region","Region","Malawi",2 +"MWI","MW","MW-CK","Chikwawa","District","Malawi",2 +"MWI","MW","MW-CR","Chiradzulu","District","Malawi",2 +"MWI","MW","MW-CT","Chitipa","District","Malawi",2 +"MWI","MW","MW-DE","Dedza","District","Malawi",2 +"MWI","MW","MW-DO","Dowa","District","Malawi",2 +"MWI","MW","MW-KR","Karonga","District","Malawi",2 +"MWI","MW","MW-KS","Kasungu","District","Malawi",2 +"MWI","MW","MW-LI","Lilongwe","District","Malawi",2 +"MWI","MW","MW-LK","Likoma","District","Malawi",2 +"MWI","MW","MW-MC","Mchinji","District","Malawi",2 +"MWI","MW","MW-MG","Mangochi","District","Malawi",2 +"MWI","MW","MW-MH","Machinga","District","Malawi",2 +"MWI","MW","MW-MU","Mulanje","District","Malawi",2 +"MWI","MW","MW-MW","Mwanza","District","Malawi",2 +"MWI","MW","MW-MZ","Mzimba","District","Malawi",2 +"MWI","MW","MW-N","Northern Region","Region","Malawi",2 +"MWI","MW","MW-NB","Nkhata Bay","District","Malawi",2 +"MWI","MW","MW-NE","Neno","District","Malawi",2 +"MWI","MW","MW-NI","Ntchisi","District","Malawi",2 +"MWI","MW","MW-NK","Nkhotakota","District","Malawi",2 +"MWI","MW","MW-NS","Nsanje","District","Malawi",2 +"MWI","MW","MW-NU","Ntcheu","District","Malawi",2 +"MWI","MW","MW-PH","Phalombe","District","Malawi",2 +"MWI","MW","MW-RU","Rumphi","District","Malawi",2 +"MWI","MW","MW-S","Southern Region","Region","Malawi",2 +"MWI","MW","MW-SA","Salima","District","Malawi",2 +"MWI","MW","MW-TH","Thyolo","District","Malawi",2 +"MWI","MW","MW-ZO","Zomba","District","Malawi",2 +"MEX","MX","MX-AGU","Aguascalientes","State","Mexico",2 +"MEX","MX","MX-BCN","Baja California","State","Mexico",2 +"MEX","MX","MX-BCS","Baja California Sur","State","Mexico",2 +"MEX","MX","MX-CAM","Campeche","State","Mexico",2 +"MEX","MX","MX-CHH","Chihuahua","State","Mexico",2 +"MEX","MX","MX-CHP","Chiapas","State","Mexico",2 +"MEX","MX","MX-COA","Coahuila","State","Mexico",2 +"MEX","MX","MX-COL","Colima","State","Mexico",2 +"MEX","MX","MX-DIF","Distrito Federal","Federal district","Mexico",2 +"MEX","MX","MX-DUR","Durango","State","Mexico",2 +"MEX","MX","MX-GRO","Guerrero","State","Mexico",2 +"MEX","MX","MX-GUA","Guanajuato","State","Mexico",2 +"MEX","MX","MX-HID","Hidalgo","State","Mexico",2 +"MEX","MX","MX-JAL","Jalisco","State","Mexico",2 +"MEX","MX","MX-MEX","México","State","Mexico",2 +"MEX","MX","MX-MIC","Michoacán","State","Mexico",2 +"MEX","MX","MX-MOR","Morelos","State","Mexico",2 +"MEX","MX","MX-NAY","Nayarit","State","Mexico",2 +"MEX","MX","MX-NLE","Nuevo León","State","Mexico",2 +"MEX","MX","MX-OAX","Oaxaca","State","Mexico",2 +"MEX","MX","MX-PUE","Puebla","State","Mexico",2 +"MEX","MX","MX-QUE","Querétaro","State","Mexico",2 +"MEX","MX","MX-ROO","Quintana Roo","State","Mexico",2 +"MEX","MX","MX-SIN","Sinaloa","State","Mexico",2 +"MEX","MX","MX-SLP","San Luis Potosí","State","Mexico",2 +"MEX","MX","MX-SON","Sonora","State","Mexico",2 +"MEX","MX","MX-TAB","Tabasco","State","Mexico",2 +"MEX","MX","MX-TAM","Tamaulipas","State","Mexico",2 +"MEX","MX","MX-TLA","Tlaxcala","State","Mexico",2 +"MEX","MX","MX-VER","Veracruz","State","Mexico",2 +"MEX","MX","MX-YUC","Yucatán","State","Mexico",2 +"MEX","MX","MX-ZAC","Zacatecas","State","Mexico",2 +"MYS","MY","MY-01","Johor","State","Malaysia",2 +"MYS","MY","MY-02","Kedah","State","Malaysia",2 +"MYS","MY","MY-03","Kelantan","State","Malaysia",2 +"MYS","MY","MY-04","Melaka","State","Malaysia",2 +"MYS","MY","MY-05","Negeri Sembilan","State","Malaysia",2 +"MYS","MY","MY-06","Pahang","State","Malaysia",2 +"MYS","MY","MY-07","Pulau Pinang","State","Malaysia",2 +"MYS","MY","MY-08","Perak","State","Malaysia",2 +"MYS","MY","MY-09","Perlis","State","Malaysia",2 +"MYS","MY","MY-10","Selangor","State","Malaysia",2 +"MYS","MY","MY-11","Terengganu","State","Malaysia",2 +"MYS","MY","MY-12","Sabah","State","Malaysia",2 +"MYS","MY","MY-13","Sarawak","State","Malaysia",2 +"MYS","MY","MY-14","Wilayah Persekutuan Kuala Lumpur","Federal Territories","Malaysia",2 +"MYS","MY","MY-15","Wilayah Persekutuan Labuan","Federal Territories","Malaysia",2 +"MYS","MY","MY-16","Wilayah Persekutuan Putrajaya","Federal Territories","Malaysia",2 +"MOZ","MZ","MZ-A","Niassa","Province","Mozambique",2 +"MOZ","MZ","MZ-B","Manica","Province","Mozambique",2 +"MOZ","MZ","MZ-G","Gaza","Province","Mozambique",2 +"MOZ","MZ","MZ-I","Inhambane","Province","Mozambique",2 +"MOZ","MZ","MZ-L","Maputo","Province","Mozambique",2 +"MOZ","MZ","MZ-MPM","Maputo (city)","City","Mozambique",2 +"MOZ","MZ","MZ-N","Numpula","Province","Mozambique",2 +"MOZ","MZ","MZ-P","Cabo Delgado","Province","Mozambique",2 +"MOZ","MZ","MZ-Q","Zambezia","Province","Mozambique",2 +"MOZ","MZ","MZ-S","Sofala","Province","Mozambique",2 +"MOZ","MZ","MZ-T","Tete","Province","Mozambique",2 +"NAM","NA","NA-CA","Caprivi","Region","Namibia",2 +"NAM","NA","NA-ER","Erongo","Region","Namibia",2 +"NAM","NA","NA-HA","Hardap","Region","Namibia",2 +"NAM","NA","NA-KA","Karas","Region","Namibia",2 +"NAM","NA","NA-KH","Khomas","Region","Namibia",2 +"NAM","NA","NA-KU","Kunene","Region","Namibia",2 +"NAM","NA","NA-OD","Otjozondjupa","Region","Namibia",2 +"NAM","NA","NA-OH","Omaheke","Region","Namibia",2 +"NAM","NA","NA-OK","Okavango","Region","Namibia",2 +"NAM","NA","NA-ON","Oshana","Region","Namibia",2 +"NAM","NA","NA-OS","Omusati","Region","Namibia",2 +"NAM","NA","NA-OT","Oshikoto","Region","Namibia",2 +"NAM","NA","NA-OW","Ohangwena","Region","Namibia",2 +"NER","NE","NE-1","Agadez","Department","Niger",2 +"NER","NE","NE-2","Diffa","Department","Niger",2 +"NER","NE","NE-3","Dosso","Department","Niger",2 +"NER","NE","NE-4","Maradi","Department","Niger",2 +"NER","NE","NE-5","Tahoua","Department","Niger",2 +"NER","NE","NE-6","Tillabéri","Department","Niger",2 +"NER","NE","NE-7","Zinder","Department","Niger",2 +"NER","NE","NE-8","Niamey","Capital District","Niger",2 +"NGA","NG","NG-AB","Abia","State","Nigeria",2 +"NGA","NG","NG-AD","Adamawa","State","Nigeria",2 +"NGA","NG","NG-AK","Akwa Ibom","State","Nigeria",2 +"NGA","NG","NG-AN","Anambra","State","Nigeria",2 +"NGA","NG","NG-BA","Bauchi","State","Nigeria",2 +"NGA","NG","NG-BE","Benue","State","Nigeria",2 +"NGA","NG","NG-BO","Borno","State","Nigeria",2 +"NGA","NG","NG-BY","Bayelsa","State","Nigeria",2 +"NGA","NG","NG-CR","Cross River","State","Nigeria",2 +"NGA","NG","NG-DE","Delta","State","Nigeria",2 +"NGA","NG","NG-EB","Ebonyi","State","Nigeria",2 +"NGA","NG","NG-ED","Edo","State","Nigeria",2 +"NGA","NG","NG-EK","Ekiti","State","Nigeria",2 +"NGA","NG","NG-EN","Enugu","State","Nigeria",2 +"NGA","NG","NG-FC","Abuja Capital Territory","Capital Territory","Nigeria",2 +"NGA","NG","NG-GO","Gombe","State","Nigeria",2 +"NGA","NG","NG-IM","Imo","State","Nigeria",2 +"NGA","NG","NG-JI","Jigawa","State","Nigeria",2 +"NGA","NG","NG-KD","Kaduna","State","Nigeria",2 +"NGA","NG","NG-KE","Kebbi","State","Nigeria",2 +"NGA","NG","NG-KN","Kano","State","Nigeria",2 +"NGA","NG","NG-KO","Kogi","State","Nigeria",2 +"NGA","NG","NG-KT","Katsina","State","Nigeria",2 +"NGA","NG","NG-KW","Kwara","State","Nigeria",2 +"NGA","NG","NG-LA","Lagos","State","Nigeria",2 +"NGA","NG","NG-NA","Nassarawa","State","Nigeria",2 +"NGA","NG","NG-NI","Niger","State","Nigeria",2 +"NGA","NG","NG-OG","Ogun","State","Nigeria",2 +"NGA","NG","NG-ON","Ondo","State","Nigeria",2 +"NGA","NG","NG-OS","Osun","State","Nigeria",2 +"NGA","NG","NG-OY","Oyo","State","Nigeria",2 +"NGA","NG","NG-PL","Plateau","State","Nigeria",2 +"NGA","NG","NG-RI","Rivers","State","Nigeria",2 +"NGA","NG","NG-SO","Sokoto","State","Nigeria",2 +"NGA","NG","NG-TA","Taraba","State","Nigeria",2 +"NGA","NG","NG-YO","Yobe","State","Nigeria",2 +"NGA","NG","NG-ZA","Zamfara","State","Nigeria",2 +"NIC","NI","NI-AN","Atlántico Norte","Autonomous Region","Nicaragua",2 +"NIC","NI","NI-AS","Atlántico Sur","Autonomous Region","Nicaragua",2 +"NIC","NI","NI-BO","Boaco","Department","Nicaragua",2 +"NIC","NI","NI-CA","Carazo","Department","Nicaragua",2 +"NIC","NI","NI-CI","Chinandega","Department","Nicaragua",2 +"NIC","NI","NI-CO","Chontales","Department","Nicaragua",2 +"NIC","NI","NI-ES","Estelí","Department","Nicaragua",2 +"NIC","NI","NI-GR","Granada","Department","Nicaragua",2 +"NIC","NI","NI-JI","Jinotega","Department","Nicaragua",2 +"NIC","NI","NI-LE","León","Department","Nicaragua",2 +"NIC","NI","NI-MD","Madriz","Department","Nicaragua",2 +"NIC","NI","NI-MN","Managua","Department","Nicaragua",2 +"NIC","NI","NI-MS","Masaya","Department","Nicaragua",2 +"NIC","NI","NI-MT","Matagalpa","Department","Nicaragua",2 +"NIC","NI","NI-NS","Nueva Segovia","Department","Nicaragua",2 +"NIC","NI","NI-RI","Rivas","Department","Nicaragua",2 +"NIC","NI","NI-SJ","Río San Juan","Department","Nicaragua",2 +"NLD","NL","NL-AW","Aruba","Country","Netherlands",2 +"NLD","NL","NL-BQ1","Bonaire","Special municipality","Netherlands",2 +"NLD","NL","NL-BQ2","Saba","Special municipality","Netherlands",2 +"NLD","NL","NL-BQ3","Sint Eustatius","Special municipality","Netherlands",2 +"NLD","NL","NL-CW","Curaçao","Country","Netherlands",2 +"NLD","NL","NL-DR","Drenthe","Province","Netherlands",2 +"NLD","NL","NL-FL","Flevoland","Province","Netherlands",2 +"NLD","NL","NL-FR","Friesland","Province","Netherlands",2 +"NLD","NL","NL-GE","Gelderland","Province","Netherlands",2 +"NLD","NL","NL-GR","Groningen","Province","Netherlands",2 +"NLD","NL","NL-LI","Limburg","Province","Netherlands",2 +"NLD","NL","NL-NB","Noord-Brabant","Province","Netherlands",2 +"NLD","NL","NL-NH","Noord-Holland","Province","Netherlands",2 +"NLD","NL","NL-OV","Overijssel","Province","Netherlands",2 +"NLD","NL","NL-SX","Sint Maarten","Country","Netherlands",2 +"NLD","NL","NL-UT","Utrecht","Province","Netherlands",2 +"NLD","NL","NL-ZE","Zeeland","Province","Netherlands",2 +"NLD","NL","NL-ZH","Zuid-Holland","Province","Netherlands",2 +"NOR","NO","NO-01","Østfold","County","Norway",2 +"NOR","NO","NO-02","Akershus","County","Norway",2 +"NOR","NO","NO-03","Oslo","County","Norway",2 +"NOR","NO","NO-04","Hedmark","County","Norway",2 +"NOR","NO","NO-05","Oppland","County","Norway",2 +"NOR","NO","NO-06","Buskerud","County","Norway",2 +"NOR","NO","NO-07","Vestfold","County","Norway",2 +"NOR","NO","NO-08","Telemark","County","Norway",2 +"NOR","NO","NO-09","Aust-Agder","County","Norway",2 +"NOR","NO","NO-10","Vest-Agder","County","Norway",2 +"NOR","NO","NO-11","Rogaland","County","Norway",2 +"NOR","NO","NO-12","Hordaland","County","Norway",2 +"NOR","NO","NO-14","Sogn og Fjordane","County","Norway",2 +"NOR","NO","NO-15","Møre og Romsdal","County","Norway",2 +"NOR","NO","NO-16","Sør-Trøndelag","County","Norway",2 +"NOR","NO","NO-17","Nord-Trøndelag","County","Norway",2 +"NOR","NO","NO-18","Nordland","County","Norway",2 +"NOR","NO","NO-19","Troms","County","Norway",2 +"NOR","NO","NO-20","Finnmark","County","Norway",2 +"NOR","NO","NO-21","Svalbard (Arctic Region)","Arctic Region","Norway",2 +"NOR","NO","NO-22","Jan Mayen (Arctic Region)","Arctic Region","Norway",2 +"NPL","NP","NP-1","Madhyamanchal","Development region","Nepal",2 +"NPL","NP","NP-2","Madhya Pashchimanchal","Development region","Nepal",2 +"NPL","NP","NP-3","Pashchimanchal","Development region","Nepal",2 +"NPL","NP","NP-4","Purwanchal","Development region","Nepal",2 +"NPL","NP","NP-5","Sudur Pashchimanchal","Development region","Nepal",2 +"NPL","NP","NP-BA","Bagmati","zone","Nepal",2 +"NPL","NP","NP-BH","Bheri","zone","Nepal",2 +"NPL","NP","NP-DH","Dhawalagiri","zone","Nepal",2 +"NPL","NP","NP-GA","Gandaki","zone","Nepal",2 +"NPL","NP","NP-JA","Janakpur","zone","Nepal",2 +"NPL","NP","NP-KA","Karnali","zone","Nepal",2 +"NPL","NP","NP-KO","Kosi","zone","Nepal",2 +"NPL","NP","NP-LU","Lumbini","zone","Nepal",2 +"NPL","NP","NP-MA","Mahakali","zone","Nepal",2 +"NPL","NP","NP-ME","Mechi","zone","Nepal",2 +"NPL","NP","NP-NA","Narayani","zone","Nepal",2 +"NPL","NP","NP-RA","Rapti","zone","Nepal",2 +"NPL","NP","NP-SA","Sagarmatha","zone","Nepal",2 +"NPL","NP","NP-SE","Seti","zone","Nepal",2 +"NRU","NR","NR-01","Aiwo","District","Nauru",2 +"NRU","NR","NR-02","Anabar","District","Nauru",2 +"NRU","NR","NR-03","Anetan","District","Nauru",2 +"NRU","NR","NR-04","Anibare","District","Nauru",2 +"NRU","NR","NR-05","Baiti","District","Nauru",2 +"NRU","NR","NR-06","Boe","District","Nauru",2 +"NRU","NR","NR-07","Buada","District","Nauru",2 +"NRU","NR","NR-08","Denigomodu","District","Nauru",2 +"NRU","NR","NR-09","Ewa","District","Nauru",2 +"NRU","NR","NR-10","Ijuw","District","Nauru",2 +"NRU","NR","NR-11","Meneng","District","Nauru",2 +"NRU","NR","NR-12","Nibok","District","Nauru",2 +"NRU","NR","NR-13","Uaboe","District","Nauru",2 +"NRU","NR","NR-14","Yaren","District","Nauru",2 +"NZL","NZ","NZ-AUK","Auckland","Regional council","New Zealand",2 +"NZL","NZ","NZ-BOP","Bay of Plenty","Regional council","New Zealand",2 +"NZL","NZ","NZ-CAN","Canterbury","Regional council","New Zealand",2 +"NZL","NZ","NZ-CIT","Chatham Islands Territory","Special island authority","New Zealand",2 +"NZL","NZ","NZ-GIS","Gisborne District","Unitary authority","New Zealand",2 +"NZL","NZ","NZ-HKB","Hawke's Bay","Regional council","New Zealand",2 +"NZL","NZ","NZ-MBH","Marlborough District","Unitary authority","New Zealand",2 +"NZL","NZ","NZ-MWT","Manawatu-Wanganui","Regional council","New Zealand",2 +"NZL","NZ","NZ-N","North Island","Island","New Zealand",2 +"NZL","NZ","NZ-NSN","Nelson City","Unitary authority","New Zealand",2 +"NZL","NZ","NZ-NTL","Northland","Regional council","New Zealand",2 +"NZL","NZ","NZ-OTA","Otago","Regional council","New Zealand",2 +"NZL","NZ","NZ-S","South Island","Island","New Zealand",2 +"NZL","NZ","NZ-STL","Southland","Regional council","New Zealand",2 +"NZL","NZ","NZ-TAS","Tasman District","Unitary authority","New Zealand",2 +"NZL","NZ","NZ-TKI","Taranaki","Regional council","New Zealand",2 +"NZL","NZ","NZ-WGN","Wellington","Regional council","New Zealand",2 +"NZL","NZ","NZ-WKO","Waikato","Regional council","New Zealand",2 +"NZL","NZ","NZ-WTC","West Coast","Regional council","New Zealand",2 +"OMN","OM","OM-BA","Al Bāţinah","Region","Oman",2 +"OMN","OM","OM-BU","Al Buraymī","Governorate","Oman",2 +"OMN","OM","OM-DA","Ad Dākhilīya","Region","Oman",2 +"OMN","OM","OM-MA","Masqaţ","Governorate","Oman",2 +"OMN","OM","OM-MU","Musandam","Governorate","Oman",2 +"OMN","OM","OM-SH","Ash Sharqīyah","Region","Oman",2 +"OMN","OM","OM-WU","Al Wusţá","Region","Oman",2 +"OMN","OM","OM-ZA","Az̧ Z̧āhirah","Region","Oman",2 +"OMN","OM","OM-ZU","Z̧ufār","Governorate","Oman",2 +"PAN","PA","PA-1","Bocas del Toro","Province","Panama",2 +"PAN","PA","PA-2","Coclé","Province","Panama",2 +"PAN","PA","PA-3","Colón","Province","Panama",2 +"PAN","PA","PA-4","Chiriquí","Province","Panama",2 +"PAN","PA","PA-5","Darién","Province","Panama",2 +"PAN","PA","PA-6","Herrera","Province","Panama",2 +"PAN","PA","PA-7","Los Santos","Province","Panama",2 +"PAN","PA","PA-8","Panamá","Province","Panama",2 +"PAN","PA","PA-9","Veraguas","Province","Panama",2 +"PAN","PA","PA-EM","Emberá","Indigenous region","Panama",2 +"PAN","PA","PA-KY","Kuna Yala","Indigenous region","Panama",2 +"PAN","PA","PA-NB","Ngöbe-Buglé","Indigenous region","Panama",2 +"PER","PE","PE-AMA","Amazonas","Region","Peru",2 +"PER","PE","PE-ANC","Ancash","Region","Peru",2 +"PER","PE","PE-APU","Apurímac","Region","Peru",2 +"PER","PE","PE-ARE","Arequipa","Region","Peru",2 +"PER","PE","PE-AYA","Ayacucho","Region","Peru",2 +"PER","PE","PE-CAJ","Cajamarca","Region","Peru",2 +"PER","PE","PE-CAL","El Callao","Constitutional province","Peru",2 +"PER","PE","PE-CUS","Cusco [Cuzco]","Region","Peru",2 +"PER","PE","PE-HUC","Huánuco","Region","Peru",2 +"PER","PE","PE-HUV","Huancavelica","Region","Peru",2 +"PER","PE","PE-ICA","Ica","Region","Peru",2 +"PER","PE","PE-JUN","Junín","Region","Peru",2 +"PER","PE","PE-LAL","La Libertad","Region","Peru",2 +"PER","PE","PE-LAM","Lambayeque","Region","Peru",2 +"PER","PE","PE-LIM","Lima","Region","Peru",2 +"PER","PE","PE-LMA","Municipalidad Metropolitana de Lima","Municipality","Peru",2 +"PER","PE","PE-LOR","Loreto","Region","Peru",2 +"PER","PE","PE-MDD","Madre de Dios","Region","Peru",2 +"PER","PE","PE-MOQ","Moquegua","Region","Peru",2 +"PER","PE","PE-PAS","Pasco","Region","Peru",2 +"PER","PE","PE-PIU","Piura","Region","Peru",2 +"PER","PE","PE-PUN","Puno","Region","Peru",2 +"PER","PE","PE-SAM","San Martín","Region","Peru",2 +"PER","PE","PE-TAC","Tacna","Region","Peru",2 +"PER","PE","PE-TUM","Tumbes","Region","Peru",2 +"PER","PE","PE-UCA","Ucayali","Region","Peru",2 +"PNG","PG","PG-CPK","Chimbu","Province","Papua New Guinea",2 +"PNG","PG","PG-CPM","Central","Province","Papua New Guinea",2 +"PNG","PG","PG-EBR","East New Britain","Province","Papua New Guinea",2 +"PNG","PG","PG-EHG","Eastern Highlands","Province","Papua New Guinea",2 +"PNG","PG","PG-EPW","Enga","Province","Papua New Guinea",2 +"PNG","PG","PG-ESW","East Sepik","Province","Papua New Guinea",2 +"PNG","PG","PG-GPK","Gulf","Province","Papua New Guinea",2 +"PNG","PG","PG-MBA","Milne Bay","Province","Papua New Guinea",2 +"PNG","PG","PG-MPL","Morobe","Province","Papua New Guinea",2 +"PNG","PG","PG-MPM","Madang","Province","Papua New Guinea",2 +"PNG","PG","PG-MRL","Manus","Province","Papua New Guinea",2 +"PNG","PG","PG-NCD","National Capital District (Port Moresby)","District","Papua New Guinea",2 +"PNG","PG","PG-NIK","New Ireland","Province","Papua New Guinea",2 +"PNG","PG","PG-NPP","Northern","Province","Papua New Guinea",2 +"PNG","PG","PG-NSB","Bougainville","Autonomous region","Papua New Guinea",2 +"PNG","PG","PG-SAN","Sandaun","Province","Papua New Guinea",2 +"PNG","PG","PG-SHM","Southern Highlands","Province","Papua New Guinea",2 +"PNG","PG","PG-WBK","West New Britain","Province","Papua New Guinea",2 +"PNG","PG","PG-WHM","Western Highlands","Province","Papua New Guinea",2 +"PNG","PG","PG-WPD","Western","Province","Papua New Guinea",2 +"PHL","PH","PH-00","National Capital Region","Region","Philippines",2 +"PHL","PH","PH-01","Ilocos (Region I)","Region","Philippines",2 +"PHL","PH","PH-02","Cagayan Valley (Region II)","Region","Philippines",2 +"PHL","PH","PH-03","Central Luzon (Region III)","Region","Philippines",2 +"PHL","PH","PH-05","Bicol (Region V)","Region","Philippines",2 +"PHL","PH","PH-06","Western Visayas (Region VI)","Region","Philippines",2 +"PHL","PH","PH-07","Central Visayas (Region VII)","Region","Philippines",2 +"PHL","PH","PH-08","Eastern Visayas (Region VIII)","Region","Philippines",2 +"PHL","PH","PH-09","Zamboanga Peninsula (Region IX)","Region","Philippines",2 +"PHL","PH","PH-10","Northern Mindanao (Region X)","Region","Philippines",2 +"PHL","PH","PH-11","Davao (Region XI)","Region","Philippines",2 +"PHL","PH","PH-12","Soccsksargen (Region XII)","Region","Philippines",2 +"PHL","PH","PH-13","Caraga (Region XIII)","Region","Philippines",2 +"PHL","PH","PH-14","Autonomous Region in Muslim Mindanao (ARMM)","Region","Philippines",2 +"PHL","PH","PH-15","Cordillera Administrative Region (CAR)","Region","Philippines",2 +"PHL","PH","PH-40","CALABARZON (Region IV-A)","Region","Philippines",2 +"PHL","PH","PH-41","MIMAROPA (Region IV-B)","Region","Philippines",2 +"PHL","PH","PH-ABR","Abra","Province","Philippines",2 +"PHL","PH","PH-AGN","Agusan del Norte","Province","Philippines",2 +"PHL","PH","PH-AGS","Agusan del Sur","Province","Philippines",2 +"PHL","PH","PH-AKL","Aklan","Province","Philippines",2 +"PHL","PH","PH-ALB","Albay","Province","Philippines",2 +"PHL","PH","PH-ANT","Antique","Province","Philippines",2 +"PHL","PH","PH-APA","Apayao","Province","Philippines",2 +"PHL","PH","PH-AUR","Aurora","Province","Philippines",2 +"PHL","PH","PH-BAN","Batasn","Province","Philippines",2 +"PHL","PH","PH-BAS","Basilan","Province","Philippines",2 +"PHL","PH","PH-BEN","Benguet","Province","Philippines",2 +"PHL","PH","PH-BIL","Biliran","Province","Philippines",2 +"PHL","PH","PH-BOH","Bohol","Province","Philippines",2 +"PHL","PH","PH-BTG","Batangas","Province","Philippines",2 +"PHL","PH","PH-BTN","Batanes","Province","Philippines",2 +"PHL","PH","PH-BUK","Bukidnon","Province","Philippines",2 +"PHL","PH","PH-BUL","Bulacan","Province","Philippines",2 +"PHL","PH","PH-CAG","Cagayan","Province","Philippines",2 +"PHL","PH","PH-CAM","Camiguin","Province","Philippines",2 +"PHL","PH","PH-CAN","Camarines Norte","Province","Philippines",2 +"PHL","PH","PH-CAP","Capiz","Province","Philippines",2 +"PHL","PH","PH-CAS","Camarines Sur","Province","Philippines",2 +"PHL","PH","PH-CAT","Catanduanes","Province","Philippines",2 +"PHL","PH","PH-CAV","Cavite","Province","Philippines",2 +"PHL","PH","PH-CEB","Cebu","Province","Philippines",2 +"PHL","PH","PH-COM","Compostela Valley","Province","Philippines",2 +"PHL","PH","PH-DAO","Davao Oriental","Province","Philippines",2 +"PHL","PH","PH-DAS","Davao del Sur","Province","Philippines",2 +"PHL","PH","PH-DAV","Davao del Norte","Province","Philippines",2 +"PHL","PH","PH-DIN","Dinagat Islands","Province","Philippines",2 +"PHL","PH","PH-EAS","Eastern Samar","Province","Philippines",2 +"PHL","PH","PH-GUI","Guimaras","Province","Philippines",2 +"PHL","PH","PH-IFU","Ifugao","Province","Philippines",2 +"PHL","PH","PH-ILI","Iloilo","Province","Philippines",2 +"PHL","PH","PH-ILN","Ilocos Norte","Province","Philippines",2 +"PHL","PH","PH-ILS","Ilocos Sur","Province","Philippines",2 +"PHL","PH","PH-ISA","Isabela","Province","Philippines",2 +"PHL","PH","PH-KAL","Kalinga-Apayso","Province","Philippines",2 +"PHL","PH","PH-LAG","Laguna","Province","Philippines",2 +"PHL","PH","PH-LAN","Lanao del Norte","Province","Philippines",2 +"PHL","PH","PH-LAS","Lanao del Sur","Province","Philippines",2 +"PHL","PH","PH-LEY","Leyte","Province","Philippines",2 +"PHL","PH","PH-LUN","La Union","Province","Philippines",2 +"PHL","PH","PH-MAD","Marinduque","Province","Philippines",2 +"PHL","PH","PH-MAG","Maguindanao","Province","Philippines",2 +"PHL","PH","PH-MAS","Masbate","Province","Philippines",2 +"PHL","PH","PH-MDC","Mindoro Occidental","Province","Philippines",2 +"PHL","PH","PH-MDR","Mindoro Oriental","Province","Philippines",2 +"PHL","PH","PH-MOU","Mountain Province","Province","Philippines",2 +"PHL","PH","PH-MSC","Misamis Occidental","Province","Philippines",2 +"PHL","PH","PH-MSR","Misamis Oriental","Province","Philippines",2 +"PHL","PH","PH-NCO","North Cotabato","Province","Philippines",2 +"PHL","PH","PH-NEC","Negros Occidental","Province","Philippines",2 +"PHL","PH","PH-NER","Negros Oriental","Province","Philippines",2 +"PHL","PH","PH-NSA","Northern Samar","Province","Philippines",2 +"PHL","PH","PH-NUE","Nueva Ecija","Province","Philippines",2 +"PHL","PH","PH-NUV","Nueva Vizcaya","Province","Philippines",2 +"PHL","PH","PH-PAM","Pampanga","Province","Philippines",2 +"PHL","PH","PH-PAN","Pangasinan","Province","Philippines",2 +"PHL","PH","PH-PLW","Palawan","Province","Philippines",2 +"PHL","PH","PH-QUE","Quezon","Province","Philippines",2 +"PHL","PH","PH-QUI","Quirino","Province","Philippines",2 +"PHL","PH","PH-RIZ","Rizal","Province","Philippines",2 +"PHL","PH","PH-ROM","Romblon","Province","Philippines",2 +"PHL","PH","PH-SAR","Sarangani","Province","Philippines",2 +"PHL","PH","PH-SCO","South Cotabato","Province","Philippines",2 +"PHL","PH","PH-SIG","Siquijor","Province","Philippines",2 +"PHL","PH","PH-SLE","Southern Leyte","Province","Philippines",2 +"PHL","PH","PH-SLU","Sulu","Province","Philippines",2 +"PHL","PH","PH-SOR","Sorsogon","Province","Philippines",2 +"PHL","PH","PH-SUK","Sultan Kudarat","Province","Philippines",2 +"PHL","PH","PH-SUN","Surigao del Norte","Province","Philippines",2 +"PHL","PH","PH-SUR","Surigao del Sur","Province","Philippines",2 +"PHL","PH","PH-TAR","Tarlac","Province","Philippines",2 +"PHL","PH","PH-TAW","Tawi-Tawi","Province","Philippines",2 +"PHL","PH","PH-WSA","Western Samar","Province","Philippines",2 +"PHL","PH","PH-ZAN","Zamboanga del Norte","Province","Philippines",2 +"PHL","PH","PH-ZAS","Zamboanga del Sur","Province","Philippines",2 +"PHL","PH","PH-ZMB","Zambales","Province","Philippines",2 +"PHL","PH","PH-ZSI","Zamboanga Sibugay","Province","Philippines",2 +"PAK","PK","PK-BA","Balochistan","Province","Pakistan",2 +"PAK","PK","PK-GB","Gilgit-Baltistan","Area","Pakistan",2 +"PAK","PK","PK-IS","Islamabad","Capital territory","Pakistan",2 +"PAK","PK","PK-JK","Azad Kashmir","Area","Pakistan",2 +"PAK","PK","PK-KP","Khyber Pakhtunkhwa","Province","Pakistan",2 +"PAK","PK","PK-PB","Punjab","Province","Pakistan",2 +"PAK","PK","PK-SD","Sindh","Province","Pakistan",2 +"PAK","PK","PK-TA","Federally Administered Tribal Areas","Territory","Pakistan",2 +"POL","PL","PL-DS","Dolnośląskie","Province","Poland",2 +"POL","PL","PL-KP","Kujawsko-pomorskie","Province","Poland",2 +"POL","PL","PL-LB","Lubuskie","Province","Poland",2 +"POL","PL","PL-LD","Łódzkie","Province","Poland",2 +"POL","PL","PL-LU","Lubelskie","Province","Poland",2 +"POL","PL","PL-MA","Małopolskie","Province","Poland",2 +"POL","PL","PL-MZ","Mazowieckie","Province","Poland",2 +"POL","PL","PL-OP","Opolskie","Province","Poland",2 +"POL","PL","PL-PD","Podlaskie","Province","Poland",2 +"POL","PL","PL-PK","Podkarpackie","Province","Poland",2 +"POL","PL","PL-PM","Pomorskie","Province","Poland",2 +"POL","PL","PL-SK","Świętokrzyskie","Province","Poland",2 +"POL","PL","PL-SL","Śląskie","Province","Poland",2 +"POL","PL","PL-WN","Warmińsko-mazurskie","Province","Poland",2 +"POL","PL","PL-WP","Wielkopolskie","Province","Poland",2 +"POL","PL","PL-ZP","Zachodniopomorskie","Province","Poland",2 +"PSE","PS","PS-BTH","Bethlehem","Governorate","Palestine, State of",2 +"PSE","PS","PS-DEB","Deir El Balah","Governorate","Palestine, State of",2 +"PSE","PS","PS-GZA","Gaza","Governorate","Palestine, State of",2 +"PSE","PS","PS-HBN","Hebron","Governorate","Palestine, State of",2 +"PSE","PS","PS-JEM","Jerusalem","Governorate","Palestine, State of",2 +"PSE","PS","PS-JEN","Jenin","Governorate","Palestine, State of",2 +"PSE","PS","PS-JRH","Jericho - Al Aghwar","Governorate","Palestine, State of",2 +"PSE","PS","PS-KYS","Khan Yunis","Governorate","Palestine, State of",2 +"PSE","PS","PS-NBS","Nablus","Governorate","Palestine, State of",2 +"PSE","PS","PS-NGZ","North Gaza","Governorate","Palestine, State of",2 +"PSE","PS","PS-QQA","Qalqilya","Governorate","Palestine, State of",2 +"PSE","PS","PS-RBH","Ramallah","Governorate","Palestine, State of",2 +"PSE","PS","PS-RFH","Rafah","Governorate","Palestine, State of",2 +"PSE","PS","PS-SLT","Salfit","Governorate","Palestine, State of",2 +"PSE","PS","PS-TBS","Tubas","Governorate","Palestine, State of",2 +"PSE","PS","PS-TKM","Tulkarm","Governorate","Palestine, State of",2 +"PRT","PT","PT-01","Aveiro","District","Portugal",2 +"PRT","PT","PT-02","Beja","District","Portugal",2 +"PRT","PT","PT-03","Braga","District","Portugal",2 +"PRT","PT","PT-04","Bragança","District","Portugal",2 +"PRT","PT","PT-05","Castelo Branco","District","Portugal",2 +"PRT","PT","PT-06","Coimbra","District","Portugal",2 +"PRT","PT","PT-07","Évora","District","Portugal",2 +"PRT","PT","PT-08","Faro","District","Portugal",2 +"PRT","PT","PT-09","Guarda","District","Portugal",2 +"PRT","PT","PT-10","Leiria","District","Portugal",2 +"PRT","PT","PT-11","Lisboa","District","Portugal",2 +"PRT","PT","PT-12","Portalegre","District","Portugal",2 +"PRT","PT","PT-13","Porto","District","Portugal",2 +"PRT","PT","PT-14","Santarém","District","Portugal",2 +"PRT","PT","PT-15","Setúbal","District","Portugal",2 +"PRT","PT","PT-16","Viana do Castelo","District","Portugal",2 +"PRT","PT","PT-17","Vila Real","District","Portugal",2 +"PRT","PT","PT-18","Viseu","District","Portugal",2 +"PRT","PT","PT-20","Região Autónoma dos Açores","Autonomous region","Portugal",2 +"PRT","PT","PT-30","Região Autónoma da Madeira","Autonomous region","Portugal",2 +"PLW","PW","PW-002","Aimeliik","State","Palau",2 +"PLW","PW","PW-004","Airai","State","Palau",2 +"PLW","PW","PW-010","Angaur","State","Palau",2 +"PLW","PW","PW-050","Hatobohei","State","Palau",2 +"PLW","PW","PW-100","Kayangel","State","Palau",2 +"PLW","PW","PW-150","Koror","State","Palau",2 +"PLW","PW","PW-212","Melekeok","State","Palau",2 +"PLW","PW","PW-214","Ngaraard","State","Palau",2 +"PLW","PW","PW-218","Ngarchelong","State","Palau",2 +"PLW","PW","PW-222","Ngardmau","State","Palau",2 +"PLW","PW","PW-224","Ngatpang","State","Palau",2 +"PLW","PW","PW-226","Ngchesar","State","Palau",2 +"PLW","PW","PW-227","Ngeremlengui","State","Palau",2 +"PLW","PW","PW-228","Ngiwal","State","Palau",2 +"PLW","PW","PW-350","Peleliu","State","Palau",2 +"PLW","PW","PW-370","Sonsorol","State","Palau",2 +"PRY","PY","PY-1","Concepción","Department","Paraguay",2 +"PRY","PY","PY-10","Alto Paraná","Department","Paraguay",2 +"PRY","PY","PY-11","Central","Department","Paraguay",2 +"PRY","PY","PY-12","Ñeembucú","Department","Paraguay",2 +"PRY","PY","PY-13","Amambay","Department","Paraguay",2 +"PRY","PY","PY-14","Canindeyú","Department","Paraguay",2 +"PRY","PY","PY-15","Presidente Hayes","Department","Paraguay",2 +"PRY","PY","PY-16","Alto Paraguay","Department","Paraguay",2 +"PRY","PY","PY-19","Boquerón","Department","Paraguay",2 +"PRY","PY","PY-2","San Pedro","Department","Paraguay",2 +"PRY","PY","PY-3","Cordillera","Department","Paraguay",2 +"PRY","PY","PY-4","Guairá","Department","Paraguay",2 +"PRY","PY","PY-5","Caaguazú","Department","Paraguay",2 +"PRY","PY","PY-6","Caazapá","Department","Paraguay",2 +"PRY","PY","PY-7","Itapúa","Department","Paraguay",2 +"PRY","PY","PY-8","Misiones","Department","Paraguay",2 +"PRY","PY","PY-9","Paraguarí","Department","Paraguay",2 +"PRY","PY","PY-ASU","Asunción","Capital district","Paraguay",2 +"QAT","QA","QA-DA","Ad Dawhah","Municipality","Qatar",2 +"QAT","QA","QA-KH","Al Khawr wa adh Dhakhīrah","Municipality","Qatar",2 +"QAT","QA","QA-MS","Ash Shamal","Municipality","Qatar",2 +"QAT","QA","QA-RA","Ar Rayyan","Municipality","Qatar",2 +"QAT","QA","QA-US","Umm Salal","Municipality","Qatar",2 +"QAT","QA","QA-WA","Al Wakrah","Municipality","Qatar",2 +"QAT","QA","QA-ZA","Az̧ Z̧a‘āyin","Municipality","Qatar",2 +"ROU","RO","RO-AB","Alba","Department","Romania",2 +"ROU","RO","RO-AG","Argeș","Department","Romania",2 +"ROU","RO","RO-AR","Arad","Department","Romania",2 +"ROU","RO","RO-B","București","Municipality","Romania",2 +"ROU","RO","RO-BC","Bacău","Department","Romania",2 +"ROU","RO","RO-BH","Bihor","Department","Romania",2 +"ROU","RO","RO-BN","Bistrița-Năsăud","Department","Romania",2 +"ROU","RO","RO-BR","Brăila","Department","Romania",2 +"ROU","RO","RO-BT","Botoșani","Department","Romania",2 +"ROU","RO","RO-BV","Brașov","Department","Romania",2 +"ROU","RO","RO-BZ","Buzău","Department","Romania",2 +"ROU","RO","RO-CJ","Cluj","Department","Romania",2 +"ROU","RO","RO-CL","Călărași","Department","Romania",2 +"ROU","RO","RO-CS","Caraș-Severin","Department","Romania",2 +"ROU","RO","RO-CT","Constanța","Department","Romania",2 +"ROU","RO","RO-CV","Covasna","Department","Romania",2 +"ROU","RO","RO-DB","Dâmbovița","Department","Romania",2 +"ROU","RO","RO-DJ","Dolj","Department","Romania",2 +"ROU","RO","RO-GJ","Gorj","Department","Romania",2 +"ROU","RO","RO-GL","Galați","Department","Romania",2 +"ROU","RO","RO-GR","Giurgiu","Department","Romania",2 +"ROU","RO","RO-HD","Hunedoara","Department","Romania",2 +"ROU","RO","RO-HR","Harghita","Department","Romania",2 +"ROU","RO","RO-IF","Ilfov","Department","Romania",2 +"ROU","RO","RO-IL","Ialomița","Department","Romania",2 +"ROU","RO","RO-IS","Iași","Department","Romania",2 +"ROU","RO","RO-MH","Mehedinți","Department","Romania",2 +"ROU","RO","RO-MM","Maramureș","Department","Romania",2 +"ROU","RO","RO-MS","Mureș","Department","Romania",2 +"ROU","RO","RO-NT","Neamț","Department","Romania",2 +"ROU","RO","RO-OT","Olt","Department","Romania",2 +"ROU","RO","RO-PH","Prahova","Department","Romania",2 +"ROU","RO","RO-SB","Sibiu","Department","Romania",2 +"ROU","RO","RO-SJ","Sălaj","Department","Romania",2 +"ROU","RO","RO-SM","Satu Mare","Department","Romania",2 +"ROU","RO","RO-SV","Suceava","Department","Romania",2 +"ROU","RO","RO-TL","Tulcea","Department","Romania",2 +"ROU","RO","RO-TM","Timiș","Department","Romania",2 +"ROU","RO","RO-TR","Teleorman","Department","Romania",2 +"ROU","RO","RO-VL","Vâlcea","Department","Romania",2 +"ROU","RO","RO-VN","Vrancea","Department","Romania",2 +"ROU","RO","RO-VS","Vaslui","Department","Romania",2 +"SRB","RS","RS-00","Beograd","City","Serbia",2 +"SRB","RS","RS-01","Severnobački okrug","District","Serbia",2 +"SRB","RS","RS-02","Srednjebanatski okrug","District","Serbia",2 +"SRB","RS","RS-03","Severnobanatski okrug","District","Serbia",2 +"SRB","RS","RS-04","Južnobanatski okrug","District","Serbia",2 +"SRB","RS","RS-05","Zapadnobački okrug","District","Serbia",2 +"SRB","RS","RS-06","Južnobački okrug","District","Serbia",2 +"SRB","RS","RS-07","Sremski okrug","District","Serbia",2 +"SRB","RS","RS-08","Mačvanski okrug","District","Serbia",2 +"SRB","RS","RS-09","Kolubarski okrug","District","Serbia",2 +"SRB","RS","RS-10","Podunavski okrug","District","Serbia",2 +"SRB","RS","RS-11","Braničevski okrug","District","Serbia",2 +"SRB","RS","RS-12","Šumadijski okrug","District","Serbia",2 +"SRB","RS","RS-13","Pomoravski okrug","District","Serbia",2 +"SRB","RS","RS-14","Borski okrug","District","Serbia",2 +"SRB","RS","RS-15","Zaječarski okrug","District","Serbia",2 +"SRB","RS","RS-16","Zlatiborski okrug","District","Serbia",2 +"SRB","RS","RS-17","Moravički okrug","District","Serbia",2 +"SRB","RS","RS-18","Raški okrug","District","Serbia",2 +"SRB","RS","RS-19","Rasinski okrug","District","Serbia",2 +"SRB","RS","RS-20","Nišavski okrug","District","Serbia",2 +"SRB","RS","RS-21","Toplički okrug","District","Serbia",2 +"SRB","RS","RS-22","Pirotski okrug","District","Serbia",2 +"SRB","RS","RS-23","Jablanički okrug","District","Serbia",2 +"SRB","RS","RS-24","Pčinjski okrug","District","Serbia",2 +"SRB","RS","RS-25","Kosovski okrug","District","Serbia",2 +"SRB","RS","RS-26","Pećki okrug","District","Serbia",2 +"SRB","RS","RS-27","Prizrenski okrug","District","Serbia",2 +"SRB","RS","RS-28","Kosovsko-Mitrovački okrug","District","Serbia",2 +"SRB","RS","RS-29","Kosovsko-Pomoravski okrug","District","Serbia",2 +"SRB","RS","RS-KM","Kosovo-Metohija","Autonomous province","Serbia",2 +"SRB","RS","RS-VO","Vojvodina","Autonomous province","Serbia",2 +"RUS","RU","RU-AD","Adygeya, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-AL","Altay, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-ALT","Altayskiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-AMU","Amurskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-ARK","Arkhangel'skaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-AST","Astrakhanskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-BA","Bashkortostan, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-BEL","Belgorodskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-BRY","Bryanskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-BU","Buryatiya, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-CE","Chechenskaya Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-CHE","Chelyabinskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-CHU","Chukotskiy avtonomnyy okrug","Autonomous District","Russian Federation",2 +"RUS","RU","RU-CU","Chuvashskaya Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-DA","Dagestan, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-IN","Respublika Ingushetiya","Republic","Russian Federation",2 +"RUS","RU","RU-IRK","Irkutiskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-IVA","Ivanovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KAM","Kamchatskiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-KB","Kabardino-Balkarskaya Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-KC","Karachayevo-Cherkesskaya Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-KDA","Krasnodarskiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-KEM","Kemerovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KGD","Kaliningradskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KGN","Kurganskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KHA","Khabarovskiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-KHM","Khanty-Mansiysky avtonomnyy okrug-Yugra","Autonomous District","Russian Federation",2 +"RUS","RU","RU-KIR","Kirovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KK","Khakasiya, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-KL","Kalmykiya, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-KLU","Kaluzhskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KO","Komi, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-KOS","Kostromskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KR","Kareliya, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-KRS","Kurskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-KYA","Krasnoyarskiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-LEN","Leningradskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-LIP","Lipetskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-MAG","Magadanskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-ME","Mariy El, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-MO","Mordoviya, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-MOS","Moskovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-MOW","Moskva","Autonomous City","Russian Federation",2 +"RUS","RU","RU-MUR","Murmanskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-NEN","Nenetskiy avtonomnyy okrug","Autonomous District","Russian Federation",2 +"RUS","RU","RU-NGR","Novgorodskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-NIZ","Nizhegorodskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-NVS","Novosibirskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-OMS","Omskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-ORE","Orenburgskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-ORL","Orlovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-PER","Permskiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-PNZ","Penzenskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-PRI","Primorskiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-PSK","Pskovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-ROS","Rostovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-RYA","Ryazanskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-SA","Sakha, Respublika [Yakutiya]","Republic","Russian Federation",2 +"RUS","RU","RU-SAK","Sakhalinskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-SAM","Samaraskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-SAR","Saratovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-SE","Severnaya Osetiya-Alaniya, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-SMO","Smolenskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-SPE","Sankt-Peterburg","Autonomous City","Russian Federation",2 +"RUS","RU","RU-STA","Stavropol'skiy kray","Administrative Territory","Russian Federation",2 +"RUS","RU","RU-SVE","Sverdlovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-TA","Tatarstan, Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-TAM","Tambovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-TOM","Tomskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-TUL","Tul'skaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-TVE","Tverskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-TY","Tyva, Respublika [Tuva]","Republic","Russian Federation",2 +"RUS","RU","RU-TYU","Tyumenskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-UD","Udmurtskaya Respublika","Republic","Russian Federation",2 +"RUS","RU","RU-ULY","Ul'yanovskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-VGG","Volgogradskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-VLA","Vladimirskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-VLG","Vologodskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-VOR","Voronezhskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-YAN","Yamalo-Nenetskiy avtonomnyy okrug","Autonomous District","Russian Federation",2 +"RUS","RU","RU-YAR","Yaroslavskaya oblast'","Administrative Region","Russian Federation",2 +"RUS","RU","RU-YEV","Yevreyskaya avtonomnaya oblast'","Autonomous Region","Russian Federation",2 +"RUS","RU","RU-ZAB","Zabajkal'skij kraj","Administrative Territory","Russian Federation",2 +"RWA","RW","RW-01","Ville de Kigali","Town council","Rwanda",2 +"RWA","RW","RW-02","Est","Province","Rwanda",2 +"RWA","RW","RW-03","Nord","Province","Rwanda",2 +"RWA","RW","RW-04","Ouest","Province","Rwanda",2 +"RWA","RW","RW-05","Sud","Province","Rwanda",2 +"SAU","SA","SA-01","Ar Riyāḍ","Province","Saudi Arabia",2 +"SAU","SA","SA-02","Makkah","Province","Saudi Arabia",2 +"SAU","SA","SA-03","Al Madīnah","Province","Saudi Arabia",2 +"SAU","SA","SA-04","Ash Sharqīyah","Province","Saudi Arabia",2 +"SAU","SA","SA-05","Al Qaşīm","Province","Saudi Arabia",2 +"SAU","SA","SA-06","Ḥā'il","Province","Saudi Arabia",2 +"SAU","SA","SA-07","Tabūk","Province","Saudi Arabia",2 +"SAU","SA","SA-08","Al Ḥudūd ash Shamāliyah","Province","Saudi Arabia",2 +"SAU","SA","SA-09","Jīzan","Province","Saudi Arabia",2 +"SAU","SA","SA-10","Najrān","Province","Saudi Arabia",2 +"SAU","SA","SA-11","Al Bāhah","Province","Saudi Arabia",2 +"SAU","SA","SA-12","Al Jawf","Province","Saudi Arabia",2 +"SAU","SA","SA-14","`Asīr","Province","Saudi Arabia",2 +"SLB","SB","SB-CE","Central","Province","Solomon Islands",2 +"SLB","SB","SB-CH","Choiseul","Province","Solomon Islands",2 +"SLB","SB","SB-CT","Capital Territory (Honiara)","Capital territory","Solomon Islands",2 +"SLB","SB","SB-GU","Guadalcanal","Province","Solomon Islands",2 +"SLB","SB","SB-IS","Isabel","Province","Solomon Islands",2 +"SLB","SB","SB-MK","Makira","Province","Solomon Islands",2 +"SLB","SB","SB-ML","Malaita","Province","Solomon Islands",2 +"SLB","SB","SB-RB","Rennell and Bellona","Province","Solomon Islands",2 +"SLB","SB","SB-TE","Temotu","Province","Solomon Islands",2 +"SLB","SB","SB-WE","Western","Province","Solomon Islands",2 +"SYC","SC","SC-01","Anse aux Pins","District","Seychelles",2 +"SYC","SC","SC-02","Anse Boileau","District","Seychelles",2 +"SYC","SC","SC-03","Anse Etoile","District","Seychelles",2 +"SYC","SC","SC-04","Anse Louis","District","Seychelles",2 +"SYC","SC","SC-05","Anse Royale","District","Seychelles",2 +"SYC","SC","SC-06","Baie Lazare","District","Seychelles",2 +"SYC","SC","SC-07","Baie Sainte Anne","District","Seychelles",2 +"SYC","SC","SC-08","Beau Vallon","District","Seychelles",2 +"SYC","SC","SC-09","Bel Air","District","Seychelles",2 +"SYC","SC","SC-10","Bel Ombre","District","Seychelles",2 +"SYC","SC","SC-11","Cascade","District","Seychelles",2 +"SYC","SC","SC-12","Glacis","District","Seychelles",2 +"SYC","SC","SC-13","Grand Anse Mahe","District","Seychelles",2 +"SYC","SC","SC-14","Grand Anse Praslin","District","Seychelles",2 +"SYC","SC","SC-15","La Digue","District","Seychelles",2 +"SYC","SC","SC-16","English River","District","Seychelles",2 +"SYC","SC","SC-17","Mont Buxton","District","Seychelles",2 +"SYC","SC","SC-18","Mont Fleuri","District","Seychelles",2 +"SYC","SC","SC-19","Plaisance","District","Seychelles",2 +"SYC","SC","SC-20","Pointe Larue","District","Seychelles",2 +"SYC","SC","SC-21","Port Glaud","District","Seychelles",2 +"SYC","SC","SC-22","Saint Louis","District","Seychelles",2 +"SYC","SC","SC-23","Takamaka","District","Seychelles",2 +"SYC","SC","SC-24","Les Mamelles","District","Seychelles",2 +"SYC","SC","SC-25","Roche Caiman","District","Seychelles",2 +"SDN","SD","SD-DC","Zalingei","state","Sudan",2 +"SDN","SD","SD-DE","Sharq Dārfūr","state","Sudan",2 +"SDN","SD","SD-DN","Shamāl Dārfūr","state","Sudan",2 +"SDN","SD","SD-DS","Janūb Dārfūr","state","Sudan",2 +"SDN","SD","SD-DW","Gharb Dārfūr","state","Sudan",2 +"SDN","SD","SD-GD","Al Qaḑārif","state","Sudan",2 +"SDN","SD","SD-GZ","Al Jazīrah","state","Sudan",2 +"SDN","SD","SD-KA","Kassalā","state","Sudan",2 +"SDN","SD","SD-KH","Al Kharţūm","state","Sudan",2 +"SDN","SD","SD-KN","Shamāl Kurdufān","state","Sudan",2 +"SDN","SD","SD-KS","Janūb Kurdufān","state","Sudan",2 +"SDN","SD","SD-NB","An Nīl al Azraq","state","Sudan",2 +"SDN","SD","SD-NO","Ash Shamālīyah","state","Sudan",2 +"SDN","SD","SD-NR","An Nīl","state","Sudan",2 +"SDN","SD","SD-NW","An Nīl al Abyaḑ","state","Sudan",2 +"SDN","SD","SD-RS","Al Baḩr al Aḩmar","state","Sudan",2 +"SDN","SD","SD-SI","Sinnār","state","Sudan",2 +"SWE","SE","SE-AB","Stockholms län","County","Sweden",2 +"SWE","SE","SE-AC","Västerbottens län","County","Sweden",2 +"SWE","SE","SE-BD","Norrbottens län","County","Sweden",2 +"SWE","SE","SE-C","Uppsala län","County","Sweden",2 +"SWE","SE","SE-D","Södermanlands län","County","Sweden",2 +"SWE","SE","SE-E","Östergötlands län","County","Sweden",2 +"SWE","SE","SE-F","Jönköpings län","County","Sweden",2 +"SWE","SE","SE-G","Kronobergs län","County","Sweden",2 +"SWE","SE","SE-H","Kalmar län","County","Sweden",2 +"SWE","SE","SE-I","Gotlands län","County","Sweden",2 +"SWE","SE","SE-K","Blekinge län","County","Sweden",2 +"SWE","SE","SE-M","Skåne län","County","Sweden",2 +"SWE","SE","SE-N","Hallands län","County","Sweden",2 +"SWE","SE","SE-O","Västra Götalands län","County","Sweden",2 +"SWE","SE","SE-S","Värmlands län","County","Sweden",2 +"SWE","SE","SE-T","Örebro län","County","Sweden",2 +"SWE","SE","SE-U","Västmanlands län","County","Sweden",2 +"SWE","SE","SE-W","Dalarnas län","County","Sweden",2 +"SWE","SE","SE-X","Gävleborgs län","County","Sweden",2 +"SWE","SE","SE-Y","Västernorrlands län","County","Sweden",2 +"SWE","SE","SE-Z","Jämtlands län","County","Sweden",2 +"SGP","SG","SG-01","Central Singapore","district","Singapore",2 +"SGP","SG","SG-02","North East","district","Singapore",2 +"SGP","SG","SG-03","North West","district","Singapore",2 +"SGP","SG","SG-04","South East","district","Singapore",2 +"SGP","SG","SG-05","South West","district","Singapore",2 +"SHN","SH","SH-AC","Ascension","Geographical Entity","Saint Helena, Ascension and Tristan da Cunha",2 +"SHN","SH","SH-HL","Saint Helena","Geographical Entity","Saint Helena, Ascension and Tristan da Cunha",2 +"SHN","SH","SH-TA","Tristan da Cunha","Geographical Entity","Saint Helena, Ascension and Tristan da Cunha",2 +"SVN","SI","SI-001","Ajdovščina","Municipality","Slovenia",2 +"SVN","SI","SI-002","Beltinci","Municipality","Slovenia",2 +"SVN","SI","SI-003","Bled","Municipality","Slovenia",2 +"SVN","SI","SI-004","Bohinj","Municipality","Slovenia",2 +"SVN","SI","SI-005","Borovnica","Municipality","Slovenia",2 +"SVN","SI","SI-006","Bovec","Municipality","Slovenia",2 +"SVN","SI","SI-007","Brda","Municipality","Slovenia",2 +"SVN","SI","SI-008","Brezovica","Municipality","Slovenia",2 +"SVN","SI","SI-009","Brežice","Municipality","Slovenia",2 +"SVN","SI","SI-010","Tišina","Municipality","Slovenia",2 +"SVN","SI","SI-011","Celje","Municipality","Slovenia",2 +"SVN","SI","SI-012","Cerklje na Gorenjskem","Municipality","Slovenia",2 +"SVN","SI","SI-013","Cerknica","Municipality","Slovenia",2 +"SVN","SI","SI-014","Cerkno","Municipality","Slovenia",2 +"SVN","SI","SI-015","Črenšovci","Municipality","Slovenia",2 +"SVN","SI","SI-016","Črna na Koroškem","Municipality","Slovenia",2 +"SVN","SI","SI-017","Črnomelj","Municipality","Slovenia",2 +"SVN","SI","SI-018","Destrnik","Municipality","Slovenia",2 +"SVN","SI","SI-019","Divača","Municipality","Slovenia",2 +"SVN","SI","SI-020","Dobrepolje","Municipality","Slovenia",2 +"SVN","SI","SI-021","Dobrova-Polhov Gradec","Municipality","Slovenia",2 +"SVN","SI","SI-022","Dol pri Ljubljani","Municipality","Slovenia",2 +"SVN","SI","SI-023","Domžale","Municipality","Slovenia",2 +"SVN","SI","SI-024","Dornava","Municipality","Slovenia",2 +"SVN","SI","SI-025","Dravograd","Municipality","Slovenia",2 +"SVN","SI","SI-026","Duplek","Municipality","Slovenia",2 +"SVN","SI","SI-027","Gorenja vas-Poljane","Municipality","Slovenia",2 +"SVN","SI","SI-028","Gorišnica","Municipality","Slovenia",2 +"SVN","SI","SI-029","Gornja Radgona","Municipality","Slovenia",2 +"SVN","SI","SI-030","Gornji Grad","Municipality","Slovenia",2 +"SVN","SI","SI-031","Gornji Petrovci","Municipality","Slovenia",2 +"SVN","SI","SI-032","Grosuplje","Municipality","Slovenia",2 +"SVN","SI","SI-033","Šalovci","Municipality","Slovenia",2 +"SVN","SI","SI-034","Hrastnik","Municipality","Slovenia",2 +"SVN","SI","SI-035","Hrpelje-Kozina","Municipality","Slovenia",2 +"SVN","SI","SI-036","Idrija","Municipality","Slovenia",2 +"SVN","SI","SI-037","Ig","Municipality","Slovenia",2 +"SVN","SI","SI-038","Ilirska Bistrica","Municipality","Slovenia",2 +"SVN","SI","SI-039","Ivančna Gorica","Municipality","Slovenia",2 +"SVN","SI","SI-040","Izola/Isola","Municipality","Slovenia",2 +"SVN","SI","SI-041","Jesenice","Municipality","Slovenia",2 +"SVN","SI","SI-042","Juršinci","Municipality","Slovenia",2 +"SVN","SI","SI-043","Kamnik","Municipality","Slovenia",2 +"SVN","SI","SI-044","Kanal","Municipality","Slovenia",2 +"SVN","SI","SI-045","Kidričevo","Municipality","Slovenia",2 +"SVN","SI","SI-046","Kobarid","Municipality","Slovenia",2 +"SVN","SI","SI-047","Kobilje","Municipality","Slovenia",2 +"SVN","SI","SI-048","Kočevje","Municipality","Slovenia",2 +"SVN","SI","SI-049","Komen","Municipality","Slovenia",2 +"SVN","SI","SI-050","Koper/Capodistria","Municipality","Slovenia",2 +"SVN","SI","SI-051","Kozje","Municipality","Slovenia",2 +"SVN","SI","SI-052","Kranj","Municipality","Slovenia",2 +"SVN","SI","SI-053","Kranjska Gora","Municipality","Slovenia",2 +"SVN","SI","SI-054","Krško","Municipality","Slovenia",2 +"SVN","SI","SI-055","Kungota","Municipality","Slovenia",2 +"SVN","SI","SI-056","Kuzma","Municipality","Slovenia",2 +"SVN","SI","SI-057","Laško","Municipality","Slovenia",2 +"SVN","SI","SI-058","Lenart","Municipality","Slovenia",2 +"SVN","SI","SI-059","Lendava/Lendva","Municipality","Slovenia",2 +"SVN","SI","SI-060","Litija","Municipality","Slovenia",2 +"SVN","SI","SI-061","Ljubljana","Municipality","Slovenia",2 +"SVN","SI","SI-062","Ljubno","Municipality","Slovenia",2 +"SVN","SI","SI-063","Ljutomer","Municipality","Slovenia",2 +"SVN","SI","SI-064","Logatec","Municipality","Slovenia",2 +"SVN","SI","SI-065","Loška dolina","Municipality","Slovenia",2 +"SVN","SI","SI-066","Loški Potok","Municipality","Slovenia",2 +"SVN","SI","SI-067","Luče","Municipality","Slovenia",2 +"SVN","SI","SI-068","Lukovica","Municipality","Slovenia",2 +"SVN","SI","SI-069","Majšperk","Municipality","Slovenia",2 +"SVN","SI","SI-070","Maribor","Municipality","Slovenia",2 +"SVN","SI","SI-071","Medvode","Municipality","Slovenia",2 +"SVN","SI","SI-072","Mengeš","Municipality","Slovenia",2 +"SVN","SI","SI-073","Metlika","Municipality","Slovenia",2 +"SVN","SI","SI-074","Mežica","Municipality","Slovenia",2 +"SVN","SI","SI-075","Miren-Kostanjevica","Municipality","Slovenia",2 +"SVN","SI","SI-076","Mislinja","Municipality","Slovenia",2 +"SVN","SI","SI-077","Moravče","Municipality","Slovenia",2 +"SVN","SI","SI-078","Moravske Toplice","Municipality","Slovenia",2 +"SVN","SI","SI-079","Mozirje","Municipality","Slovenia",2 +"SVN","SI","SI-080","Murska Sobota","Municipality","Slovenia",2 +"SVN","SI","SI-081","Muta","Municipality","Slovenia",2 +"SVN","SI","SI-082","Naklo","Municipality","Slovenia",2 +"SVN","SI","SI-083","Nazarje","Municipality","Slovenia",2 +"SVN","SI","SI-084","Nova Gorica","Municipality","Slovenia",2 +"SVN","SI","SI-085","Novo mesto","Municipality","Slovenia",2 +"SVN","SI","SI-086","Odranci","Municipality","Slovenia",2 +"SVN","SI","SI-087","Ormož","Municipality","Slovenia",2 +"SVN","SI","SI-088","Osilnica","Municipality","Slovenia",2 +"SVN","SI","SI-089","Pesnica","Municipality","Slovenia",2 +"SVN","SI","SI-090","Piran/Pirano","Municipality","Slovenia",2 +"SVN","SI","SI-091","Pivka","Municipality","Slovenia",2 +"SVN","SI","SI-092","Podčetrtek","Municipality","Slovenia",2 +"SVN","SI","SI-093","Podvelka","Municipality","Slovenia",2 +"SVN","SI","SI-094","Postojna","Municipality","Slovenia",2 +"SVN","SI","SI-095","Preddvor","Municipality","Slovenia",2 +"SVN","SI","SI-096","Ptuj","Municipality","Slovenia",2 +"SVN","SI","SI-097","Puconci","Municipality","Slovenia",2 +"SVN","SI","SI-098","Rače-Fram","Municipality","Slovenia",2 +"SVN","SI","SI-099","Radeče","Municipality","Slovenia",2 +"SVN","SI","SI-100","Radenci","Municipality","Slovenia",2 +"SVN","SI","SI-101","Radlje ob Dravi","Municipality","Slovenia",2 +"SVN","SI","SI-102","Radovljica","Municipality","Slovenia",2 +"SVN","SI","SI-103","Ravne na Koroškem","Municipality","Slovenia",2 +"SVN","SI","SI-104","Ribnica","Municipality","Slovenia",2 +"SVN","SI","SI-105","Rogašovci","Municipality","Slovenia",2 +"SVN","SI","SI-106","Rogaška Slatina","Municipality","Slovenia",2 +"SVN","SI","SI-107","Rogatec","Municipality","Slovenia",2 +"SVN","SI","SI-108","Ruše","Municipality","Slovenia",2 +"SVN","SI","SI-109","Semič","Municipality","Slovenia",2 +"SVN","SI","SI-110","Sevnica","Municipality","Slovenia",2 +"SVN","SI","SI-111","Sežana","Municipality","Slovenia",2 +"SVN","SI","SI-112","Slovenj Gradec","Municipality","Slovenia",2 +"SVN","SI","SI-113","Slovenska Bistrica","Municipality","Slovenia",2 +"SVN","SI","SI-114","Slovenske Konjice","Municipality","Slovenia",2 +"SVN","SI","SI-115","Starče","Municipality","Slovenia",2 +"SVN","SI","SI-116","Sveti Jurij","Municipality","Slovenia",2 +"SVN","SI","SI-117","Šenčur","Municipality","Slovenia",2 +"SVN","SI","SI-118","Šentilj","Municipality","Slovenia",2 +"SVN","SI","SI-119","Šentjernej","Municipality","Slovenia",2 +"SVN","SI","SI-120","Šentjur","Municipality","Slovenia",2 +"SVN","SI","SI-121","Škocjan","Municipality","Slovenia",2 +"SVN","SI","SI-122","Škofja Loka","Municipality","Slovenia",2 +"SVN","SI","SI-123","Škofljica","Municipality","Slovenia",2 +"SVN","SI","SI-124","Šmarje pri Jelšah","Municipality","Slovenia",2 +"SVN","SI","SI-125","Šmartno ob Paki","Municipality","Slovenia",2 +"SVN","SI","SI-126","Šoštanj","Municipality","Slovenia",2 +"SVN","SI","SI-127","Štore","Municipality","Slovenia",2 +"SVN","SI","SI-128","Tolmin","Municipality","Slovenia",2 +"SVN","SI","SI-129","Trbovlje","Municipality","Slovenia",2 +"SVN","SI","SI-130","Trebnje","Municipality","Slovenia",2 +"SVN","SI","SI-131","Tržič","Municipality","Slovenia",2 +"SVN","SI","SI-132","Turnišče","Municipality","Slovenia",2 +"SVN","SI","SI-133","Velenje","Municipality","Slovenia",2 +"SVN","SI","SI-134","Velike Lašče","Municipality","Slovenia",2 +"SVN","SI","SI-135","Videm","Municipality","Slovenia",2 +"SVN","SI","SI-136","Vipava","Municipality","Slovenia",2 +"SVN","SI","SI-137","Vitanje","Municipality","Slovenia",2 +"SVN","SI","SI-138","Vodice","Municipality","Slovenia",2 +"SVN","SI","SI-139","Vojnik","Municipality","Slovenia",2 +"SVN","SI","SI-140","Vrhnika","Municipality","Slovenia",2 +"SVN","SI","SI-141","Vuzenica","Municipality","Slovenia",2 +"SVN","SI","SI-142","Zagorje ob Savi","Municipality","Slovenia",2 +"SVN","SI","SI-143","Zavrč","Municipality","Slovenia",2 +"SVN","SI","SI-144","Zreče","Municipality","Slovenia",2 +"SVN","SI","SI-146","Železniki","Municipality","Slovenia",2 +"SVN","SI","SI-147","Žiri","Municipality","Slovenia",2 +"SVN","SI","SI-148","Benedikt","Municipality","Slovenia",2 +"SVN","SI","SI-149","Bistrica ob Sotli","Municipality","Slovenia",2 +"SVN","SI","SI-150","Bloke","Municipality","Slovenia",2 +"SVN","SI","SI-151","Braslovče","Municipality","Slovenia",2 +"SVN","SI","SI-152","Cankova","Municipality","Slovenia",2 +"SVN","SI","SI-153","Cerkvenjak","Municipality","Slovenia",2 +"SVN","SI","SI-154","Dobje","Municipality","Slovenia",2 +"SVN","SI","SI-155","Dobrna","Municipality","Slovenia",2 +"SVN","SI","SI-156","Dobrovnik/Dobronak","Municipality","Slovenia",2 +"SVN","SI","SI-157","Dolenjske Toplice","Municipality","Slovenia",2 +"SVN","SI","SI-158","Grad","Municipality","Slovenia",2 +"SVN","SI","SI-159","Hajdina","Municipality","Slovenia",2 +"SVN","SI","SI-160","Hoče-Slivnica","Municipality","Slovenia",2 +"SVN","SI","SI-161","Hodoš/Hodos","Municipality","Slovenia",2 +"SVN","SI","SI-162","Horjul","Municipality","Slovenia",2 +"SVN","SI","SI-163","Jezersko","Municipality","Slovenia",2 +"SVN","SI","SI-164","Komenda","Municipality","Slovenia",2 +"SVN","SI","SI-165","Kostel","Municipality","Slovenia",2 +"SVN","SI","SI-166","Križevci","Municipality","Slovenia",2 +"SVN","SI","SI-167","Lovrenc na Pohorju","Municipality","Slovenia",2 +"SVN","SI","SI-168","Markovci","Municipality","Slovenia",2 +"SVN","SI","SI-169","Miklavž na Dravskem polju","Municipality","Slovenia",2 +"SVN","SI","SI-170","Mirna Peč","Municipality","Slovenia",2 +"SVN","SI","SI-171","Oplotnica","Municipality","Slovenia",2 +"SVN","SI","SI-172","Podlehnik","Municipality","Slovenia",2 +"SVN","SI","SI-173","Polzela","Municipality","Slovenia",2 +"SVN","SI","SI-174","Prebold","Municipality","Slovenia",2 +"SVN","SI","SI-175","Prevalje","Municipality","Slovenia",2 +"SVN","SI","SI-176","Razkrižje","Municipality","Slovenia",2 +"SVN","SI","SI-177","Ribnica na Pohorju","Municipality","Slovenia",2 +"SVN","SI","SI-178","Selnica ob Dravi","Municipality","Slovenia",2 +"SVN","SI","SI-179","Sodražica","Municipality","Slovenia",2 +"SVN","SI","SI-180","Solčava","Municipality","Slovenia",2 +"SVN","SI","SI-181","Sveta Ana","Municipality","Slovenia",2 +"SVN","SI","SI-182","Sveta Andraž v Slovenskih Goricah","Municipality","Slovenia",2 +"SVN","SI","SI-183","Šempeter-Vrtojba","Municipality","Slovenia",2 +"SVN","SI","SI-184","Tabor","Municipality","Slovenia",2 +"SVN","SI","SI-185","Trnovska vas","Municipality","Slovenia",2 +"SVN","SI","SI-186","Trzin","Municipality","Slovenia",2 +"SVN","SI","SI-187","Velika Polana","Municipality","Slovenia",2 +"SVN","SI","SI-188","Veržej","Municipality","Slovenia",2 +"SVN","SI","SI-189","Vransko","Municipality","Slovenia",2 +"SVN","SI","SI-190","Žalec","Municipality","Slovenia",2 +"SVN","SI","SI-191","Žetale","Municipality","Slovenia",2 +"SVN","SI","SI-192","Žirovnica","Municipality","Slovenia",2 +"SVN","SI","SI-193","Žužemberk","Municipality","Slovenia",2 +"SVN","SI","SI-194","Šmartno pri Litiji","Municipality","Slovenia",2 +"SVN","SI","SI-195","Apače","Municipality","Slovenia",2 +"SVN","SI","SI-196","Cirkulane","Municipality","Slovenia",2 +"SVN","SI","SI-197","Kosanjevica na Krki","Municipality","Slovenia",2 +"SVN","SI","SI-198","Makole","Municipality","Slovenia",2 +"SVN","SI","SI-199","Mokronog-Trebelno","Municipality","Slovenia",2 +"SVN","SI","SI-200","Poljčane","Municipality","Slovenia",2 +"SVN","SI","SI-201","Renče-Vogrsko","Municipality","Slovenia",2 +"SVN","SI","SI-202","Središče ob Dravi","Municipality","Slovenia",2 +"SVN","SI","SI-203","Straža","Municipality","Slovenia",2 +"SVN","SI","SI-204","Sveta Trojica v Slovenskih Goricah","Municipality","Slovenia",2 +"SVN","SI","SI-205","Sveti Tomaž","Municipality","Slovenia",2 +"SVN","SI","SI-206","Šmarjeske Topliče","Municipality","Slovenia",2 +"SVN","SI","SI-207","Gorje","Municipality","Slovenia",2 +"SVN","SI","SI-208","Log-Dragomer","Municipality","Slovenia",2 +"SVN","SI","SI-209","Rečica ob Savinji","Municipality","Slovenia",2 +"SVN","SI","SI-210","Sveti Jurij v Slovenskih Goricah","Municipality","Slovenia",2 +"SVN","SI","SI-211","Šentrupert","Municipality","Slovenia",2 +"SVK","SK","SK-BC","Banskobystrický kraj","Region","Slovakia",2 +"SVK","SK","SK-BL","Bratislavský kraj","Region","Slovakia",2 +"SVK","SK","SK-KI","Košický kraj","Region","Slovakia",2 +"SVK","SK","SK-NI","Nitriansky kraj","Region","Slovakia",2 +"SVK","SK","SK-PV","Prešovský kraj","Region","Slovakia",2 +"SVK","SK","SK-TA","Trnavský kraj","Region","Slovakia",2 +"SVK","SK","SK-TC","Trenčiansky kraj","Region","Slovakia",2 +"SVK","SK","SK-ZI","Žilinský kraj","Region","Slovakia",2 +"SLE","SL","SL-E","Eastern","Province","Sierra Leone",2 +"SLE","SL","SL-N","Northern","Province","Sierra Leone",2 +"SLE","SL","SL-S","Southern (Sierra Leone)","Province","Sierra Leone",2 +"SLE","SL","SL-W","Western Area (Freetown)","Area","Sierra Leone",2 +"SMR","SM","SM-01","Acquaviva","Municipalities","San Marino",2 +"SMR","SM","SM-02","Chiesanuova","Municipalities","San Marino",2 +"SMR","SM","SM-03","Domagnano","Municipalities","San Marino",2 +"SMR","SM","SM-04","Faetano","Municipalities","San Marino",2 +"SMR","SM","SM-05","Fiorentino","Municipalities","San Marino",2 +"SMR","SM","SM-06","Borgo Maggiore","Municipalities","San Marino",2 +"SMR","SM","SM-07","San Marino","Municipalities","San Marino",2 +"SMR","SM","SM-08","Montegiardino","Municipalities","San Marino",2 +"SMR","SM","SM-09","Serravalle","Municipalities","San Marino",2 +"SEN","SN","SN-DB","Diourbel","Region","Senegal",2 +"SEN","SN","SN-DK","Dakar","Region","Senegal",2 +"SEN","SN","SN-FK","Fatick","Region","Senegal",2 +"SEN","SN","SN-KA","Kaffrine","Region","Senegal",2 +"SEN","SN","SN-KD","Kolda","Region","Senegal",2 +"SEN","SN","SN-KE","Kédougou","Region","Senegal",2 +"SEN","SN","SN-KL","Kaolack","Region","Senegal",2 +"SEN","SN","SN-LG","Louga","Region","Senegal",2 +"SEN","SN","SN-MT","Matam","Region","Senegal",2 +"SEN","SN","SN-SE","Sédhiou","Region","Senegal",2 +"SEN","SN","SN-SL","Saint-Louis","Region","Senegal",2 +"SEN","SN","SN-TC","Tambacounda","Region","Senegal",2 +"SEN","SN","SN-TH","Thiès","Region","Senegal",2 +"SEN","SN","SN-ZG","Ziguinchor","Region","Senegal",2 +"SOM","SO","SO-AW","Awdal","Region","Somalia",2 +"SOM","SO","SO-BK","Bakool","Region","Somalia",2 +"SOM","SO","SO-BN","Banaadir","Region","Somalia",2 +"SOM","SO","SO-BR","Bari","Region","Somalia",2 +"SOM","SO","SO-BY","Bay","Region","Somalia",2 +"SOM","SO","SO-GA","Galguduud","Region","Somalia",2 +"SOM","SO","SO-GE","Gedo","Region","Somalia",2 +"SOM","SO","SO-HI","Hiirsan","Region","Somalia",2 +"SOM","SO","SO-JD","Jubbada Dhexe","Region","Somalia",2 +"SOM","SO","SO-JH","Jubbada Hoose","Region","Somalia",2 +"SOM","SO","SO-MU","Mudug","Region","Somalia",2 +"SOM","SO","SO-NU","Nugaal","Region","Somalia",2 +"SOM","SO","SO-SA","Saneag","Region","Somalia",2 +"SOM","SO","SO-SD","Shabeellaha Dhexe","Region","Somalia",2 +"SOM","SO","SO-SH","Shabeellaha Hoose","Region","Somalia",2 +"SOM","SO","SO-SO","Sool","Region","Somalia",2 +"SOM","SO","SO-TO","Togdheer","Region","Somalia",2 +"SOM","SO","SO-WO","Woqooyi Galbeed","Region","Somalia",2 +"SUR","SR","SR-BR","Brokopondo","District","Suriname",2 +"SUR","SR","SR-CM","Commewijne","District","Suriname",2 +"SUR","SR","SR-CR","Coronie","District","Suriname",2 +"SUR","SR","SR-MA","Marowijne","District","Suriname",2 +"SUR","SR","SR-NI","Nickerie","District","Suriname",2 +"SUR","SR","SR-PM","Paramaribo","District","Suriname",2 +"SUR","SR","SR-PR","Para","District","Suriname",2 +"SUR","SR","SR-SA","Saramacca","District","Suriname",2 +"SUR","SR","SR-SI","Sipaliwini","District","Suriname",2 +"SUR","SR","SR-WA","Wanica","District","Suriname",2 +"SSD","SS","SS-BN","Northern Bahr el-Ghazal","state","South Sudan",2 +"SSD","SS","SS-BW","Western Bahr el-Ghazal","state","South Sudan",2 +"SSD","SS","SS-EC","Central Equatoria","state","South Sudan",2 +"SSD","SS","SS-EE8","Eastern Equatoria","state","South Sudan",2 +"SSD","SS","SS-EW","Western Equatoria","state","South Sudan",2 +"SSD","SS","SS-JG","Jonglei","state","South Sudan",2 +"SSD","SS","SS-LK","Lakes","state","South Sudan",2 +"SSD","SS","SS-NU","Upper Nile","state","South Sudan",2 +"SSD","SS","SS-UY","Unity","state","South Sudan",2 +"SSD","SS","SS-WR","Warrap","state","South Sudan",2 +"STP","ST","ST-P","Príncipe","Municipality","Sao Tome and Principe",2 +"STP","ST","ST-S","São Tomé","Municipality","Sao Tome and Principe",2 +"SLV","SV","SV-AH","Ahuachapán","Department","El Salvador",2 +"SLV","SV","SV-CA","Cabañas","Department","El Salvador",2 +"SLV","SV","SV-CH","Chalatenango","Department","El Salvador",2 +"SLV","SV","SV-CU","Cuscatlán","Department","El Salvador",2 +"SLV","SV","SV-LI","La Libertad","Department","El Salvador",2 +"SLV","SV","SV-MO","Morazán","Department","El Salvador",2 +"SLV","SV","SV-PA","La Paz","Department","El Salvador",2 +"SLV","SV","SV-SA","Santa Ana","Department","El Salvador",2 +"SLV","SV","SV-SM","San Miguel","Department","El Salvador",2 +"SLV","SV","SV-SO","Sonsonate","Department","El Salvador",2 +"SLV","SV","SV-SS","San Salvador","Department","El Salvador",2 +"SLV","SV","SV-SV","San Vicente","Department","El Salvador",2 +"SLV","SV","SV-UN","La Unión","Department","El Salvador",2 +"SLV","SV","SV-US","Usulután","Department","El Salvador",2 +"SYR","SY","SY-DI","Dimashq","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-DR","Dar'a","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-DY","Dayr az Zawr","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-HA","Al Hasakah","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-HI","Homs","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-HL","Halab","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-HM","Hamah","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-ID","Idlib","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-LA","Al Ladhiqiyah","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-QU","Al Qunaytirah","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-RA","Ar Raqqah","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-RD","Rif Dimashq","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-SU","As Suwayda'","Governorate","Syrian Arab Republic",2 +"SYR","SY","SY-TA","Tartus","Governorate","Syrian Arab Republic",2 +"SWZ","SZ","SZ-HH","Hhohho","District","Swaziland",2 +"SWZ","SZ","SZ-LU","Lubombo","District","Swaziland",2 +"SWZ","SZ","SZ-MA","Manzini","District","Swaziland",2 +"SWZ","SZ","SZ-SH","Shiselweni","District","Swaziland",2 +"TCD","TD","TD-BA","Al Baṭḩah","Region","Chad",2 +"TCD","TD","TD-BG","Baḩr al Ghazāl","Region","Chad",2 +"TCD","TD","TD-BO","Būrkū","Region","Chad",2 +"TCD","TD","TD-CB","Shārī Bāqirmī","Region","Chad",2 +"TCD","TD","TD-EN","Innīdī","Region","Chad",2 +"TCD","TD","TD-GR","Qīrā","Region","Chad",2 +"TCD","TD","TD-HL","Ḥajjar Lamīs","Region","Chad",2 +"TCD","TD","TD-KA","Kānim","Region","Chad",2 +"TCD","TD","TD-LC","Al Buḩayrah","Region","Chad",2 +"TCD","TD","TD-LO","Lūqūn al Gharbī","Region","Chad",2 +"TCD","TD","TD-LR","Lūqūn ash Sharqī","Region","Chad",2 +"TCD","TD","TD-MA","Māndūl","Region","Chad",2 +"TCD","TD","TD-MC","Shārī al Awsaṭ","Region","Chad",2 +"TCD","TD","TD-ME","Māyū Kībbī ash Sharqī","Region","Chad",2 +"TCD","TD","TD-MO","Māyū Kībbī al Gharbī","Region","Chad",2 +"TCD","TD","TD-ND","Madīnat Injamīnā","Region","Chad",2 +"TCD","TD","TD-OD","Waddāy","Region","Chad",2 +"TCD","TD","TD-SA","Salāmāt","Region","Chad",2 +"TCD","TD","TD-SI","Sīlā","Region","Chad",2 +"TCD","TD","TD-TA","Tānjilī","Region","Chad",2 +"TCD","TD","TD-TI","Tibastī","Region","Chad",2 +"TCD","TD","TD-WF","Wādī Fīrā","Region","Chad",2 +"TGO","TG","TG-C","Région du Centre","Region","Togo",2 +"TGO","TG","TG-K","Région de la Kara","Region","Togo",2 +"TGO","TG","TG-M","Région Maritime","Region","Togo",2 +"TGO","TG","TG-P","Région des Plateaux","Region","Togo",2 +"TGO","TG","TG-S","Région des Savannes","Region","Togo",2 +"THA","TH","TH-10","Krung Thep Maha Nakhon Bangkok","Municipality","Thailand",2 +"THA","TH","TH-11","Samut Prakan","Province","Thailand",2 +"THA","TH","TH-12","Nonthaburi","Province","Thailand",2 +"THA","TH","TH-13","Pathum Thani","Province","Thailand",2 +"THA","TH","TH-14","Phra Nakhon Si Ayutthaya","Province","Thailand",2 +"THA","TH","TH-15","Ang Thong","Province","Thailand",2 +"THA","TH","TH-16","Lop Buri","Province","Thailand",2 +"THA","TH","TH-17","Sing Buri","Province","Thailand",2 +"THA","TH","TH-18","Chai Nat","Province","Thailand",2 +"THA","TH","TH-19","Saraburi","Province","Thailand",2 +"THA","TH","TH-20","Chon Buri","Province","Thailand",2 +"THA","TH","TH-21","Rayong","Province","Thailand",2 +"THA","TH","TH-22","Chanthaburi","Province","Thailand",2 +"THA","TH","TH-23","Trat","Province","Thailand",2 +"THA","TH","TH-24","Chachoengsao","Province","Thailand",2 +"THA","TH","TH-25","Prachin Buri","Province","Thailand",2 +"THA","TH","TH-26","Nakhon Nayok","Province","Thailand",2 +"THA","TH","TH-27","Sa Kaeo","Province","Thailand",2 +"THA","TH","TH-30","Nakhon Ratchasima","Province","Thailand",2 +"THA","TH","TH-31","Buri Ram","Province","Thailand",2 +"THA","TH","TH-32","Surin","Province","Thailand",2 +"THA","TH","TH-33","Si Sa Ket","Province","Thailand",2 +"THA","TH","TH-34","Ubon Ratchathani","Province","Thailand",2 +"THA","TH","TH-35","Yasothon","Province","Thailand",2 +"THA","TH","TH-36","Chaiyaphum","Province","Thailand",2 +"THA","TH","TH-37","Amnat Charoen","Province","Thailand",2 +"THA","TH","TH-39","Nong Bua Lam Phu","Province","Thailand",2 +"THA","TH","TH-40","Khon Kaen","Province","Thailand",2 +"THA","TH","TH-41","Udon Thani","Province","Thailand",2 +"THA","TH","TH-42","Loei","Province","Thailand",2 +"THA","TH","TH-43","Nong Khai","Province","Thailand",2 +"THA","TH","TH-44","Maha Sarakham","Province","Thailand",2 +"THA","TH","TH-45","Roi Et","Province","Thailand",2 +"THA","TH","TH-46","Kalasin","Province","Thailand",2 +"THA","TH","TH-47","Sakon Nakhon","Province","Thailand",2 +"THA","TH","TH-48","Nakhon Phanom","Province","Thailand",2 +"THA","TH","TH-49","Mukdahan","Province","Thailand",2 +"THA","TH","TH-50","Chiang Mai","Province","Thailand",2 +"THA","TH","TH-51","Lamphun","Province","Thailand",2 +"THA","TH","TH-52","Lampang","Province","Thailand",2 +"THA","TH","TH-53","Uttaradit","Province","Thailand",2 +"THA","TH","TH-54","Phrae","Province","Thailand",2 +"THA","TH","TH-55","Nan","Province","Thailand",2 +"THA","TH","TH-56","Phayao","Province","Thailand",2 +"THA","TH","TH-57","Chiang Rai","Province","Thailand",2 +"THA","TH","TH-58","Mae Hong Son","Province","Thailand",2 +"THA","TH","TH-60","Nakhon Sawan","Province","Thailand",2 +"THA","TH","TH-61","Uthai Thani","Province","Thailand",2 +"THA","TH","TH-62","Kamphaeng Phet","Province","Thailand",2 +"THA","TH","TH-63","Tak","Province","Thailand",2 +"THA","TH","TH-64","Sukhothai","Province","Thailand",2 +"THA","TH","TH-65","Phitsanulok","Province","Thailand",2 +"THA","TH","TH-66","Phichit","Province","Thailand",2 +"THA","TH","TH-67","Phetchabun","Province","Thailand",2 +"THA","TH","TH-70","Ratchaburi","Province","Thailand",2 +"THA","TH","TH-71","Kanchanaburi","Province","Thailand",2 +"THA","TH","TH-72","Suphan Buri","Province","Thailand",2 +"THA","TH","TH-73","Nakhon Pathom","Province","Thailand",2 +"THA","TH","TH-74","Samut Sakhon","Province","Thailand",2 +"THA","TH","TH-75","Samut Songkhram","Province","Thailand",2 +"THA","TH","TH-76","Phetchaburi","Province","Thailand",2 +"THA","TH","TH-77","Prachuap Khiri Khan","Province","Thailand",2 +"THA","TH","TH-80","Nakhon Si Thammarat","Province","Thailand",2 +"THA","TH","TH-81","Krabi","Province","Thailand",2 +"THA","TH","TH-82","Phangnga","Province","Thailand",2 +"THA","TH","TH-83","Phuket","Province","Thailand",2 +"THA","TH","TH-84","Surat Thani","Province","Thailand",2 +"THA","TH","TH-85","Ranong","Province","Thailand",2 +"THA","TH","TH-86","Chumphon","Province","Thailand",2 +"THA","TH","TH-90","Songkhla","Province","Thailand",2 +"THA","TH","TH-91","Satun","Province","Thailand",2 +"THA","TH","TH-92","Trang","Province","Thailand",2 +"THA","TH","TH-93","Phatthalung","Province","Thailand",2 +"THA","TH","TH-94","Pattani","Province","Thailand",2 +"THA","TH","TH-95","Yala","Province","Thailand",2 +"THA","TH","TH-96","Narathiwat","Province","Thailand",2 +"THA","TH","TH-S","Phatthaya","Province","Thailand",2 +"TJK","TJ","TJ-GB","Gorno-Badakhshan","Autonomous region","Tajikistan",2 +"TJK","TJ","TJ-KT","Khatlon","Region","Tajikistan",2 +"TJK","TJ","TJ-SU","Sughd","Region","Tajikistan",2 +"TLS","TL","TL-AL","Aileu","District","Timor-Leste",2 +"TLS","TL","TL-AN","Ainaro","District","Timor-Leste",2 +"TLS","TL","TL-BA","Baucau","District","Timor-Leste",2 +"TLS","TL","TL-BO","Bobonaro","District","Timor-Leste",2 +"TLS","TL","TL-CO","Cova Lima","District","Timor-Leste",2 +"TLS","TL","TL-DI","Díli","District","Timor-Leste",2 +"TLS","TL","TL-ER","Ermera","District","Timor-Leste",2 +"TLS","TL","TL-LA","Lautem","District","Timor-Leste",2 +"TLS","TL","TL-LI","Liquiça","District","Timor-Leste",2 +"TLS","TL","TL-MF","Manufahi","District","Timor-Leste",2 +"TLS","TL","TL-MT","Manatuto","District","Timor-Leste",2 +"TLS","TL","TL-OE","Oecussi","District","Timor-Leste",2 +"TLS","TL","TL-VI","Viqueque","District","Timor-Leste",2 +"TKM","TM","TM-A","Ahal","Region","Turkmenistan",2 +"TKM","TM","TM-B","Balkan","Region","Turkmenistan",2 +"TKM","TM","TM-D","Daşoguz","Region","Turkmenistan",2 +"TKM","TM","TM-L","Lebap","Region","Turkmenistan",2 +"TKM","TM","TM-M","Mary","Region","Turkmenistan",2 +"TKM","TM","TM-S","Aşgabat","City","Turkmenistan",2 +"TUN","TN","TN-11","Tunis","Governorate","Tunisia",2 +"TUN","TN","TN-12","Ariana","Governorate","Tunisia",2 +"TUN","TN","TN-13","Ben Arous","Governorate","Tunisia",2 +"TUN","TN","TN-14","La Manouba","Governorate","Tunisia",2 +"TUN","TN","TN-21","Nabeul","Governorate","Tunisia",2 +"TUN","TN","TN-22","Zaghouan","Governorate","Tunisia",2 +"TUN","TN","TN-23","Bizerte","Governorate","Tunisia",2 +"TUN","TN","TN-31","Béja","Governorate","Tunisia",2 +"TUN","TN","TN-32","Jendouba","Governorate","Tunisia",2 +"TUN","TN","TN-33","Le Kef","Governorate","Tunisia",2 +"TUN","TN","TN-34","Siliana","Governorate","Tunisia",2 +"TUN","TN","TN-41","Kairouan","Governorate","Tunisia",2 +"TUN","TN","TN-42","Kasserine","Governorate","Tunisia",2 +"TUN","TN","TN-43","Sidi Bouzid","Governorate","Tunisia",2 +"TUN","TN","TN-51","Sousse","Governorate","Tunisia",2 +"TUN","TN","TN-52","Monastir","Governorate","Tunisia",2 +"TUN","TN","TN-53","Mahdia","Governorate","Tunisia",2 +"TUN","TN","TN-61","Sfax","Governorate","Tunisia",2 +"TUN","TN","TN-71","Gafsa","Governorate","Tunisia",2 +"TUN","TN","TN-72","Tozeur","Governorate","Tunisia",2 +"TUN","TN","TN-73","Kebili","Governorate","Tunisia",2 +"TUN","TN","TN-81","Gabès","Governorate","Tunisia",2 +"TUN","TN","TN-82","Medenine","Governorate","Tunisia",2 +"TUN","TN","TN-83","Tataouine","Governorate","Tunisia",2 +"TON","TO","TO-01","'Eua","Division","Tonga",2 +"TON","TO","TO-02","Ha'apai","Division","Tonga",2 +"TON","TO","TO-03","Niuas","Division","Tonga",2 +"TON","TO","TO-04","Tongatapu","Division","Tonga",2 +"TON","TO","TO-05","Vava'u","Division","Tonga",2 +"TUR","TR","TR-01","Adana","Province","Turkey",2 +"TUR","TR","TR-02","Adıyaman","Province","Turkey",2 +"TUR","TR","TR-03","Afyonkarahisar","Province","Turkey",2 +"TUR","TR","TR-04","Ağrı","Province","Turkey",2 +"TUR","TR","TR-05","Amasya","Province","Turkey",2 +"TUR","TR","TR-06","Ankara","Province","Turkey",2 +"TUR","TR","TR-07","Antalya","Province","Turkey",2 +"TUR","TR","TR-08","Artvin","Province","Turkey",2 +"TUR","TR","TR-09","Aydın","Province","Turkey",2 +"TUR","TR","TR-10","Balıkesir","Province","Turkey",2 +"TUR","TR","TR-11","Bilecik","Province","Turkey",2 +"TUR","TR","TR-12","Bingöl","Province","Turkey",2 +"TUR","TR","TR-13","Bitlis","Province","Turkey",2 +"TUR","TR","TR-14","Bolu","Province","Turkey",2 +"TUR","TR","TR-15","Burdur","Province","Turkey",2 +"TUR","TR","TR-16","Bursa","Province","Turkey",2 +"TUR","TR","TR-17","Çanakkale","Province","Turkey",2 +"TUR","TR","TR-18","Çankırı","Province","Turkey",2 +"TUR","TR","TR-19","Çorum","Province","Turkey",2 +"TUR","TR","TR-20","Denizli","Province","Turkey",2 +"TUR","TR","TR-21","Diyarbakır","Province","Turkey",2 +"TUR","TR","TR-22","Edirne","Province","Turkey",2 +"TUR","TR","TR-23","Elazığ","Province","Turkey",2 +"TUR","TR","TR-24","Erzincan","Province","Turkey",2 +"TUR","TR","TR-25","Erzurum","Province","Turkey",2 +"TUR","TR","TR-26","Eskişehir","Province","Turkey",2 +"TUR","TR","TR-27","Gaziantep","Province","Turkey",2 +"TUR","TR","TR-28","Giresun","Province","Turkey",2 +"TUR","TR","TR-29","Gümüşhane","Province","Turkey",2 +"TUR","TR","TR-30","Hakkâri","Province","Turkey",2 +"TUR","TR","TR-31","Hatay","Province","Turkey",2 +"TUR","TR","TR-32","Isparta","Province","Turkey",2 +"TUR","TR","TR-33","Mersin","Province","Turkey",2 +"TUR","TR","TR-34","İstanbul","Province","Turkey",2 +"TUR","TR","TR-35","İzmir","Province","Turkey",2 +"TUR","TR","TR-36","Kars","Province","Turkey",2 +"TUR","TR","TR-37","Kastamonu","Province","Turkey",2 +"TUR","TR","TR-38","Kayseri","Province","Turkey",2 +"TUR","TR","TR-39","Kırklareli","Province","Turkey",2 +"TUR","TR","TR-40","Kırşehir","Province","Turkey",2 +"TUR","TR","TR-41","Kocaeli","Province","Turkey",2 +"TUR","TR","TR-42","Konya","Province","Turkey",2 +"TUR","TR","TR-43","Kütahya","Province","Turkey",2 +"TUR","TR","TR-44","Malatya","Province","Turkey",2 +"TUR","TR","TR-45","Manisa","Province","Turkey",2 +"TUR","TR","TR-46","Kahramanmaraş","Province","Turkey",2 +"TUR","TR","TR-47","Mardin","Province","Turkey",2 +"TUR","TR","TR-48","Muğla","Province","Turkey",2 +"TUR","TR","TR-49","Muş","Province","Turkey",2 +"TUR","TR","TR-50","Nevşehir","Province","Turkey",2 +"TUR","TR","TR-51","Niğde","Province","Turkey",2 +"TUR","TR","TR-52","Ordu","Province","Turkey",2 +"TUR","TR","TR-53","Rize","Province","Turkey",2 +"TUR","TR","TR-54","Sakarya","Province","Turkey",2 +"TUR","TR","TR-55","Samsun","Province","Turkey",2 +"TUR","TR","TR-56","Siirt","Province","Turkey",2 +"TUR","TR","TR-57","Sinop","Province","Turkey",2 +"TUR","TR","TR-58","Sivas","Province","Turkey",2 +"TUR","TR","TR-59","Tekirdağ","Province","Turkey",2 +"TUR","TR","TR-60","Tokat","Province","Turkey",2 +"TUR","TR","TR-61","Trabzon","Province","Turkey",2 +"TUR","TR","TR-62","Tunceli","Province","Turkey",2 +"TUR","TR","TR-63","Şanlıurfa","Province","Turkey",2 +"TUR","TR","TR-64","Uşak","Province","Turkey",2 +"TUR","TR","TR-65","Van","Province","Turkey",2 +"TUR","TR","TR-66","Yozgat","Province","Turkey",2 +"TUR","TR","TR-67","Zonguldak","Province","Turkey",2 +"TUR","TR","TR-68","Aksaray","Province","Turkey",2 +"TUR","TR","TR-69","Bayburt","Province","Turkey",2 +"TUR","TR","TR-70","Karaman","Province","Turkey",2 +"TUR","TR","TR-71","Kırıkkale","Province","Turkey",2 +"TUR","TR","TR-72","Batman","Province","Turkey",2 +"TUR","TR","TR-73","Şırnak","Province","Turkey",2 +"TUR","TR","TR-74","Bartın","Province","Turkey",2 +"TUR","TR","TR-75","Ardahan","Province","Turkey",2 +"TUR","TR","TR-76","Iğdır","Province","Turkey",2 +"TUR","TR","TR-77","Yalova","Province","Turkey",2 +"TUR","TR","TR-78","Karabük","Province","Turkey",2 +"TUR","TR","TR-79","Kilis","Province","Turkey",2 +"TUR","TR","TR-80","Osmaniye","Province","Turkey",2 +"TUR","TR","TR-81","Düzce","Province","Turkey",2 +"TTO","TT","TT-ARI","Arima","Borough","Trinidad and Tobago",2 +"TTO","TT","TT-CHA","Chaguanas","Borough","Trinidad and Tobago",2 +"TTO","TT","TT-CTT","Couva-Tabaquite-Talparo","Region","Trinidad and Tobago",2 +"TTO","TT","TT-DMN","Diego Martin","Region","Trinidad and Tobago",2 +"TTO","TT","TT-ETO","Eastern Tobago","Region","Trinidad and Tobago",2 +"TTO","TT","TT-PED","Penal-Debe","Region","Trinidad and Tobago",2 +"TTO","TT","TT-POS","Port of Spain","City","Trinidad and Tobago",2 +"TTO","TT","TT-PRT","Princes Town","Region","Trinidad and Tobago",2 +"TTO","TT","TT-PTF","Point Fortin","Borough","Trinidad and Tobago",2 +"TTO","TT","TT-RCM","Rio Claro-Mayaro","Region","Trinidad and Tobago",2 +"TTO","TT","TT-SFO","San Fernando","City","Trinidad and Tobago",2 +"TTO","TT","TT-SGE","Sangre Grande","Region","Trinidad and Tobago",2 +"TTO","TT","TT-SIP","Siparia","Region","Trinidad and Tobago",2 +"TTO","TT","TT-SJL","San Juan-Laventille","Region","Trinidad and Tobago",2 +"TTO","TT","TT-TUP","Tunapuna-Piarco","Region","Trinidad and Tobago",2 +"TTO","TT","TT-WTO","Western Tobago","Region","Trinidad and Tobago",2 +"TUV","TV","TV-FUN","Funafuti","Town council","Tuvalu",2 +"TUV","TV","TV-NIT","Niutao","Island council","Tuvalu",2 +"TUV","TV","TV-NKF","Nukufetau","Island council","Tuvalu",2 +"TUV","TV","TV-NKL","Nukulaelae","Island council","Tuvalu",2 +"TUV","TV","TV-NMA","Nanumea","Island council","Tuvalu",2 +"TUV","TV","TV-NMG","Nanumanga","Island council","Tuvalu",2 +"TUV","TV","TV-NUI","Nui","Island council","Tuvalu",2 +"TUV","TV","TV-VAI","Vaitupu","Island council","Tuvalu",2 +"TWN","TW","TW-CHA","Changhua","District","Taiwan",2 +"TWN","TW","TW-CYI","Chiay City","Municipality","Taiwan",2 +"TWN","TW","TW-CYQ","Chiayi","District","Taiwan",2 +"TWN","TW","TW-HSQ","Hsinchu","District","Taiwan",2 +"TWN","TW","TW-HSZ","Hsinchui City","Municipality","Taiwan",2 +"TWN","TW","TW-HUA","Hualien","District","Taiwan",2 +"TWN","TW","TW-ILA","Ilan","District","Taiwan",2 +"TWN","TW","TW-KEE","Keelung City","Municipality","Taiwan",2 +"TWN","TW","TW-KHH","Kaohsiung City","Special Municipality","Taiwan",2 +"TWN","TW","TW-KHQ","Kaohsiung","District","Taiwan",2 +"TWN","TW","TW-MIA","Miaoli","District","Taiwan",2 +"TWN","TW","TW-NAN","Nantou","District","Taiwan",2 +"TWN","TW","TW-PEN","Penghu","District","Taiwan",2 +"TWN","TW","TW-PIF","Pingtung","District","Taiwan",2 +"TWN","TW","TW-TAO","Taoyuan","District","Taiwan",2 +"TWN","TW","TW-TNN","Tainan City","Municipality","Taiwan",2 +"TWN","TW","TW-TNQ","Tainan","District","Taiwan",2 +"TWN","TW","TW-TPE","Taipei City","Special Municipality","Taiwan",2 +"TWN","TW","TW-TPQ","Taipei","District","Taiwan",2 +"TWN","TW","TW-TTT","Taitung","District","Taiwan",2 +"TWN","TW","TW-TXG","Taichung City","Municipality","Taiwan",2 +"TWN","TW","TW-TXQ","Taichung","District","Taiwan",2 +"TWN","TW","TW-YUN","Yunlin","District","Taiwan",2 +"TZA","TZ","TZ-01","Arusha","Region","Tanzania",2 +"TZA","TZ","TZ-02","Dar-es-Salaam","Region","Tanzania",2 +"TZA","TZ","TZ-03","Dodoma","Region","Tanzania",2 +"TZA","TZ","TZ-04","Iringa","Region","Tanzania",2 +"TZA","TZ","TZ-05","Kagera","Region","Tanzania",2 +"TZA","TZ","TZ-06","Kaskazini Pemba","Region","Tanzania",2 +"TZA","TZ","TZ-07","Kaskazini Unguja","Region","Tanzania",2 +"TZA","TZ","TZ-08","Kigoma","Region","Tanzania",2 +"TZA","TZ","TZ-09","Kilimanjaro","Region","Tanzania",2 +"TZA","TZ","TZ-10","Kusini Pemba","Region","Tanzania",2 +"TZA","TZ","TZ-11","Kusini Unguja","Region","Tanzania",2 +"TZA","TZ","TZ-12","Lindi","Region","Tanzania",2 +"TZA","TZ","TZ-13","Mara","Region","Tanzania",2 +"TZA","TZ","TZ-14","Mbeya","Region","Tanzania",2 +"TZA","TZ","TZ-15","Mjini Magharibi","Region","Tanzania",2 +"TZA","TZ","TZ-16","Morogoro","Region","Tanzania",2 +"TZA","TZ","TZ-17","Mtwara","Region","Tanzania",2 +"TZA","TZ","TZ-18","Mwanza","Region","Tanzania",2 +"TZA","TZ","TZ-19","Pwani","Region","Tanzania",2 +"TZA","TZ","TZ-20","Rukwa","Region","Tanzania",2 +"TZA","TZ","TZ-21","Ruvuma","Region","Tanzania",2 +"TZA","TZ","TZ-22","Shinyanga","Region","Tanzania",2 +"TZA","TZ","TZ-23","Singida","Region","Tanzania",2 +"TZA","TZ","TZ-24","Tabora","Region","Tanzania",2 +"TZA","TZ","TZ-25","Tanga","Region","Tanzania",2 +"TZA","TZ","TZ-26","Manyara","Region","Tanzania",2 +"UKR","UA","UA-05","Vinnyts'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-07","Volyns'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-09","Luhans'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-12","Dnipropetrovs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-14","Donets'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-18","Zhytomyrs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-21","Zakarpats'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-23","Zaporiz'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-26","Ivano-Frankivs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-30","Kyïvs'ka mis'ka rada","City","Ukraine",2 +"UKR","UA","UA-32","Kyïvs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-35","Kirovohrads'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-40","Sevastopol","City","Ukraine",2 +"UKR","UA","UA-43","Respublika Krym","Autonomous republic","Ukraine",2 +"UKR","UA","UA-46","L'vivs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-48","Mykolaïvs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-51","Odes'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-53","Poltavs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-56","Rivnens'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-59","Sums 'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-61","Ternopil's'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-63","Kharkivs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-65","Khersons'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-68","Khmel'nyts'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-71","Cherkas'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-74","Chernihivs'ka Oblast'","Province","Ukraine",2 +"UKR","UA","UA-77","Chernivets'ka Oblast'","Province","Ukraine",2 +"UGA","UG","UG-101","Kalangala","District","Uganda",2 +"UGA","UG","UG-102","Kampala","District","Uganda",2 +"UGA","UG","UG-103","Kiboga","District","Uganda",2 +"UGA","UG","UG-104","Luwero","District","Uganda",2 +"UGA","UG","UG-105","Masaka","District","Uganda",2 +"UGA","UG","UG-106","Mpigi","District","Uganda",2 +"UGA","UG","UG-107","Mubende","District","Uganda",2 +"UGA","UG","UG-108","Mukono","District","Uganda",2 +"UGA","UG","UG-109","Nakasongola","District","Uganda",2 +"UGA","UG","UG-110","Rakai","District","Uganda",2 +"UGA","UG","UG-111","Sembabule","District","Uganda",2 +"UGA","UG","UG-112","Kayunga","District","Uganda",2 +"UGA","UG","UG-113","Wakiso","District","Uganda",2 +"UGA","UG","UG-114","Mityana","District","Uganda",2 +"UGA","UG","UG-115","Nakaseke","District","Uganda",2 +"UGA","UG","UG-116","Lyantonde","District","Uganda",2 +"UGA","UG","UG-201","Bugiri","District","Uganda",2 +"UGA","UG","UG-202","Busia","District","Uganda",2 +"UGA","UG","UG-203","Iganga","District","Uganda",2 +"UGA","UG","UG-204","Jinja","District","Uganda",2 +"UGA","UG","UG-205","Kamuli","District","Uganda",2 +"UGA","UG","UG-206","Kapchorwa","District","Uganda",2 +"UGA","UG","UG-207","Katakwi","District","Uganda",2 +"UGA","UG","UG-208","Kumi","District","Uganda",2 +"UGA","UG","UG-209","Mbale","District","Uganda",2 +"UGA","UG","UG-210","Pallisa","District","Uganda",2 +"UGA","UG","UG-211","Soroti","District","Uganda",2 +"UGA","UG","UG-212","Tororo","District","Uganda",2 +"UGA","UG","UG-213","Kaberamaido","District","Uganda",2 +"UGA","UG","UG-214","Mayuge","District","Uganda",2 +"UGA","UG","UG-215","Sironko","District","Uganda",2 +"UGA","UG","UG-216","Amuria","District","Uganda",2 +"UGA","UG","UG-217","Budaka","District","Uganda",2 +"UGA","UG","UG-218","Bukwa","District","Uganda",2 +"UGA","UG","UG-219","Butaleja","District","Uganda",2 +"UGA","UG","UG-220","Kaliro","District","Uganda",2 +"UGA","UG","UG-221","Manafwa","District","Uganda",2 +"UGA","UG","UG-222","Namutumba","District","Uganda",2 +"UGA","UG","UG-223","Bududa","District","Uganda",2 +"UGA","UG","UG-224","Bukedea","District","Uganda",2 +"UGA","UG","UG-301","Adjumani","District","Uganda",2 +"UGA","UG","UG-302","Apac","District","Uganda",2 +"UGA","UG","UG-303","Arua","District","Uganda",2 +"UGA","UG","UG-304","Gulu","District","Uganda",2 +"UGA","UG","UG-305","Kitgum","District","Uganda",2 +"UGA","UG","UG-306","Kotido","District","Uganda",2 +"UGA","UG","UG-307","Lira","District","Uganda",2 +"UGA","UG","UG-308","Moroto","District","Uganda",2 +"UGA","UG","UG-309","Moyo","District","Uganda",2 +"UGA","UG","UG-310","Nebbi","District","Uganda",2 +"UGA","UG","UG-311","Nakapiripirit","District","Uganda",2 +"UGA","UG","UG-312","Pader","District","Uganda",2 +"UGA","UG","UG-313","Yumbe","District","Uganda",2 +"UGA","UG","UG-314","Amolatar","District","Uganda",2 +"UGA","UG","UG-315","Kaabong","District","Uganda",2 +"UGA","UG","UG-316","Koboko","District","Uganda",2 +"UGA","UG","UG-317","Abim","District","Uganda",2 +"UGA","UG","UG-318","Dokolo","District","Uganda",2 +"UGA","UG","UG-319","Amuru","District","Uganda",2 +"UGA","UG","UG-320","Maracha","District","Uganda",2 +"UGA","UG","UG-321","Oyam","District","Uganda",2 +"UGA","UG","UG-401","Bundibugyo","District","Uganda",2 +"UGA","UG","UG-402","Bushenyi","District","Uganda",2 +"UGA","UG","UG-403","Hoima","District","Uganda",2 +"UGA","UG","UG-404","Kabale","District","Uganda",2 +"UGA","UG","UG-405","Kabarole","District","Uganda",2 +"UGA","UG","UG-406","Kasese","District","Uganda",2 +"UGA","UG","UG-407","Kibaale","District","Uganda",2 +"UGA","UG","UG-408","Kisoro","District","Uganda",2 +"UGA","UG","UG-409","Masindi","District","Uganda",2 +"UGA","UG","UG-410","Mbarara","District","Uganda",2 +"UGA","UG","UG-411","Ntungamo","District","Uganda",2 +"UGA","UG","UG-412","Rukungiri","District","Uganda",2 +"UGA","UG","UG-413","Kamwenge","District","Uganda",2 +"UGA","UG","UG-414","Kanungu","District","Uganda",2 +"UGA","UG","UG-415","Kyenjojo","District","Uganda",2 +"UGA","UG","UG-416","Ibanda","District","Uganda",2 +"UGA","UG","UG-417","Isingiro","District","Uganda",2 +"UGA","UG","UG-418","Kiruhura","District","Uganda",2 +"UGA","UG","UG-419","Buliisa","District","Uganda",2 +"UGA","UG","UG-C","Central","Geographical region","Uganda",2 +"UGA","UG","UG-E","Eastern","Geographical region","Uganda",2 +"UGA","UG","UG-N","Northern","Geographical region","Uganda",2 +"UGA","UG","UG-W","Western","Geographical region","Uganda",2 +"UMI","UM","UM-67","Johnston Atoll","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-71","Midway Islands","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-76","Navassa Island","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-79","Wake Island","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-81","Baker Island","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-84","Howland Island","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-86","Jarvis Island","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-89","Kingman Reef","Territory","United States Minor Outlying Islands",2 +"UMI","UM","UM-95","Palmyra Atoll","Territory","United States Minor Outlying Islands",2 +"USA","US","US-AK","Alaska","State","United States",2 +"USA","US","US-AL","Alabama","State","United States",2 +"USA","US","US-AR","Arkansas","State","United States",2 +"USA","US","US-AS","American Samoa","Outlying area","United States",2 +"USA","US","US-AZ","Arizona","State","United States",2 +"USA","US","US-CA","California","State","United States",2 +"USA","US","US-CO","Colorado","State","United States",2 +"USA","US","US-CT","Connecticut","State","United States",2 +"USA","US","US-DC","District of Columbia","District","United States",2 +"USA","US","US-DE","Delaware","State","United States",2 +"USA","US","US-FL","Florida","State","United States",2 +"USA","US","US-GA","Georgia","State","United States",2 +"USA","US","US-GU","Guam","Outlying area","United States",2 +"USA","US","US-HI","Hawaii","State","United States",2 +"USA","US","US-IA","Iowa","State","United States",2 +"USA","US","US-ID","Idaho","State","United States",2 +"USA","US","US-IL","Illinois","State","United States",2 +"USA","US","US-IN","Indiana","State","United States",2 +"USA","US","US-KS","Kansas","State","United States",2 +"USA","US","US-KY","Kentucky","State","United States",2 +"USA","US","US-LA","Louisiana","State","United States",2 +"USA","US","US-MA","Massachusetts","State","United States",2 +"USA","US","US-MD","Maryland","State","United States",2 +"USA","US","US-ME","Maine","State","United States",2 +"USA","US","US-MI","Michigan","State","United States",2 +"USA","US","US-MN","Minnesota","State","United States",2 +"USA","US","US-MO","Missouri","State","United States",2 +"USA","US","US-MP","Northern Mariana Islands","Outlying area","United States",2 +"USA","US","US-MS","Mississippi","State","United States",2 +"USA","US","US-MT","Montana","State","United States",2 +"USA","US","US-NC","North Carolina","State","United States",2 +"USA","US","US-ND","North Dakota","State","United States",2 +"USA","US","US-NE","Nebraska","State","United States",2 +"USA","US","US-NH","New Hampshire","State","United States",2 +"USA","US","US-NJ","New Jersey","State","United States",2 +"USA","US","US-NM","New Mexico","State","United States",2 +"USA","US","US-NV","Nevada","State","United States",2 +"USA","US","US-NY","New York","State","United States",2 +"USA","US","US-OH","Ohio","State","United States",2 +"USA","US","US-OK","Oklahoma","State","United States",2 +"USA","US","US-OR","Oregon","State","United States",2 +"USA","US","US-PA","Pennsylvania","State","United States",2 +"USA","US","US-PR","Puerto Rico","Outlying area","United States",2 +"USA","US","US-RI","Rhode Island","State","United States",2 +"USA","US","US-SC","South Carolina","State","United States",2 +"USA","US","US-SD","South Dakota","State","United States",2 +"USA","US","US-TN","Tennessee","State","United States",2 +"USA","US","US-TX","Texas","State","United States",2 +"USA","US","US-UM","United States Minor Outlying Islands","Outlying area","United States",2 +"USA","US","US-UT","Utah","State","United States",2 +"USA","US","US-VA","Virginia","State","United States",2 +"USA","US","US-VI","Virgin Islands","Outlying area","United States",2 +"USA","US","US-VT","Vermont","State","United States",2 +"USA","US","US-WA","Washington","State","United States",2 +"USA","US","US-WI","Wisconsin","State","United States",2 +"USA","US","US-WV","West Virginia","State","United States",2 +"USA","US","US-WY","Wyoming","State","United States",2 +"URY","UY","UY-AR","Artigas","Department","Uruguay",2 +"URY","UY","UY-CA","Canelones","Department","Uruguay",2 +"URY","UY","UY-CL","Cerro Largo","Department","Uruguay",2 +"URY","UY","UY-CO","Colonia","Department","Uruguay",2 +"URY","UY","UY-DU","Durazno","Department","Uruguay",2 +"URY","UY","UY-FD","Florida","Department","Uruguay",2 +"URY","UY","UY-FS","Flores","Department","Uruguay",2 +"URY","UY","UY-LA","Lavalleja","Department","Uruguay",2 +"URY","UY","UY-MA","Maldonado","Department","Uruguay",2 +"URY","UY","UY-MO","Montevideo","Department","Uruguay",2 +"URY","UY","UY-PA","Paysandú","Department","Uruguay",2 +"URY","UY","UY-RN","Río Negro","Department","Uruguay",2 +"URY","UY","UY-RO","Rocha","Department","Uruguay",2 +"URY","UY","UY-RV","Rivera","Department","Uruguay",2 +"URY","UY","UY-SA","Salto","Department","Uruguay",2 +"URY","UY","UY-SJ","San José","Department","Uruguay",2 +"URY","UY","UY-SO","Soriano","Department","Uruguay",2 +"URY","UY","UY-TA","Tacuarembó","Department","Uruguay",2 +"URY","UY","UY-TT","Treinta y Tres","Department","Uruguay",2 +"UZB","UZ","UZ-AN","Andijon","Region","Uzbekistan",2 +"UZB","UZ","UZ-BU","Buxoro","Region","Uzbekistan",2 +"UZB","UZ","UZ-FA","Farg'ona","Region","Uzbekistan",2 +"UZB","UZ","UZ-JI","Jizzax","Region","Uzbekistan",2 +"UZB","UZ","UZ-NG","Namangan","Region","Uzbekistan",2 +"UZB","UZ","UZ-NW","Navoiy","Region","Uzbekistan",2 +"UZB","UZ","UZ-QA","Qashqadaryo","Region","Uzbekistan",2 +"UZB","UZ","UZ-QR","Qoraqalpog'iston Respublikasi","Republic","Uzbekistan",2 +"UZB","UZ","UZ-SA","Samarqand","Region","Uzbekistan",2 +"UZB","UZ","UZ-SI","Sirdaryo","Region","Uzbekistan",2 +"UZB","UZ","UZ-SU","Surxondaryo","Region","Uzbekistan",2 +"UZB","UZ","UZ-TK","Toshkent","City","Uzbekistan",2 +"UZB","UZ","UZ-TO","Toshkent","Region","Uzbekistan",2 +"UZB","UZ","UZ-XO","Xorazm","Region","Uzbekistan",2 +"VCT","VC","VC-01","Charlotte","Parish","Saint Vincent and the Grenadines",2 +"VCT","VC","VC-02","Saint Andrew","Parish","Saint Vincent and the Grenadines",2 +"VCT","VC","VC-03","Saint David","Parish","Saint Vincent and the Grenadines",2 +"VCT","VC","VC-04","Saint George","Parish","Saint Vincent and the Grenadines",2 +"VCT","VC","VC-05","Saint Patrick","Parish","Saint Vincent and the Grenadines",2 +"VCT","VC","VC-06","Grenadines","Parish","Saint Vincent and the Grenadines",2 +"VEN","VE","VE-A","Distrito Federal","Federal District","Venezuela",2 +"VEN","VE","VE-B","Anzoátegui","State","Venezuela",2 +"VEN","VE","VE-C","Apure","State","Venezuela",2 +"VEN","VE","VE-D","Aragua","State","Venezuela",2 +"VEN","VE","VE-E","Barinas","State","Venezuela",2 +"VEN","VE","VE-F","Bolívar","State","Venezuela",2 +"VEN","VE","VE-G","Carabobo","State","Venezuela",2 +"VEN","VE","VE-H","Cojedes","State","Venezuela",2 +"VEN","VE","VE-I","Falcón","State","Venezuela",2 +"VEN","VE","VE-J","Guárico","State","Venezuela",2 +"VEN","VE","VE-K","Lara","State","Venezuela",2 +"VEN","VE","VE-L","Mérida","State","Venezuela",2 +"VEN","VE","VE-M","Miranda","State","Venezuela",2 +"VEN","VE","VE-N","Monagas","State","Venezuela",2 +"VEN","VE","VE-O","Nueva Esparta","State","Venezuela",2 +"VEN","VE","VE-P","Portuguesa","State","Venezuela",2 +"VEN","VE","VE-R","Sucre","State","Venezuela",2 +"VEN","VE","VE-S","Táchira","State","Venezuela",2 +"VEN","VE","VE-T","Trujillo","State","Venezuela",2 +"VEN","VE","VE-U","Yaracuy","State","Venezuela",2 +"VEN","VE","VE-V","Zulia","State","Venezuela",2 +"VEN","VE","VE-W","Dependencias Federales","Federal Dependency","Venezuela",2 +"VEN","VE","VE-X","Vargas","State","Venezuela",2 +"VEN","VE","VE-Y","Delta Amacuro","State","Venezuela",2 +"VEN","VE","VE-Z","Amazonas","State","Venezuela",2 +"VNM","VN","VN-01","Lai Châu","Province","Vietnam",2 +"VNM","VN","VN-02","Lào Cai","Province","Vietnam",2 +"VNM","VN","VN-03","Hà Giang","Province","Vietnam",2 +"VNM","VN","VN-04","Cao Bằng","Province","Vietnam",2 +"VNM","VN","VN-05","Sơn La","Province","Vietnam",2 +"VNM","VN","VN-06","Yên Bái","Province","Vietnam",2 +"VNM","VN","VN-07","Tuyên Quang","Province","Vietnam",2 +"VNM","VN","VN-09","Lạng Sơn","Province","Vietnam",2 +"VNM","VN","VN-13","Quảng Ninh","Province","Vietnam",2 +"VNM","VN","VN-14","Hoà Bình","Province","Vietnam",2 +"VNM","VN","VN-15","Hà Tây","Province","Vietnam",2 +"VNM","VN","VN-18","Ninh Bình","Province","Vietnam",2 +"VNM","VN","VN-20","Thái Bình","Province","Vietnam",2 +"VNM","VN","VN-21","Thanh Hóa","Province","Vietnam",2 +"VNM","VN","VN-22","Nghệ An","Province","Vietnam",2 +"VNM","VN","VN-23","Hà Tỉnh","Province","Vietnam",2 +"VNM","VN","VN-24","Quảng Bình","Province","Vietnam",2 +"VNM","VN","VN-25","Quảng Trị","Province","Vietnam",2 +"VNM","VN","VN-26","Thừa Thiên-Huế","Province","Vietnam",2 +"VNM","VN","VN-27","Quảng Nam","Province","Vietnam",2 +"VNM","VN","VN-28","Kon Tum","Province","Vietnam",2 +"VNM","VN","VN-29","Quảng Ngãi","Province","Vietnam",2 +"VNM","VN","VN-30","Gia Lai","Province","Vietnam",2 +"VNM","VN","VN-31","Bình Định","Province","Vietnam",2 +"VNM","VN","VN-32","Phú Yên","Province","Vietnam",2 +"VNM","VN","VN-33","Đắc Lắk","Province","Vietnam",2 +"VNM","VN","VN-34","Khánh Hòa","Province","Vietnam",2 +"VNM","VN","VN-35","Lâm Đồng","Province","Vietnam",2 +"VNM","VN","VN-36","Ninh Thuận","Province","Vietnam",2 +"VNM","VN","VN-37","Tây Ninh","Province","Vietnam",2 +"VNM","VN","VN-39","Đồng Nai","Province","Vietnam",2 +"VNM","VN","VN-40","Bình Thuận","Province","Vietnam",2 +"VNM","VN","VN-41","Long An","Province","Vietnam",2 +"VNM","VN","VN-43","Bà Rịa-Vũng Tàu","Province","Vietnam",2 +"VNM","VN","VN-44","An Giang","Province","Vietnam",2 +"VNM","VN","VN-45","Đồng Tháp","Province","Vietnam",2 +"VNM","VN","VN-46","Tiền Giang","Province","Vietnam",2 +"VNM","VN","VN-47","Kiên Giang","Province","Vietnam",2 +"VNM","VN","VN-49","Vĩnh Long","Province","Vietnam",2 +"VNM","VN","VN-50","Bến Tre","Province","Vietnam",2 +"VNM","VN","VN-51","Trà Vinh","Province","Vietnam",2 +"VNM","VN","VN-52","Sóc Trăng","Province","Vietnam",2 +"VNM","VN","VN-53","Bắc Kạn","Province","Vietnam",2 +"VNM","VN","VN-54","Bắc Giang","Province","Vietnam",2 +"VNM","VN","VN-55","Bạc Liêu","Province","Vietnam",2 +"VNM","VN","VN-56","Bắc Ninh","Province","Vietnam",2 +"VNM","VN","VN-57","Bình Dương","Province","Vietnam",2 +"VNM","VN","VN-58","Bình Phước","Province","Vietnam",2 +"VNM","VN","VN-59","Cà Mau","Province","Vietnam",2 +"VNM","VN","VN-61","Hải Duong","Province","Vietnam",2 +"VNM","VN","VN-63","Hà Nam","Province","Vietnam",2 +"VNM","VN","VN-66","Hưng Yên","Province","Vietnam",2 +"VNM","VN","VN-67","Nam Định","Province","Vietnam",2 +"VNM","VN","VN-68","Phú Thọ","Province","Vietnam",2 +"VNM","VN","VN-69","Thái Nguyên","Province","Vietnam",2 +"VNM","VN","VN-70","Vĩnh Phúc","Province","Vietnam",2 +"VNM","VN","VN-71","Điện Biên","Province","Vietnam",2 +"VNM","VN","VN-72","Đắk Nông","Province","Vietnam",2 +"VNM","VN","VN-73","Hậu Giang","Province","Vietnam",2 +"VNM","VN","VN-CT","Cần Thơ","Municipality","Vietnam",2 +"VNM","VN","VN-DN","Đà Nẵng","Municipality","Vietnam",2 +"VNM","VN","VN-HN","Hà Nội","Municipality","Vietnam",2 +"VNM","VN","VN-HP","Hải Phòng","Municipality","Vietnam",2 +"VNM","VN","VN-SG","Hồ Chí Minh [Sài Gòn]","Municipality","Vietnam",2 +"VUT","VU","VU-MAP","Malampa","Province","Vanuatu",2 +"VUT","VU","VU-PAM","Pénama","Province","Vanuatu",2 +"VUT","VU","VU-SAM","Sanma","Province","Vanuatu",2 +"VUT","VU","VU-SEE","Shéfa","Province","Vanuatu",2 +"VUT","VU","VU-TAE","Taféa","Province","Vanuatu",2 +"VUT","VU","VU-TOB","Torba","Province","Vanuatu",2 +"WSM","WS","WS-AA","A'ana","District","Samoa",2 +"WSM","WS","WS-AL","Aiga-i-le-Tai","District","Samoa",2 +"WSM","WS","WS-AT","Atua","District","Samoa",2 +"WSM","WS","WS-FA","Fa'asaleleaga","District","Samoa",2 +"WSM","WS","WS-GE","Gaga'emauga","District","Samoa",2 +"WSM","WS","WS-GI","Gagaifomauga","District","Samoa",2 +"WSM","WS","WS-PA","Palauli","District","Samoa",2 +"WSM","WS","WS-SA","Satupa'itea","District","Samoa",2 +"WSM","WS","WS-TU","Tuamasaga","District","Samoa",2 +"WSM","WS","WS-VF","Va'a-o-Fonoti","District","Samoa",2 +"WSM","WS","WS-VS","Vaisigano","District","Samoa",2 +"YEM","YE","YE-AB","Abyān","Governorate","Yemen",2 +"YEM","YE","YE-AD","'Adan","Governorate","Yemen",2 +"YEM","YE","YE-AM","'Amrān","Governorate","Yemen",2 +"YEM","YE","YE-BA","Al Bayḑā'","Governorate","Yemen",2 +"YEM","YE","YE-DA","Aḑ Ḑāli‘","Governorate","Yemen",2 +"YEM","YE","YE-DH","Dhamār","Governorate","Yemen",2 +"YEM","YE","YE-HD","Ḩaḑramawt","Governorate","Yemen",2 +"YEM","YE","YE-HJ","Ḩajjah","Governorate","Yemen",2 +"YEM","YE","YE-IB","Ibb","Governorate","Yemen",2 +"YEM","YE","YE-JA","Al Jawf","Governorate","Yemen",2 +"YEM","YE","YE-LA","Laḩij","Governorate","Yemen",2 +"YEM","YE","YE-MA","Ma'rib","Governorate","Yemen",2 +"YEM","YE","YE-MR","Al Mahrah","Governorate","Yemen",2 +"YEM","YE","YE-MU","Al Ḩudaydah","Governorate","Yemen",2 +"YEM","YE","YE-MW","Al Maḩwīt","Governorate","Yemen",2 +"YEM","YE","YE-RA","Raymah","Governorate","Yemen",2 +"YEM","YE","YE-SD","Şa'dah","Governorate","Yemen",2 +"YEM","YE","YE-SH","Shabwah","Governorate","Yemen",2 +"YEM","YE","YE-SN","Şan'ā'","Governorate","Yemen",2 +"YEM","YE","YE-TA","Tā'izz","Governorate","Yemen",2 +"ZAF","ZA","ZA-EC","Eastern Cape","Province","South Africa",2 +"ZAF","ZA","ZA-FS","Free State","Province","South Africa",2 +"ZAF","ZA","ZA-GP","Gauteng","Province","South Africa",2 +"ZAF","ZA","ZA-LP","Limpopo","Province","South Africa",2 +"ZAF","ZA","ZA-MP","Mpumalanga","Province","South Africa",2 +"ZAF","ZA","ZA-NC","Northern Cape","Province","South Africa",2 +"ZAF","ZA","ZA-NW","North-West (South Africa)","Province","South Africa",2 +"ZAF","ZA","ZA-WC","Western Cape","Province","South Africa",2 +"ZAF","ZA","ZA-ZN","Kwazulu-Natal","Province","South Africa",2 +"ZMB","ZM","ZM-01","Western","Province","Zambia",2 +"ZMB","ZM","ZM-02","Central","Province","Zambia",2 +"ZMB","ZM","ZM-03","Eastern","Province","Zambia",2 +"ZMB","ZM","ZM-04","Luapula","Province","Zambia",2 +"ZMB","ZM","ZM-05","Northern","Province","Zambia",2 +"ZMB","ZM","ZM-06","North-Western","Province","Zambia",2 +"ZMB","ZM","ZM-07","Southern (Zambia)","Province","Zambia",2 +"ZMB","ZM","ZM-08","Copperbelt","Province","Zambia",2 +"ZMB","ZM","ZM-09","Lusaka","Province","Zambia",2 +"ZWE","ZW","ZW-BU","Bulawayo","City","Zimbabwe",2 +"ZWE","ZW","ZW-HA","Harare","City","Zimbabwe",2 +"ZWE","ZW","ZW-MA","Manicaland","Province","Zimbabwe",2 +"ZWE","ZW","ZW-MC","Mashonaland Central","Province","Zimbabwe",2 +"ZWE","ZW","ZW-ME","Mashonaland East","Province","Zimbabwe",2 +"ZWE","ZW","ZW-MI","Midlands","Province","Zimbabwe",2 +"ZWE","ZW","ZW-MN","Matabeleland North","Province","Zimbabwe",2 +"ZWE","ZW","ZW-MS","Matabeleland South","Province","Zimbabwe",2 +"ZWE","ZW","ZW-MV","Masvingo","Province","Zimbabwe",2 +"ZWE","ZW","ZW-MW","Mashonaland West","Province","Zimbabwe",2 diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/isoa2l1_aliases.csv b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/isoa2l1_aliases.csv new file mode 100644 index 000000000..7c27e3f19 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/extdata/isoa2l1_aliases.csv @@ -0,0 +1 @@ +isoa1,isoa2_l1,gadm_name,gadm_hasc,alias diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/AnIndex b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/AnIndex new file mode 100644 index 000000000..e69de29bb diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/aliases.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/aliases.rds new file mode 100644 index 000000000..b1ab83d07 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/aliases.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/globaltoolboxlite.rdb b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/globaltoolboxlite.rdb new file mode 100644 index 000000000..e69de29bb diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/globaltoolboxlite.rdx b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/globaltoolboxlite.rdx new file mode 100644 index 000000000..66cf8133a Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/globaltoolboxlite.rdx differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/paths.rds b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/paths.rds new file mode 100644 index 000000000..ce327e040 Binary files /dev/null and b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/help/paths.rds differ diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/html/00Index.html b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/html/00Index.html new file mode 100644 index 000000000..d8b71fcb0 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/html/00Index.html @@ -0,0 +1,23 @@ + + +R: Identify Location Names and Link with Other Data, lite version + + + +

Identify Location Names and Link with Other Data, lite version + +

+
+
+[Up] +[Top] +

Documentation for package ‘globaltoolboxlite’ version 0.0.0.9000

+ + + +

Help Pages

+ + +There are no help pages in this package + diff --git a/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/html/R.css b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/html/R.css new file mode 100644 index 000000000..f10f5ea66 --- /dev/null +++ b/packrat/lib/x86_64-pc-linux-gnu/3.6.3/globaltoolboxlite/html/R.css @@ -0,0 +1,97 @@ +body { + background: white; + color: black; +} + +a:link { + background: white; + color: blue; +} + +a:visited { + background: white; + color: rgb(50%, 0%, 50%); +} + +h1 { + background: white; + color: rgb(55%, 55%, 55%); + font-family: monospace; + font-size: x-large; + text-align: center; +} + +h2 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-size: large; + text-align: center; +} + +h3 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-size: large; +} + +h4 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-style: italic; + font-size: large; +} + +h5 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; +} + +h6 { + background: white; + color: rgb(40%, 40%, 40%); + font-family: monospace; + font-style: italic; +} + +img.toplogo { + width: 4em; + vertical-align: middle; +} + +img.arrow { + width: 30px; + height: 30px; + border: 0; +} + +span.acronym { + font-size: small; +} + +span.env { + font-family: monospace; +} + +span.file { + font-family: monospace; +} + +span.option{ + font-family: monospace; +} + +span.pkg { + font-weight: bold; +} + +span.samp{ + font-family: monospace; +} + +div.vignettes a:hover { + background: rgb(85%, 85%, 85%); +} diff --git a/packrat/packrat.lock b/packrat/packrat.lock new file mode 100644 index 000000000..4f46131e3 --- /dev/null +++ b/packrat/packrat.lock @@ -0,0 +1,1097 @@ +PackratFormat: 1.4 +PackratVersion: 0.5.0 +RVersion: 3.6.3 +Repos: CRAN=https://cloud.r-project.org + +Package: BH +Source: CRAN +Version: 1.72.0-3 +Hash: fc53be86f0b712d3de03fef95893d710 + +Package: DBI +Source: CRAN +Version: 1.1.0 +Hash: d1075050684753e939c45775617c8f38 + +Package: DT +Source: CRAN +Version: 0.13 +Hash: f49c91ed6b763523e21e9a830cb6a2ca +Requires: crosstalk, htmltools, htmlwidgets, jsonlite, magrittr, + promises + +Package: KernSmooth +Source: CRAN +Version: 2.23-17 +Hash: b5eebdad9fc125047885b61680fb2bd7 + +Package: MASS +Source: CRAN +Version: 7.3-51.6 +Hash: 47458df73ed4da338cb6389dd0e95bc1 + +Package: Matrix +Source: CRAN +Version: 1.2-18 +Hash: 54974505e2addac3ec63f9d4bf8ff98a +Requires: lattice + +Package: R6 +Source: CRAN +Version: 2.4.1 +Hash: b488861d8c3dfac497e041ec911df9fb + +Package: RColorBrewer +Source: CRAN +Version: 1.1-2 +Hash: c0d56cd15034f395874c870141870c25 + +Package: Rcpp +Source: CRAN +Version: 1.0.4.6 +Hash: 8b95553bc32a59321b8981aa02bfbf72 + +Package: XML +Source: CRAN +Version: 3.99-0.3 +Hash: 575c7de7d478a357a378bbf2ae7dc460 + +Package: abind +Source: CRAN +Version: 1.4-5 +Hash: 1ceb86ef5ebe776ed4753ab6165eb6d7 + +Package: arrayhelpers +Source: CRAN +Version: 1.1-0 +Hash: d61faa62c762d5e24e01dbfc78e36c88 +Requires: svUnit + +Package: arrow +Source: CRAN +Version: 0.17.0 +Hash: ff4f1def008664d5a65249b016bf1123 +Requires: R6, Rcpp, assertthat, bit64, purrr, rlang, tidyselect, vctrs + +Package: askpass +Source: CRAN +Version: 1.1 +Hash: 6f6c430e3cd0dd7d48f447700f4d7e7f +Requires: sys + +Package: assertthat +Source: CRAN +Version: 0.2.1 +Hash: 622be49032fe50bd42e96aaef613e209 + +Package: backports +Source: CRAN +Version: 1.1.6 +Hash: 9bcc452d2494e85b970cdcc2889932ff + +Package: base64enc +Source: CRAN +Version: 0.1-3 +Hash: c590d29e555926af053055e23ee79efb + +Package: bit +Source: CRAN +Version: 1.1-15.2 +Hash: 8d0ff944906d362413913f08f7a2d781 + +Package: bit64 +Source: CRAN +Version: 0.9-7 +Hash: 4b195615d19ba49c114eb04e09e30a96 +Requires: bit + +Package: blob +Source: CRAN +Version: 1.2.1 +Hash: de88fed092924767ccb739b695f35d2b +Requires: rlang, vctrs + +Package: brew +Source: CRAN +Version: 1.0-6 +Hash: 931f9972deae0f205e1c78a51f33149b + +Package: broom +Source: CRAN +Version: 0.5.6 +Hash: 837e20e17692b6d1cc0383e8cbbd1fc1 +Requires: backports, dplyr, generics, nlme, purrr, reshape2, stringr, + tibble, tidyr + +Package: callr +Source: CRAN +Version: 3.4.3 +Hash: e9b50bc56e655025fde6f2f4b65154de +Requires: R6, processx + +Package: cellranger +Source: CRAN +Version: 1.1.0 +Hash: be9d203e7849f73818b36f93e9273c2c +Requires: rematch, tibble + +Package: class +Source: CRAN +Version: 7.3-17 +Hash: 5f96f53bb272251d7f5cbb2b73a0aabc +Requires: MASS + +Package: classInt +Source: CRAN +Version: 0.4-3 +Hash: 40f1a7fc0254fffd9bf6e5ee046de859 +Requires: KernSmooth, class, e1071 + +Package: cli +Source: CRAN +Version: 2.0.2 +Hash: 6fc0b39f0fdbe3a025062807019e1180 +Requires: assertthat, crayon, fansi, glue + +Package: clipr +Source: CRAN +Version: 0.7.0 +Hash: 30cdec6c8cc62c80c485e6bdd0c02b05 + +Package: codetools +Source: CRAN +Version: 0.2-16 +Hash: eb51f6f32efbc11c76c48b9c4307f1b5 + +Package: colorspace +Source: CRAN +Version: 1.4-1 +Hash: 60a56e9998b8b58ee378db3dc91b27a5 + +Package: commonmark +Source: CRAN +Version: 1.7 +Hash: 77f4ba718e2bad1877ef26e48cf8fa43 + +Package: countrycode +Source: CRAN +Version: 1.1.2 +Hash: 6cc063b236e3bbc174a73959145488ef + +Package: covidImportation +Source: github +Version: 1.8 +Hash: 19ccb07938df6c97b7397e7a0493b818 +Requires: abind, arrayhelpers, countrycode, data.table, doParallel, + dplyr, fitdistrplus, geosphere, ggplot2, ggvoronoi, + globaltoolboxlite, gpclib, httr, igraph, lubridate, magrittr, + maptools, purrr, raster, readr, reshape2, rgdal, rlist, sf, tibble, + tidycensus, tidyr, tidyverse, truncnorm +GithubRepo: covidImportation +GithubUsername: HopkinsIDD +GithubRef: v1.8 +GithubSha1: 3cf2341907d23e1b19a3a3190dfca29b50d22218 + +Package: covidcommon +Source: source +Version: 0.0.1 +Hash: 3323a11403ed0f021bf879d247fefbea +Requires: purrr, yaml +SourcePath: /home/app/R/pkgs//covidcommon + +Package: covr +Source: CRAN +Version: 3.5.0 +Hash: 5596e67efe91c26ce9bf7813268990fe +Requires: crayon, digest, httr, jsonlite, rex, withr, yaml + +Package: cowplot +Source: CRAN +Version: 1.0.0 +Hash: 70e09cab441d1307901bb1f60cb61d8d +Requires: ggplot2, gtable, rlang, scales + +Package: crayon +Source: CRAN +Version: 1.3.4 +Hash: ff2840dd9b0d563fc80377a5a45510cd + +Package: crosstalk +Source: CRAN +Version: 1.1.0.1 +Hash: 0074e4967b2db46d003c5d23e4519306 +Requires: R6, htmltools, jsonlite, lazyeval + +Package: curl +Source: CRAN +Version: 4.3 +Hash: 3916ae5637dbaf5996dbde80ea92a047 + +Package: data.table +Source: CRAN +Version: 1.12.8 +Hash: 283ad0e503ab521300c6d1d02e58d2ae + +Package: dbplyr +Source: CRAN +Version: 1.4.3 +Hash: 92ccb2003fb6c8087b5b979b2ff00cdb +Requires: DBI, R6, assertthat, dplyr, glue, lifecycle, purrr, rlang, + tibble, tidyselect + +Package: deldir +Source: CRAN +Version: 0.1-25 +Hash: e4ce634ee727f361b26b93009cc49270 + +Package: desc +Source: CRAN +Version: 1.2.0 +Hash: a0a3ca939997679a52816bae4ed6aaae +Requires: R6, assertthat, crayon, rprojroot + +Package: devtools +Source: CRAN +Version: 2.3.0 +Hash: 0acd135c71b80a07d8e21f79ab4010c1 +Requires: DT, callr, cli, covr, crayon, desc, digest, ellipsis, git2r, + glue, httr, jsonlite, memoise, pkgbuild, pkgload, rcmdcheck, + remotes, rlang, roxygen2, rstudioapi, rversions, sessioninfo, + testthat, usethis, withr + +Package: digest +Source: CRAN +Version: 0.6.25 +Hash: ec0a673866797c8c1fc1daa359fb4cad + +Package: doParallel +Source: CRAN +Version: 1.0.15 +Hash: 2d8e07c1201447e22a46552ed6664f08 +Requires: foreach, iterators + +Package: dplyr +Source: CRAN +Version: 0.8.5 +Hash: ab9ffae1e3d7f8fbd2541a4795097977 +Requires: BH, R6, Rcpp, assertthat, ellipsis, glue, magrittr, + pkgconfig, plogr, rlang, tibble, tidyselect + +Package: e1071 +Source: CRAN +Version: 1.7-3 +Hash: f851e9de06edec144aa7d996bbf32538 +Requires: class + +Package: ellipsis +Source: CRAN +Version: 0.3.0 +Hash: 30b58109e4d7c6184a9c2e32f9ae38c6 +Requires: rlang + +Package: evaluate +Source: CRAN +Version: 0.14 +Hash: 18306cc3bc1aec7b7360eea8a0eb0ee1 + +Package: fansi +Source: CRAN +Version: 0.4.1 +Hash: fc0a252b8e427847d13e89f56ab4665e + +Package: farver +Source: CRAN +Version: 2.0.3 +Hash: 29a358c21cb8de2e424cbec6b6be6553 + +Package: fitdistrplus +Source: CRAN +Version: 1.0-14 +Hash: 50af133014490e67e497bd3de83de27c +Requires: MASS, npsurv, survival + +Package: flextable +Source: CRAN +Version: 0.5.9 +Hash: 662a279b33280eeaa1798b3856e4e9e5 +Requires: base64enc, data.table, gdtools, htmltools, knitr, officer, + rlang, rmarkdown, xml2 + +Package: forcats +Source: CRAN +Version: 0.5.0 +Hash: 6b130778caccc8e4e6cf498c76c84e7b +Requires: ellipsis, magrittr, rlang, tibble + +Package: foreach +Source: CRAN +Version: 1.5.0 +Hash: c9c60cdc198186eeed64f51afc9ae14a +Requires: codetools, iterators + +Package: foreign +Source: CRAN +Version: 0.8-69 +Hash: 6cb09ceba757189aff90eb9bb72c8983 + +Package: fs +Source: CRAN +Version: 1.4.1 +Hash: 6fc750e04d9d781e83d38c2f12958c80 + +Package: gdtools +Source: CRAN +Version: 0.2.2 +Hash: e21b8373019ce09d786b049d3ae8695e +Requires: Rcpp, systemfonts + +Package: generics +Source: CRAN +Version: 0.0.2 +Hash: 4aaf002dd434e8c854611c5d11a1d58e + +Package: geosphere +Source: CRAN +Version: 1.5-10 +Hash: 7862d67ff53e4140d9b1945719deca54 +Requires: sp + +Package: getopt +Source: CRAN +Version: 1.20.3 +Hash: ab38d3f237d72215f5850c142293303c + +Package: ggfortify +Source: CRAN +Version: 0.4.10 +Hash: 752a966247acae62d3cf7ea3f9b8dada +Requires: dplyr, ggplot2, gridExtra, scales, stringr, tibble, tidyr + +Package: ggplot2 +Source: CRAN +Version: 3.3.0 +Hash: 0c4c6d28acdded392fce8d3d65f088de +Requires: MASS, digest, glue, gtable, isoband, mgcv, rlang, scales, + tibble, withr + +Package: ggpubr +Source: CRAN +Version: 0.2.5 +Hash: d9b4c2f209b2de1eba7a6a71afd48cec +Requires: cowplot, dplyr, ggplot2, ggrepel, ggsci, ggsignif, glue, + gridExtra, magrittr, polynom, purrr, rlang, scales, tidyr + +Package: ggrepel +Source: CRAN +Version: 0.8.2 +Hash: b240026d0e6cbcb8c8c9078514401c25 +Requires: Rcpp, ggplot2, scales + +Package: ggsci +Source: CRAN +Version: 2.9 +Hash: d8f7c2bc9631710ee2008fa5b5ff2c80 +Requires: ggplot2, scales + +Package: ggsignif +Source: CRAN +Version: 0.6.0 +Hash: 6315f8e2744f4398657b170d2c2ee123 +Requires: ggplot2 + +Package: ggvoronoi +Source: CRAN +Version: 0.8.3 +Hash: 31faf71585ac7f67a8003f0bcc9c561b +Requires: deldir, ggplot2, raster, rgeos, sp + +Package: gh +Source: CRAN +Version: 1.1.0 +Hash: efbe85b24e36b328003fd33772a8931b +Requires: cli, httr, ini, jsonlite + +Package: git2r +Source: CRAN +Version: 0.26.1 +Hash: 744a0a12d9f4ac186b222f6795fab4fe + +Package: globaltoolboxlite +Source: github +Version: 0.0.0.9000 +Hash: 471f116c0a354436b3e1c6cfb3ce5bc2 +Requires: countrycode, dplyr, glue, lubridate, reshape2, rlang, + stringdist, stringr, tibble, tidyr +GithubRepo: globaltoolboxlite +GithubUsername: HopkinsIDD +GithubRef: master +GithubSha1: bdc856e7aec629d2960b2b72618d9e0b49a5898e +RemoteHost: api.github.com +RemoteRepo: globaltoolboxlite +RemoteUsername: HopkinsIDD +RemoteRef: master +RemoteSha: bdc856e7aec629d2960b2b72618d9e0b49a5898e + +Package: glue +Source: CRAN +Version: 1.4.0 +Hash: 21e4ea62a77239a9fc736d5b01338163 + +Package: gpclib +Source: CRAN +Version: 1.5-6 +Hash: 158bcf2fcf58a286580c3a025c124573 + +Package: gridExtra +Source: CRAN +Version: 2.3 +Hash: fa977bc1aab5588a08123b10ceb1ad3d +Requires: gtable + +Package: gtable +Source: CRAN +Version: 0.3.0 +Hash: a9e7b0666eb933a0cb36779240b4462e + +Package: haven +Source: CRAN +Version: 2.2.0 +Hash: 7d1e485a3083e66f7812f417dfa4c5c5 +Requires: Rcpp, forcats, hms, readr, rlang, tibble, tidyselect + +Package: highr +Source: CRAN +Version: 0.8 +Hash: 16aa2cc98d7b68c9d148c263c8dcdbcd + +Package: hms +Source: CRAN +Version: 0.5.3 +Hash: a0709e1b17b4bc1c27f5235177543e07 +Requires: pkgconfig, rlang, vctrs + +Package: hospitalization +Source: source +Version: 0.0.1 +Hash: 5e28fda73402d6283ec2507e9079c305 +Requires: data.table, doParallel, dplyr, flextable, foreach, ggfortify, + ggplot2, gridExtra, knitr, magrittr, readr, tidyr +SourcePath: /home/app/R/pkgs//hospitalization + +Package: htmltools +Source: CRAN +Version: 0.4.0 +Hash: 140efd8a56fc8404e81f7ac44731ce47 +Requires: Rcpp, digest, rlang + +Package: htmlwidgets +Source: CRAN +Version: 1.5.1 +Hash: 20e5cc02b795afc7322836c947b5aab2 +Requires: htmltools, jsonlite, yaml + +Package: httr +Source: CRAN +Version: 1.4.1 +Hash: cc16de93eaabd3c6d0785cb8e6d059ab +Requires: R6, curl, jsonlite, mime, openssl + +Package: igraph +Source: CRAN +Version: 1.2.5 +Hash: 56cd6b00fa9864975f6678b4d1a46b50 +Requires: Matrix, magrittr, pkgconfig + +Package: ini +Source: CRAN +Version: 0.3.1 +Hash: 9d6de5178c1cedabfb24e7d2acc9a092 + +Package: isoband +Source: CRAN +Version: 0.2.1 +Hash: d2c6d55af5a6470b2edef34d03d53068 +Requires: Rcpp, testthat + +Package: iterators +Source: CRAN +Version: 1.0.12 +Hash: f0b9003c5ffc99a96b9f21079c1715a5 + +Package: jsonlite +Source: CRAN +Version: 1.6.1 +Hash: bfde5e6072ca0f5226f49e457a9ba62d + +Package: knitr +Source: CRAN +Version: 1.28 +Hash: 408899ff6416ccf790182c95c8fa9c81 +Requires: evaluate, highr, markdown, stringr, xfun, yaml + +Package: labeling +Source: CRAN +Version: 0.3 +Hash: ecf589b42cd284b03a4beb9665482d3e + +Package: later +Source: CRAN +Version: 1.0.0 +Hash: 074cadbb9efd565454f7df6a2a56a672 +Requires: BH, Rcpp, rlang + +Package: lattice +Source: CRAN +Version: 0.20-41 +Hash: ff87ada677a6e2aacdcc1f9412f68366 + +Package: lazyeval +Source: CRAN +Version: 0.2.2 +Hash: 563563691bea3cde6945a98996d7c166 + +Package: lifecycle +Source: CRAN +Version: 0.2.0 +Hash: df8649860c43571aab68cc73a2a02807 +Requires: glue, rlang + +Package: lsei +Source: CRAN +Version: 1.2-0 +Hash: 303d9dbdd849f132d0b758533a320ecb + +Package: lubridate +Source: CRAN +Version: 1.7.8 +Hash: ffe401bdcb9ccaea3d41a08f482a3aad +Requires: Rcpp, generics + +Package: magrittr +Source: CRAN +Version: 1.5 +Hash: bdc4d48c3135e8f3b399536ddf160df4 + +Package: maptools +Source: CRAN +Version: 0.9-9 +Hash: ae27d1ebba1461b3a70051f77e41b767 +Requires: foreign, lattice, sp + +Package: markdown +Source: CRAN +Version: 1.1 +Hash: 1b6a18fd395589425e338a47b999099f +Requires: mime, xfun + +Package: memoise +Source: CRAN +Version: 1.1.0 +Hash: 410fcd334bc626db100237cc1370f2e9 +Requires: digest + +Package: mgcv +Source: CRAN +Version: 1.8-31 +Hash: d3857a1a1e5f3586c3db8d0dbe4cc528 +Requires: Matrix, nlme + +Package: mime +Source: CRAN +Version: 0.9 +Hash: f3388735b4ddea072aff3be44f7f4968 + +Package: modelr +Source: CRAN +Version: 0.1.6 +Hash: c3a21c2516969374e8d88846d9fbe065 +Requires: broom, dplyr, magrittr, purrr, rlang, tibble, tidyr, + tidyselect + +Package: munsell +Source: CRAN +Version: 0.5.0 +Hash: 38d0efee9bb99bef143bde41c4ce715c +Requires: colorspace + +Package: nlme +Source: CRAN +Version: 3.1-147 +Hash: b57b31ff0dc8d5e0917ee9cd05254f6f +Requires: lattice + +Package: nnls +Source: CRAN +Version: 1.4 +Hash: 695ccebac38ab305cf6aca7048433f0d + +Package: npsurv +Source: CRAN +Version: 0.4-0 +Hash: 77b7bda41e5847df3e8c2ac5161e063a +Requires: lsei + +Package: officer +Source: CRAN +Version: 0.3.8 +Hash: 64a510b43a88654b9d730afa85fd8539 +Requires: R6, magrittr, uuid, xml2, zip + +Package: openssl +Source: CRAN +Version: 1.4.1 +Hash: b01fe6ae05ec2a30a777dc338af5bf69 +Requires: askpass + +Package: optparse +Source: CRAN +Version: 1.6.6 +Hash: 730b4998cda7b49c60f1eb02945049d1 +Requires: getopt + +Package: packrat +Source: CRAN +Version: 0.5.0 +Hash: 498643e765d1442ba7b1160a1df3abf9 + +Package: pillar +Source: CRAN +Version: 1.4.3 +Hash: 64ebcd61a33f2bd9059ffa8a323fd620 +Requires: cli, crayon, fansi, rlang, utf8, vctrs + +Package: pkgbuild +Source: CRAN +Version: 1.0.7 +Hash: 159cdcc8111d397fdefd30ce0269646d +Requires: R6, callr, cli, crayon, desc, prettyunits, rprojroot, withr + +Package: pkgconfig +Source: CRAN +Version: 2.0.3 +Hash: 5ff5f2361851a49534c96caa2a8071c7 + +Package: pkgload +Source: CRAN +Version: 1.0.2 +Hash: 41eb2db35be61f6f9e8864cf87a1ecb0 +Requires: desc, pkgbuild, rlang, rprojroot, rstudioapi, withr + +Package: plogr +Source: CRAN +Version: 0.2.0 +Hash: 81a8008a5e7858552503935f1abe48aa + +Package: plyr +Source: CRAN +Version: 1.8.6 +Hash: 0c83f38e28923acc988df91f1837f634 +Requires: Rcpp + +Package: polynom +Source: CRAN +Version: 1.4-0 +Hash: 4d98429f2c0567c6860e965f03be322f + +Package: praise +Source: CRAN +Version: 1.0.0 +Hash: 77da8f1df873a4b91e5c4a68fe2fb1b6 + +Package: prettyunits +Source: CRAN +Version: 1.1.1 +Hash: 20669cd8bb8b3207f6371edf8cf510af + +Package: processx +Source: CRAN +Version: 3.4.2 +Hash: e1671b1ca2f6c66f29ffb2828e98dc02 +Requires: R6, ps + +Package: progress +Source: CRAN +Version: 1.2.2 +Hash: 209280eb751acf5899f7c69366e14bd3 +Requires: R6, crayon, hms, prettyunits + +Package: promises +Source: CRAN +Version: 1.1.0 +Hash: 3aad74d60d080359e7947b795cf53cf0 +Requires: R6, Rcpp, later, magrittr, rlang + +Package: ps +Source: CRAN +Version: 1.3.2 +Hash: 6e8ed574a4550ce4f72cdafa9227152b + +Package: purrr +Source: CRAN +Version: 0.3.4 +Hash: fb4c0edca61826ca0b5b33c828a7b276 +Requires: magrittr, rlang + +Package: rappdirs +Source: CRAN +Version: 0.3.1 +Hash: 7340cfebc77ad7b107a549a8635e64dd + +Package: raster +Source: CRAN +Version: 3.1-5 +Hash: c9177588d4c7774f516dd531fcebe1c2 +Requires: Rcpp, sp + +Package: rcmdcheck +Source: CRAN +Version: 1.3.3 +Hash: df2319559a8ed16e5b4d5f99de3e00a0 +Requires: R6, callr, cli, crayon, desc, digest, pkgbuild, prettyunits, + rprojroot, sessioninfo, withr, xopen + +Package: readr +Source: CRAN +Version: 1.3.1 +Hash: 9265e661634ee2d5c89d93d5551fbc58 +Requires: BH, R6, Rcpp, clipr, crayon, hms, tibble + +Package: readxl +Source: CRAN +Version: 1.3.1 +Hash: ea27b2cd7e0e03266f819c5731d70333 +Requires: Rcpp, cellranger, progress, tibble + +Package: rematch +Source: CRAN +Version: 1.0.1 +Hash: ad4faf59e7611117ff165817074c50c7 + +Package: rematch2 +Source: CRAN +Version: 2.1.1 +Hash: f4d61e2bb5c877b265db263ae07e2b81 +Requires: tibble + +Package: remotes +Source: CRAN +Version: 2.1.1 +Hash: f579422000bd71d35602184ad3e2c641 + +Package: report.generation +Source: source +Version: 0.0.1 +Hash: 165fc151c5735ca5f6a6608e528039da +Requires: knitr, tidyverse +SourcePath: /home/app/R/pkgs//report.generation + +Package: reprex +Source: CRAN +Version: 0.3.0 +Hash: 2029355cb70894267c2c7557c79307fd +Requires: callr, clipr, fs, rlang, rmarkdown, whisker, withr + +Package: reshape2 +Source: CRAN +Version: 1.4.4 +Hash: 18ecb14c203e2963654dbc1b50f14030 +Requires: Rcpp, plyr, stringr + +Package: reticulate +Source: CRAN +Version: 1.5 +Hash: 765980609226e42bc8a0b98d24f14b24 +Requires: Rcpp, jsonlite + +Package: rex +Source: CRAN +Version: 1.2.0 +Hash: fbe6181b1986267f68cf4d1a83e63fa6 +Requires: lazyeval + +Package: rgdal +Source: CRAN +Version: 1.4-8 +Hash: bff6f6bbb137f645fd789f7eab0f05b9 +Requires: sp + +Package: rgeos +Source: CRAN +Version: 0.5-2 +Hash: ff86e9c11dddc897f8953704a9fef7f4 +Requires: sp + +Package: rlang +Source: CRAN +Version: 0.4.5 +Hash: 99d62d0aaf54a9938784f4485efa9933 + +Package: rlist +Source: CRAN +Version: 0.4.6.1 +Hash: 4900e17a86fa510778fd99079c905d5d +Requires: XML, data.table, jsonlite, yaml + +Package: rmarkdown +Source: CRAN +Version: 2.1 +Hash: 8693e30146ce847a75c5eeff9a42b0d9 +Requires: base64enc, evaluate, htmltools, jsonlite, knitr, mime, + stringr, tinytex, xfun, yaml + +Package: roxygen2 +Source: CRAN +Version: 7.1.0 +Hash: 045f2c84a9128647eff3318c1dd72580 +Requires: R6, Rcpp, brew, commonmark, desc, digest, knitr, pkgload, + purrr, rlang, stringi, stringr, xml2 + +Package: rprojroot +Source: CRAN +Version: 1.3-2 +Hash: a25c3f70c166fb3fbabc410eb32b6366 +Requires: backports + +Package: rstudioapi +Source: CRAN +Version: 0.11 +Hash: f8674fe40760ccfc1bf3e92da4c9f4d0 + +Package: rversions +Source: CRAN +Version: 2.0.1 +Hash: d2080f9ec93e7b4e3729c195ef1f9908 +Requires: curl, xml2 + +Package: rvest +Source: CRAN +Version: 0.3.5 +Hash: 76dc42671d747a857ea344bc56cd5b51 +Requires: httr, magrittr, selectr, xml2 + +Package: scales +Source: CRAN +Version: 1.1.0 +Hash: fa53af4e3ceba05fc79a31bde5962445 +Requires: R6, RColorBrewer, farver, labeling, lifecycle, munsell, + viridisLite + +Package: selectr +Source: CRAN +Version: 0.4-2 +Hash: b915e37654e476cbad2ceb063a2b8edb +Requires: R6, stringr + +Package: sessioninfo +Source: CRAN +Version: 1.1.1 +Hash: 9e50c8458e611f166ba702277cbb5096 +Requires: cli, withr + +Package: sf +Source: CRAN +Version: 0.9-2 +Hash: 51f6e222d5e8c331e37b512e80e5062d +Requires: DBI, Rcpp, classInt, magrittr, units + +Package: sp +Source: CRAN +Version: 1.4-1 +Hash: 26c48e048f5c25f602069fea2e8b70c5 +Requires: lattice + +Package: splines2 +Source: CRAN +Version: 0.2.8 +Hash: 768625ca6fbbd008fa1a5bbac70bc5be + +Package: stringdist +Source: CRAN +Version: 0.9.5.5 +Hash: 77f97dc936679c242382828193ffbb0a + +Package: stringi +Source: CRAN +Version: 1.4.6 +Hash: 076b0f115b37ca6d551ccff96b91114e + +Package: stringr +Source: CRAN +Version: 1.4.0 +Hash: 67da32dbb2a7a16f2ef124336358e54a +Requires: glue, magrittr, stringi + +Package: survival +Source: CRAN +Version: 3.1-12 +Hash: 80402302438ca37d889c88a475901c3d +Requires: Matrix + +Package: svUnit +Source: CRAN +Version: 1.0.3 +Hash: f8a2404a4e04b6799b3233cbcfa66cc0 + +Package: sys +Source: CRAN +Version: 3.3 +Hash: d5a4afad9298f42aae77f6389713a066 + +Package: systemfonts +Source: CRAN +Version: 0.2.0 +Hash: 1eb1b08cb3da12820ca600079d7d2440 + +Package: testthat +Source: CRAN +Version: 2.3.2 +Hash: 5a3a20ddc31b2aa228dab6d29bd43948 +Requires: R6, cli, crayon, digest, ellipsis, evaluate, magrittr, + pkgload, praise, rlang, withr + +Package: tibble +Source: CRAN +Version: 3.0.1 +Hash: 00d3817b8530e9ce9b465aeef293a011 +Requires: cli, crayon, ellipsis, fansi, lifecycle, magrittr, pillar, + pkgconfig, rlang, vctrs + +Package: tictoc +Source: CRAN +Version: 1.0 +Hash: 0379257b730eed5b9089765c2921a098 + +Package: tidycensus +Source: CRAN +Version: 0.9.9.2 +Hash: cce679660915fa18e69fdf716464bc01 +Requires: dplyr, httr, jsonlite, purrr, rappdirs, readr, rvest, sf, + stringr, tidyr, tigris, units, xml2 + +Package: tidyr +Source: CRAN +Version: 1.0.2 +Hash: 7183ff9a4d4c4680bd1e6f79086c6405 +Requires: Rcpp, dplyr, ellipsis, glue, lifecycle, magrittr, purrr, + rlang, stringi, tibble, tidyselect, vctrs + +Package: tidyselect +Source: CRAN +Version: 1.0.0 +Hash: 0ba21f624978533adf670338aa3f86b4 +Requires: ellipsis, glue, purrr, rlang, vctrs + +Package: tidyverse +Source: CRAN +Version: 1.3.0 +Hash: b909ba2b6349072c6376f95a816fe932 +Requires: broom, cli, crayon, dbplyr, dplyr, forcats, ggplot2, haven, + hms, httr, jsonlite, lubridate, magrittr, modelr, pillar, purrr, + readr, readxl, reprex, rlang, rstudioapi, rvest, stringr, tibble, + tidyr, xml2 + +Package: tigris +Source: CRAN +Version: 0.9.4 +Hash: a043b56a26a8a3aa6a18fe0f1d331df7 +Requires: dplyr, httr, magrittr, maptools, rappdirs, rgdal, sf, sp, + stringr, uuid + +Package: tinytex +Source: CRAN +Version: 0.22 +Hash: 3caad813c309bf230229b9025ac0a28e +Requires: xfun + +Package: truncnorm +Source: CRAN +Version: 1.0-8 +Hash: a5534b63255de05674140b3fc8c0e895 + +Package: units +Source: CRAN +Version: 0.6-6 +Hash: 41f3cf9c3dfe4e13eec0043117ffa4af +Requires: Rcpp + +Package: usethis +Source: CRAN +Version: 1.6.0 +Hash: ab1709a13f66bd7287be1f388bf54171 +Requires: cli, clipr, crayon, curl, desc, fs, gh, git2r, glue, purrr, + rematch2, rlang, rprojroot, rstudioapi, whisker, withr, yaml + +Package: utf8 +Source: CRAN +Version: 1.1.4 +Hash: f3f97ce59092abc8ed3fd098a59e236c + +Package: uuid +Source: CRAN +Version: 0.1-4 +Hash: b0fcab4d6aa43d97cf09e336b65b906f + +Package: vctrs +Source: CRAN +Version: 0.2.4 +Hash: e06451edcd80df3a07b71fe7f5d10739 +Requires: digest, ellipsis, glue, rlang + +Package: viridis +Source: CRAN +Version: 0.5.1 +Hash: 39edaec2078b4fc928afb73cc1ce6625 +Requires: ggplot2, gridExtra, viridisLite + +Package: viridisLite +Source: CRAN +Version: 0.3.0 +Hash: 78bb072c4f9e729a283d4c40ec93f9c6 + +Package: whisker +Source: CRAN +Version: 0.4 +Hash: 5b1ec05cd96c1e0c6048bab49abee3aa + +Package: withr +Source: CRAN +Version: 2.2.0 +Hash: 709a3da4deef928ab299f4ff52caf66b + +Package: xfun +Source: CRAN +Version: 0.13 +Hash: 27ad2c3d9cc614cfb92e1bb51b62f5f6 + +Package: xml2 +Source: CRAN +Version: 1.3.2 +Hash: edbf29fd0ba88bfabf6b6a4c4db0982b + +Package: xopen +Source: CRAN +Version: 1.0.0 +Hash: 22c2708f177f9fd9f8a52012bac61d6a +Requires: processx + +Package: xts +Source: CRAN +Version: 0.12-0 +Hash: 44a97ea0592b91a5ba6851df01f5bb9f +Requires: zoo + +Package: yaml +Source: CRAN +Version: 2.2.1 +Hash: 424bc11cc358f23187feaa7978628196 + +Package: zip +Source: CRAN +Version: 2.0.4 +Hash: f86b0ae5776b2e3880871fb0e34e5e48 + +Package: zoo +Source: CRAN +Version: 1.8-7 +Hash: d333d9408647b5fc153dc5817b3ad0fe +Requires: lattice diff --git a/packrat/packrat.opts b/packrat/packrat.opts new file mode 100644 index 000000000..53d68e33a --- /dev/null +++ b/packrat/packrat.opts @@ -0,0 +1,19 @@ +auto.snapshot: FALSE +use.cache: FALSE +print.banner.on.startup: auto +vcs.ignore.lib: TRUE +vcs.ignore.src: FALSE +external.packages: +local.repos: /home/app/R/pkgs/ +load.external.packages.on.startup: TRUE +ignored.packages: +ignored.directories: + data + inst +quiet.package.installation: TRUE +snapshot.recommended.packages: FALSE +snapshot.fields: + Imports + Depends + LinkingTo +symlink.system.packages: TRUE diff --git a/packrat/src/BH/BH_1.72.0-3.tar.gz b/packrat/src/BH/BH_1.72.0-3.tar.gz new file mode 100644 index 000000000..8e564e9b1 Binary files /dev/null and b/packrat/src/BH/BH_1.72.0-3.tar.gz differ diff --git a/packrat/src/DBI/DBI_1.1.0.tar.gz b/packrat/src/DBI/DBI_1.1.0.tar.gz new file mode 100644 index 000000000..645eb914e Binary files /dev/null and b/packrat/src/DBI/DBI_1.1.0.tar.gz differ diff --git a/packrat/src/DT/DT_0.13.tar.gz b/packrat/src/DT/DT_0.13.tar.gz new file mode 100644 index 000000000..4a8d79347 Binary files /dev/null and b/packrat/src/DT/DT_0.13.tar.gz differ diff --git a/packrat/src/KernSmooth/KernSmooth_2.23-17.tar.gz b/packrat/src/KernSmooth/KernSmooth_2.23-17.tar.gz new file mode 100644 index 000000000..c683ddacc Binary files /dev/null and b/packrat/src/KernSmooth/KernSmooth_2.23-17.tar.gz differ diff --git a/packrat/src/MASS/MASS_7.3-51.6.tar.gz b/packrat/src/MASS/MASS_7.3-51.6.tar.gz new file mode 100644 index 000000000..8cfdcb71b Binary files /dev/null and b/packrat/src/MASS/MASS_7.3-51.6.tar.gz differ diff --git a/packrat/src/Matrix/Matrix_1.2-18.tar.gz b/packrat/src/Matrix/Matrix_1.2-18.tar.gz new file mode 100644 index 000000000..9b6fd1ace Binary files /dev/null and b/packrat/src/Matrix/Matrix_1.2-18.tar.gz differ diff --git a/packrat/src/R6/R6_2.4.1.tar.gz b/packrat/src/R6/R6_2.4.1.tar.gz new file mode 100644 index 000000000..0fc5bbf0f Binary files /dev/null and b/packrat/src/R6/R6_2.4.1.tar.gz differ diff --git a/packrat/src/RColorBrewer/RColorBrewer_1.1-2.tar.gz b/packrat/src/RColorBrewer/RColorBrewer_1.1-2.tar.gz new file mode 100644 index 000000000..ef04e6b81 Binary files /dev/null and b/packrat/src/RColorBrewer/RColorBrewer_1.1-2.tar.gz differ diff --git a/packrat/src/Rcpp/Rcpp_1.0.4.6.tar.gz b/packrat/src/Rcpp/Rcpp_1.0.4.6.tar.gz new file mode 100644 index 000000000..7f9731c04 Binary files /dev/null and b/packrat/src/Rcpp/Rcpp_1.0.4.6.tar.gz differ diff --git a/packrat/src/XML/XML_3.99-0.3.tar.gz b/packrat/src/XML/XML_3.99-0.3.tar.gz new file mode 100644 index 000000000..48426e0de Binary files /dev/null and b/packrat/src/XML/XML_3.99-0.3.tar.gz differ diff --git a/packrat/src/abind/abind_1.4-5.tar.gz b/packrat/src/abind/abind_1.4-5.tar.gz new file mode 100644 index 000000000..3df0e9235 Binary files /dev/null and b/packrat/src/abind/abind_1.4-5.tar.gz differ diff --git a/packrat/src/arrayhelpers/arrayhelpers_1.1-0.tar.gz b/packrat/src/arrayhelpers/arrayhelpers_1.1-0.tar.gz new file mode 100644 index 000000000..6e1318abf Binary files /dev/null and b/packrat/src/arrayhelpers/arrayhelpers_1.1-0.tar.gz differ diff --git a/packrat/src/arrow/arrow_0.17.0.tar.gz b/packrat/src/arrow/arrow_0.17.0.tar.gz new file mode 100644 index 000000000..9d49b672a Binary files /dev/null and b/packrat/src/arrow/arrow_0.17.0.tar.gz differ diff --git a/packrat/src/askpass/askpass_1.1.tar.gz b/packrat/src/askpass/askpass_1.1.tar.gz new file mode 100644 index 000000000..d8cc7434f Binary files /dev/null and b/packrat/src/askpass/askpass_1.1.tar.gz differ diff --git a/packrat/src/assertthat/assertthat_0.2.1.tar.gz b/packrat/src/assertthat/assertthat_0.2.1.tar.gz new file mode 100644 index 000000000..d57c68516 Binary files /dev/null and b/packrat/src/assertthat/assertthat_0.2.1.tar.gz differ diff --git a/packrat/src/backports/backports_1.1.6.tar.gz b/packrat/src/backports/backports_1.1.6.tar.gz new file mode 100644 index 000000000..2950570d5 Binary files /dev/null and b/packrat/src/backports/backports_1.1.6.tar.gz differ diff --git a/packrat/src/base64enc/base64enc_0.1-3.tar.gz b/packrat/src/base64enc/base64enc_0.1-3.tar.gz new file mode 100644 index 000000000..07c27825f Binary files /dev/null and b/packrat/src/base64enc/base64enc_0.1-3.tar.gz differ diff --git a/packrat/src/bit/bit_1.1-15.2.tar.gz b/packrat/src/bit/bit_1.1-15.2.tar.gz new file mode 100644 index 000000000..60b430c4e Binary files /dev/null and b/packrat/src/bit/bit_1.1-15.2.tar.gz differ diff --git a/packrat/src/bit64/bit64_0.9-7.tar.gz b/packrat/src/bit64/bit64_0.9-7.tar.gz new file mode 100644 index 000000000..031bcfc16 Binary files /dev/null and b/packrat/src/bit64/bit64_0.9-7.tar.gz differ diff --git a/packrat/src/blob/blob_1.2.1.tar.gz b/packrat/src/blob/blob_1.2.1.tar.gz new file mode 100644 index 000000000..d9a83bd6e Binary files /dev/null and b/packrat/src/blob/blob_1.2.1.tar.gz differ diff --git a/packrat/src/brew/brew_1.0-6.tar.gz b/packrat/src/brew/brew_1.0-6.tar.gz new file mode 100644 index 000000000..e3c959895 Binary files /dev/null and b/packrat/src/brew/brew_1.0-6.tar.gz differ diff --git a/packrat/src/broom/broom_0.5.6.tar.gz b/packrat/src/broom/broom_0.5.6.tar.gz new file mode 100644 index 000000000..678e2cb96 Binary files /dev/null and b/packrat/src/broom/broom_0.5.6.tar.gz differ diff --git a/packrat/src/callr/callr_3.4.3.tar.gz b/packrat/src/callr/callr_3.4.3.tar.gz new file mode 100644 index 000000000..4f958d660 Binary files /dev/null and b/packrat/src/callr/callr_3.4.3.tar.gz differ diff --git a/packrat/src/cellranger/cellranger_1.1.0.tar.gz b/packrat/src/cellranger/cellranger_1.1.0.tar.gz new file mode 100644 index 000000000..32d4f6631 Binary files /dev/null and b/packrat/src/cellranger/cellranger_1.1.0.tar.gz differ diff --git a/packrat/src/class/class_7.3-17.tar.gz b/packrat/src/class/class_7.3-17.tar.gz new file mode 100644 index 000000000..d0f4c90f8 Binary files /dev/null and b/packrat/src/class/class_7.3-17.tar.gz differ diff --git a/packrat/src/classInt/classInt_0.4-3.tar.gz b/packrat/src/classInt/classInt_0.4-3.tar.gz new file mode 100644 index 000000000..6d0c99945 Binary files /dev/null and b/packrat/src/classInt/classInt_0.4-3.tar.gz differ diff --git a/packrat/src/cli/cli_2.0.2.tar.gz b/packrat/src/cli/cli_2.0.2.tar.gz new file mode 100644 index 000000000..c74bbe988 Binary files /dev/null and b/packrat/src/cli/cli_2.0.2.tar.gz differ diff --git a/packrat/src/clipr/clipr_0.7.0.tar.gz b/packrat/src/clipr/clipr_0.7.0.tar.gz new file mode 100644 index 000000000..b11b545ad Binary files /dev/null and b/packrat/src/clipr/clipr_0.7.0.tar.gz differ diff --git a/packrat/src/codetools/codetools_0.2-16.tar.gz b/packrat/src/codetools/codetools_0.2-16.tar.gz new file mode 100644 index 000000000..c2d622f8b Binary files /dev/null and b/packrat/src/codetools/codetools_0.2-16.tar.gz differ diff --git a/packrat/src/colorspace/colorspace_1.4-1.tar.gz b/packrat/src/colorspace/colorspace_1.4-1.tar.gz new file mode 100644 index 000000000..3bb502212 Binary files /dev/null and b/packrat/src/colorspace/colorspace_1.4-1.tar.gz differ diff --git a/packrat/src/commonmark/commonmark_1.7.tar.gz b/packrat/src/commonmark/commonmark_1.7.tar.gz new file mode 100644 index 000000000..2d46b315e Binary files /dev/null and b/packrat/src/commonmark/commonmark_1.7.tar.gz differ diff --git a/packrat/src/countrycode/countrycode_1.1.2.tar.gz b/packrat/src/countrycode/countrycode_1.1.2.tar.gz new file mode 100644 index 000000000..04ae7ed6c Binary files /dev/null and b/packrat/src/countrycode/countrycode_1.1.2.tar.gz differ diff --git a/packrat/src/covidImportation/3cf2341907d23e1b19a3a3190dfca29b50d22218.tar.gz b/packrat/src/covidImportation/3cf2341907d23e1b19a3a3190dfca29b50d22218.tar.gz new file mode 100644 index 000000000..e837a2661 Binary files /dev/null and b/packrat/src/covidImportation/3cf2341907d23e1b19a3a3190dfca29b50d22218.tar.gz differ diff --git a/packrat/src/covidcommon/covidcommon_0.0.1.tar.gz b/packrat/src/covidcommon/covidcommon_0.0.1.tar.gz new file mode 100644 index 000000000..de29cefd8 Binary files /dev/null and b/packrat/src/covidcommon/covidcommon_0.0.1.tar.gz differ diff --git a/packrat/src/covr/covr_3.5.0.tar.gz b/packrat/src/covr/covr_3.5.0.tar.gz new file mode 100644 index 000000000..2bb241568 Binary files /dev/null and b/packrat/src/covr/covr_3.5.0.tar.gz differ diff --git a/packrat/src/cowplot/cowplot_1.0.0.tar.gz b/packrat/src/cowplot/cowplot_1.0.0.tar.gz new file mode 100644 index 000000000..387c7b901 Binary files /dev/null and b/packrat/src/cowplot/cowplot_1.0.0.tar.gz differ diff --git a/packrat/src/crayon/crayon_1.3.4.tar.gz b/packrat/src/crayon/crayon_1.3.4.tar.gz new file mode 100644 index 000000000..38f52226f Binary files /dev/null and b/packrat/src/crayon/crayon_1.3.4.tar.gz differ diff --git a/packrat/src/crosstalk/crosstalk_1.1.0.1.tar.gz b/packrat/src/crosstalk/crosstalk_1.1.0.1.tar.gz new file mode 100644 index 000000000..1c8722c75 Binary files /dev/null and b/packrat/src/crosstalk/crosstalk_1.1.0.1.tar.gz differ diff --git a/packrat/src/curl/curl_4.3.tar.gz b/packrat/src/curl/curl_4.3.tar.gz new file mode 100644 index 000000000..55bc253f1 Binary files /dev/null and b/packrat/src/curl/curl_4.3.tar.gz differ diff --git a/packrat/src/data.table/data.table_1.12.8.tar.gz b/packrat/src/data.table/data.table_1.12.8.tar.gz new file mode 100644 index 000000000..c22ad5402 Binary files /dev/null and b/packrat/src/data.table/data.table_1.12.8.tar.gz differ diff --git a/packrat/src/dbplyr/dbplyr_1.4.3.tar.gz b/packrat/src/dbplyr/dbplyr_1.4.3.tar.gz new file mode 100644 index 000000000..0e5446e9d Binary files /dev/null and b/packrat/src/dbplyr/dbplyr_1.4.3.tar.gz differ diff --git a/packrat/src/deldir/deldir_0.1-25.tar.gz b/packrat/src/deldir/deldir_0.1-25.tar.gz new file mode 100644 index 000000000..6dc99005e Binary files /dev/null and b/packrat/src/deldir/deldir_0.1-25.tar.gz differ diff --git a/packrat/src/desc/desc_1.2.0.tar.gz b/packrat/src/desc/desc_1.2.0.tar.gz new file mode 100644 index 000000000..9f021ca7b Binary files /dev/null and b/packrat/src/desc/desc_1.2.0.tar.gz differ diff --git a/packrat/src/devtools/devtools_2.3.0.tar.gz b/packrat/src/devtools/devtools_2.3.0.tar.gz new file mode 100644 index 000000000..99b5b83b2 Binary files /dev/null and b/packrat/src/devtools/devtools_2.3.0.tar.gz differ diff --git a/packrat/src/digest/digest_0.6.25.tar.gz b/packrat/src/digest/digest_0.6.25.tar.gz new file mode 100644 index 000000000..cb6a522a8 Binary files /dev/null and b/packrat/src/digest/digest_0.6.25.tar.gz differ diff --git a/packrat/src/doParallel/doParallel_1.0.15.tar.gz b/packrat/src/doParallel/doParallel_1.0.15.tar.gz new file mode 100644 index 000000000..c42e88533 Binary files /dev/null and b/packrat/src/doParallel/doParallel_1.0.15.tar.gz differ diff --git a/packrat/src/dplyr/dplyr_0.8.5.tar.gz b/packrat/src/dplyr/dplyr_0.8.5.tar.gz new file mode 100644 index 000000000..93841ae43 Binary files /dev/null and b/packrat/src/dplyr/dplyr_0.8.5.tar.gz differ diff --git a/packrat/src/e1071/e1071_1.7-3.tar.gz b/packrat/src/e1071/e1071_1.7-3.tar.gz new file mode 100644 index 000000000..499ab7f8a Binary files /dev/null and b/packrat/src/e1071/e1071_1.7-3.tar.gz differ diff --git a/packrat/src/ellipsis/ellipsis_0.3.0.tar.gz b/packrat/src/ellipsis/ellipsis_0.3.0.tar.gz new file mode 100644 index 000000000..80122a8d0 Binary files /dev/null and b/packrat/src/ellipsis/ellipsis_0.3.0.tar.gz differ diff --git a/packrat/src/evaluate/evaluate_0.14.tar.gz b/packrat/src/evaluate/evaluate_0.14.tar.gz new file mode 100644 index 000000000..8e7481b3d Binary files /dev/null and b/packrat/src/evaluate/evaluate_0.14.tar.gz differ diff --git a/packrat/src/fansi/fansi_0.4.1.tar.gz b/packrat/src/fansi/fansi_0.4.1.tar.gz new file mode 100644 index 000000000..167b8a8da Binary files /dev/null and b/packrat/src/fansi/fansi_0.4.1.tar.gz differ diff --git a/packrat/src/farver/farver_2.0.3.tar.gz b/packrat/src/farver/farver_2.0.3.tar.gz new file mode 100644 index 000000000..7d128dd53 Binary files /dev/null and b/packrat/src/farver/farver_2.0.3.tar.gz differ diff --git a/packrat/src/fitdistrplus/fitdistrplus_1.0-14.tar.gz b/packrat/src/fitdistrplus/fitdistrplus_1.0-14.tar.gz new file mode 100644 index 000000000..0fd11f87c Binary files /dev/null and b/packrat/src/fitdistrplus/fitdistrplus_1.0-14.tar.gz differ diff --git a/packrat/src/flextable/flextable_0.5.9.tar.gz b/packrat/src/flextable/flextable_0.5.9.tar.gz new file mode 100644 index 000000000..371d12f77 Binary files /dev/null and b/packrat/src/flextable/flextable_0.5.9.tar.gz differ diff --git a/packrat/src/forcats/forcats_0.5.0.tar.gz b/packrat/src/forcats/forcats_0.5.0.tar.gz new file mode 100644 index 000000000..af34a6310 Binary files /dev/null and b/packrat/src/forcats/forcats_0.5.0.tar.gz differ diff --git a/packrat/src/foreach/foreach_1.5.0.tar.gz b/packrat/src/foreach/foreach_1.5.0.tar.gz new file mode 100644 index 000000000..e168cedb1 Binary files /dev/null and b/packrat/src/foreach/foreach_1.5.0.tar.gz differ diff --git a/packrat/src/foreign/foreign_0.8-69.tar.gz b/packrat/src/foreign/foreign_0.8-69.tar.gz new file mode 100644 index 000000000..a3af848f4 Binary files /dev/null and b/packrat/src/foreign/foreign_0.8-69.tar.gz differ diff --git a/packrat/src/fs/fs_1.4.1.tar.gz b/packrat/src/fs/fs_1.4.1.tar.gz new file mode 100644 index 000000000..6e22758e7 Binary files /dev/null and b/packrat/src/fs/fs_1.4.1.tar.gz differ diff --git a/packrat/src/gdtools/gdtools_0.2.2.tar.gz b/packrat/src/gdtools/gdtools_0.2.2.tar.gz new file mode 100644 index 000000000..26cfe94ee Binary files /dev/null and b/packrat/src/gdtools/gdtools_0.2.2.tar.gz differ diff --git a/packrat/src/generics/generics_0.0.2.tar.gz b/packrat/src/generics/generics_0.0.2.tar.gz new file mode 100644 index 000000000..c143f40cc Binary files /dev/null and b/packrat/src/generics/generics_0.0.2.tar.gz differ diff --git a/packrat/src/geosphere/geosphere_1.5-10.tar.gz b/packrat/src/geosphere/geosphere_1.5-10.tar.gz new file mode 100644 index 000000000..2609a26c3 Binary files /dev/null and b/packrat/src/geosphere/geosphere_1.5-10.tar.gz differ diff --git a/packrat/src/getopt/getopt_1.20.3.tar.gz b/packrat/src/getopt/getopt_1.20.3.tar.gz new file mode 100644 index 000000000..6e2200d8a Binary files /dev/null and b/packrat/src/getopt/getopt_1.20.3.tar.gz differ diff --git a/packrat/src/ggfortify/ggfortify_0.4.10.tar.gz b/packrat/src/ggfortify/ggfortify_0.4.10.tar.gz new file mode 100644 index 000000000..3bed5282a Binary files /dev/null and b/packrat/src/ggfortify/ggfortify_0.4.10.tar.gz differ diff --git a/packrat/src/ggfortify/ggfortify_0.4.9.tar.gz b/packrat/src/ggfortify/ggfortify_0.4.9.tar.gz new file mode 100644 index 000000000..ac5451eb9 Binary files /dev/null and b/packrat/src/ggfortify/ggfortify_0.4.9.tar.gz differ diff --git a/packrat/src/ggplot2/ggplot2_3.3.0.tar.gz b/packrat/src/ggplot2/ggplot2_3.3.0.tar.gz new file mode 100644 index 000000000..07fa0c86f Binary files /dev/null and b/packrat/src/ggplot2/ggplot2_3.3.0.tar.gz differ diff --git a/packrat/src/ggpubr/ggpubr_0.2.5.tar.gz b/packrat/src/ggpubr/ggpubr_0.2.5.tar.gz new file mode 100644 index 000000000..5a1b927a4 Binary files /dev/null and b/packrat/src/ggpubr/ggpubr_0.2.5.tar.gz differ diff --git a/packrat/src/ggrepel/ggrepel_0.8.2.tar.gz b/packrat/src/ggrepel/ggrepel_0.8.2.tar.gz new file mode 100644 index 000000000..c43a8e760 Binary files /dev/null and b/packrat/src/ggrepel/ggrepel_0.8.2.tar.gz differ diff --git a/packrat/src/ggsci/ggsci_2.9.tar.gz b/packrat/src/ggsci/ggsci_2.9.tar.gz new file mode 100644 index 000000000..f721ebe52 Binary files /dev/null and b/packrat/src/ggsci/ggsci_2.9.tar.gz differ diff --git a/packrat/src/ggsignif/ggsignif_0.6.0.tar.gz b/packrat/src/ggsignif/ggsignif_0.6.0.tar.gz new file mode 100644 index 000000000..564a55077 Binary files /dev/null and b/packrat/src/ggsignif/ggsignif_0.6.0.tar.gz differ diff --git a/packrat/src/ggvoronoi/ggvoronoi_0.8.3.tar.gz b/packrat/src/ggvoronoi/ggvoronoi_0.8.3.tar.gz new file mode 100644 index 000000000..10c6b240c Binary files /dev/null and b/packrat/src/ggvoronoi/ggvoronoi_0.8.3.tar.gz differ diff --git a/packrat/src/gh/gh_1.1.0.tar.gz b/packrat/src/gh/gh_1.1.0.tar.gz new file mode 100644 index 000000000..758890113 Binary files /dev/null and b/packrat/src/gh/gh_1.1.0.tar.gz differ diff --git a/packrat/src/git2r/git2r_0.26.1.tar.gz b/packrat/src/git2r/git2r_0.26.1.tar.gz new file mode 100644 index 000000000..fe47e3152 Binary files /dev/null and b/packrat/src/git2r/git2r_0.26.1.tar.gz differ diff --git a/packrat/src/globaltoolboxlite/bdc856e7aec629d2960b2b72618d9e0b49a5898e.tar.gz b/packrat/src/globaltoolboxlite/bdc856e7aec629d2960b2b72618d9e0b49a5898e.tar.gz new file mode 100644 index 000000000..01ecefdf8 Binary files /dev/null and b/packrat/src/globaltoolboxlite/bdc856e7aec629d2960b2b72618d9e0b49a5898e.tar.gz differ diff --git a/packrat/src/glue/glue_1.4.0.tar.gz b/packrat/src/glue/glue_1.4.0.tar.gz new file mode 100644 index 000000000..6a5bd9789 Binary files /dev/null and b/packrat/src/glue/glue_1.4.0.tar.gz differ diff --git a/packrat/src/gpclib/gpclib_1.5-6.tar.gz b/packrat/src/gpclib/gpclib_1.5-6.tar.gz new file mode 100644 index 000000000..3941cb993 Binary files /dev/null and b/packrat/src/gpclib/gpclib_1.5-6.tar.gz differ diff --git a/packrat/src/gridExtra/gridExtra_2.3.tar.gz b/packrat/src/gridExtra/gridExtra_2.3.tar.gz new file mode 100644 index 000000000..c5ebbb511 Binary files /dev/null and b/packrat/src/gridExtra/gridExtra_2.3.tar.gz differ diff --git a/packrat/src/gtable/gtable_0.3.0.tar.gz b/packrat/src/gtable/gtable_0.3.0.tar.gz new file mode 100644 index 000000000..ba6775684 Binary files /dev/null and b/packrat/src/gtable/gtable_0.3.0.tar.gz differ diff --git a/packrat/src/haven/haven_2.2.0.tar.gz b/packrat/src/haven/haven_2.2.0.tar.gz new file mode 100644 index 000000000..522dffbb6 Binary files /dev/null and b/packrat/src/haven/haven_2.2.0.tar.gz differ diff --git a/packrat/src/highr/highr_0.8.tar.gz b/packrat/src/highr/highr_0.8.tar.gz new file mode 100644 index 000000000..bd5dbd8be Binary files /dev/null and b/packrat/src/highr/highr_0.8.tar.gz differ diff --git a/packrat/src/hms/hms_0.5.3.tar.gz b/packrat/src/hms/hms_0.5.3.tar.gz new file mode 100644 index 000000000..6e48d4441 Binary files /dev/null and b/packrat/src/hms/hms_0.5.3.tar.gz differ diff --git a/packrat/src/hospitalization/hospitalization_0.0.1.tar.gz b/packrat/src/hospitalization/hospitalization_0.0.1.tar.gz new file mode 100644 index 000000000..f39f4e615 Binary files /dev/null and b/packrat/src/hospitalization/hospitalization_0.0.1.tar.gz differ diff --git a/packrat/src/htmltools/htmltools_0.4.0.tar.gz b/packrat/src/htmltools/htmltools_0.4.0.tar.gz new file mode 100644 index 000000000..8359e15c6 Binary files /dev/null and b/packrat/src/htmltools/htmltools_0.4.0.tar.gz differ diff --git a/packrat/src/htmlwidgets/htmlwidgets_1.5.1.tar.gz b/packrat/src/htmlwidgets/htmlwidgets_1.5.1.tar.gz new file mode 100644 index 000000000..6da3b568d Binary files /dev/null and b/packrat/src/htmlwidgets/htmlwidgets_1.5.1.tar.gz differ diff --git a/packrat/src/httr/httr_1.4.1.tar.gz b/packrat/src/httr/httr_1.4.1.tar.gz new file mode 100644 index 000000000..38c972486 Binary files /dev/null and b/packrat/src/httr/httr_1.4.1.tar.gz differ diff --git a/packrat/src/igraph/igraph_1.2.5.tar.gz b/packrat/src/igraph/igraph_1.2.5.tar.gz new file mode 100644 index 000000000..64112cc82 Binary files /dev/null and b/packrat/src/igraph/igraph_1.2.5.tar.gz differ diff --git a/packrat/src/ini/ini_0.3.1.tar.gz b/packrat/src/ini/ini_0.3.1.tar.gz new file mode 100644 index 000000000..7a43c5604 Binary files /dev/null and b/packrat/src/ini/ini_0.3.1.tar.gz differ diff --git a/packrat/src/isoband/isoband_0.2.1.tar.gz b/packrat/src/isoband/isoband_0.2.1.tar.gz new file mode 100644 index 000000000..afa9957f8 Binary files /dev/null and b/packrat/src/isoband/isoband_0.2.1.tar.gz differ diff --git a/packrat/src/iterators/iterators_1.0.12.tar.gz b/packrat/src/iterators/iterators_1.0.12.tar.gz new file mode 100644 index 000000000..a4ad79e71 Binary files /dev/null and b/packrat/src/iterators/iterators_1.0.12.tar.gz differ diff --git a/packrat/src/jsonlite/jsonlite_1.6.1.tar.gz b/packrat/src/jsonlite/jsonlite_1.6.1.tar.gz new file mode 100644 index 000000000..f7500c383 Binary files /dev/null and b/packrat/src/jsonlite/jsonlite_1.6.1.tar.gz differ diff --git a/packrat/src/knitr/knitr_1.28.tar.gz b/packrat/src/knitr/knitr_1.28.tar.gz new file mode 100644 index 000000000..5848a5dcd Binary files /dev/null and b/packrat/src/knitr/knitr_1.28.tar.gz differ diff --git a/packrat/src/labeling/labeling_0.3.tar.gz b/packrat/src/labeling/labeling_0.3.tar.gz new file mode 100644 index 000000000..0e476124c Binary files /dev/null and b/packrat/src/labeling/labeling_0.3.tar.gz differ diff --git a/packrat/src/later/later_1.0.0.tar.gz b/packrat/src/later/later_1.0.0.tar.gz new file mode 100644 index 000000000..f01d575bd Binary files /dev/null and b/packrat/src/later/later_1.0.0.tar.gz differ diff --git a/packrat/src/lattice/lattice_0.20-41.tar.gz b/packrat/src/lattice/lattice_0.20-41.tar.gz new file mode 100644 index 000000000..b867581a3 Binary files /dev/null and b/packrat/src/lattice/lattice_0.20-41.tar.gz differ diff --git a/packrat/src/lazyeval/lazyeval_0.2.2.tar.gz b/packrat/src/lazyeval/lazyeval_0.2.2.tar.gz new file mode 100644 index 000000000..27bf4861a Binary files /dev/null and b/packrat/src/lazyeval/lazyeval_0.2.2.tar.gz differ diff --git a/packrat/src/lifecycle/lifecycle_0.2.0.tar.gz b/packrat/src/lifecycle/lifecycle_0.2.0.tar.gz new file mode 100644 index 000000000..e6c6b2b8e Binary files /dev/null and b/packrat/src/lifecycle/lifecycle_0.2.0.tar.gz differ diff --git a/packrat/src/lsei/lsei_1.2-0.tar.gz b/packrat/src/lsei/lsei_1.2-0.tar.gz new file mode 100644 index 000000000..43ed3a74a Binary files /dev/null and b/packrat/src/lsei/lsei_1.2-0.tar.gz differ diff --git a/packrat/src/lubridate/lubridate_1.7.8.tar.gz b/packrat/src/lubridate/lubridate_1.7.8.tar.gz new file mode 100644 index 000000000..26394b0a2 Binary files /dev/null and b/packrat/src/lubridate/lubridate_1.7.8.tar.gz differ diff --git a/packrat/src/magrittr/magrittr_1.5.tar.gz b/packrat/src/magrittr/magrittr_1.5.tar.gz new file mode 100644 index 000000000..e2f986040 Binary files /dev/null and b/packrat/src/magrittr/magrittr_1.5.tar.gz differ diff --git a/packrat/src/maptools/maptools_0.9-9.tar.gz b/packrat/src/maptools/maptools_0.9-9.tar.gz new file mode 100644 index 000000000..51e407a09 Binary files /dev/null and b/packrat/src/maptools/maptools_0.9-9.tar.gz differ diff --git a/packrat/src/markdown/markdown_1.1.tar.gz b/packrat/src/markdown/markdown_1.1.tar.gz new file mode 100644 index 000000000..c3f6bcfdd Binary files /dev/null and b/packrat/src/markdown/markdown_1.1.tar.gz differ diff --git a/packrat/src/memoise/memoise_1.1.0.tar.gz b/packrat/src/memoise/memoise_1.1.0.tar.gz new file mode 100644 index 000000000..b150108d0 Binary files /dev/null and b/packrat/src/memoise/memoise_1.1.0.tar.gz differ diff --git a/packrat/src/mgcv/mgcv_1.8-31.tar.gz b/packrat/src/mgcv/mgcv_1.8-31.tar.gz new file mode 100644 index 000000000..e1e1a8535 Binary files /dev/null and b/packrat/src/mgcv/mgcv_1.8-31.tar.gz differ diff --git a/packrat/src/mime/mime_0.9.tar.gz b/packrat/src/mime/mime_0.9.tar.gz new file mode 100644 index 000000000..dd1f8061e Binary files /dev/null and b/packrat/src/mime/mime_0.9.tar.gz differ diff --git a/packrat/src/modelr/modelr_0.1.6.tar.gz b/packrat/src/modelr/modelr_0.1.6.tar.gz new file mode 100644 index 000000000..7d892e744 Binary files /dev/null and b/packrat/src/modelr/modelr_0.1.6.tar.gz differ diff --git a/packrat/src/munsell/munsell_0.5.0.tar.gz b/packrat/src/munsell/munsell_0.5.0.tar.gz new file mode 100644 index 000000000..335e0261e Binary files /dev/null and b/packrat/src/munsell/munsell_0.5.0.tar.gz differ diff --git a/packrat/src/nlme/nlme_3.1-147.tar.gz b/packrat/src/nlme/nlme_3.1-147.tar.gz new file mode 100644 index 000000000..d99d784be Binary files /dev/null and b/packrat/src/nlme/nlme_3.1-147.tar.gz differ diff --git a/packrat/src/nnls/nnls_1.4.tar.gz b/packrat/src/nnls/nnls_1.4.tar.gz new file mode 100644 index 000000000..329f262be Binary files /dev/null and b/packrat/src/nnls/nnls_1.4.tar.gz differ diff --git a/packrat/src/npsurv/npsurv_0.4-0.tar.gz b/packrat/src/npsurv/npsurv_0.4-0.tar.gz new file mode 100644 index 000000000..0cc21ac99 Binary files /dev/null and b/packrat/src/npsurv/npsurv_0.4-0.tar.gz differ diff --git a/packrat/src/officer/officer_0.3.8.tar.gz b/packrat/src/officer/officer_0.3.8.tar.gz new file mode 100644 index 000000000..637f367aa Binary files /dev/null and b/packrat/src/officer/officer_0.3.8.tar.gz differ diff --git a/packrat/src/openssl/openssl_1.4.1.tar.gz b/packrat/src/openssl/openssl_1.4.1.tar.gz new file mode 100644 index 000000000..6ee610ca5 Binary files /dev/null and b/packrat/src/openssl/openssl_1.4.1.tar.gz differ diff --git a/packrat/src/optparse/optparse_1.6.6.tar.gz b/packrat/src/optparse/optparse_1.6.6.tar.gz new file mode 100644 index 000000000..53df5ddee Binary files /dev/null and b/packrat/src/optparse/optparse_1.6.6.tar.gz differ diff --git a/packrat/src/packrat/packrat_0.5.0.tar.gz b/packrat/src/packrat/packrat_0.5.0.tar.gz new file mode 100644 index 000000000..6ab66615f Binary files /dev/null and b/packrat/src/packrat/packrat_0.5.0.tar.gz differ diff --git a/packrat/src/pillar/pillar_1.4.3.tar.gz b/packrat/src/pillar/pillar_1.4.3.tar.gz new file mode 100644 index 000000000..c6a083f46 Binary files /dev/null and b/packrat/src/pillar/pillar_1.4.3.tar.gz differ diff --git a/packrat/src/pkgbuild/pkgbuild_1.0.7.tar.gz b/packrat/src/pkgbuild/pkgbuild_1.0.7.tar.gz new file mode 100644 index 000000000..e2c89f713 Binary files /dev/null and b/packrat/src/pkgbuild/pkgbuild_1.0.7.tar.gz differ diff --git a/packrat/src/pkgconfig/pkgconfig_2.0.3.tar.gz b/packrat/src/pkgconfig/pkgconfig_2.0.3.tar.gz new file mode 100644 index 000000000..0ae264b7e Binary files /dev/null and b/packrat/src/pkgconfig/pkgconfig_2.0.3.tar.gz differ diff --git a/packrat/src/pkgload/pkgload_1.0.2.tar.gz b/packrat/src/pkgload/pkgload_1.0.2.tar.gz new file mode 100644 index 000000000..f5a886477 Binary files /dev/null and b/packrat/src/pkgload/pkgload_1.0.2.tar.gz differ diff --git a/packrat/src/plogr/plogr_0.2.0.tar.gz b/packrat/src/plogr/plogr_0.2.0.tar.gz new file mode 100644 index 000000000..e3a645198 Binary files /dev/null and b/packrat/src/plogr/plogr_0.2.0.tar.gz differ diff --git a/packrat/src/plyr/plyr_1.8.6.tar.gz b/packrat/src/plyr/plyr_1.8.6.tar.gz new file mode 100644 index 000000000..4b5b10c92 Binary files /dev/null and b/packrat/src/plyr/plyr_1.8.6.tar.gz differ diff --git a/packrat/src/polynom/polynom_1.4-0.tar.gz b/packrat/src/polynom/polynom_1.4-0.tar.gz new file mode 100644 index 000000000..c67c988ac Binary files /dev/null and b/packrat/src/polynom/polynom_1.4-0.tar.gz differ diff --git a/packrat/src/praise/praise_1.0.0.tar.gz b/packrat/src/praise/praise_1.0.0.tar.gz new file mode 100644 index 000000000..0753c4b8f Binary files /dev/null and b/packrat/src/praise/praise_1.0.0.tar.gz differ diff --git a/packrat/src/prettyunits/prettyunits_1.1.1.tar.gz b/packrat/src/prettyunits/prettyunits_1.1.1.tar.gz new file mode 100644 index 000000000..dae4ffe1d Binary files /dev/null and b/packrat/src/prettyunits/prettyunits_1.1.1.tar.gz differ diff --git a/packrat/src/processx/processx_3.4.2.tar.gz b/packrat/src/processx/processx_3.4.2.tar.gz new file mode 100644 index 000000000..c6a195ca8 Binary files /dev/null and b/packrat/src/processx/processx_3.4.2.tar.gz differ diff --git a/packrat/src/progress/progress_1.2.2.tar.gz b/packrat/src/progress/progress_1.2.2.tar.gz new file mode 100644 index 000000000..16aae37ca Binary files /dev/null and b/packrat/src/progress/progress_1.2.2.tar.gz differ diff --git a/packrat/src/promises/promises_1.1.0.tar.gz b/packrat/src/promises/promises_1.1.0.tar.gz new file mode 100644 index 000000000..fd08c4968 Binary files /dev/null and b/packrat/src/promises/promises_1.1.0.tar.gz differ diff --git a/packrat/src/ps/ps_1.3.2.tar.gz b/packrat/src/ps/ps_1.3.2.tar.gz new file mode 100644 index 000000000..4394b38cd Binary files /dev/null and b/packrat/src/ps/ps_1.3.2.tar.gz differ diff --git a/packrat/src/purrr/purrr_0.3.4.tar.gz b/packrat/src/purrr/purrr_0.3.4.tar.gz new file mode 100644 index 000000000..94b26c312 Binary files /dev/null and b/packrat/src/purrr/purrr_0.3.4.tar.gz differ diff --git a/packrat/src/rappdirs/rappdirs_0.3.1.tar.gz b/packrat/src/rappdirs/rappdirs_0.3.1.tar.gz new file mode 100644 index 000000000..3a03c567c Binary files /dev/null and b/packrat/src/rappdirs/rappdirs_0.3.1.tar.gz differ diff --git a/packrat/src/raster/raster_3.1-5.tar.gz b/packrat/src/raster/raster_3.1-5.tar.gz new file mode 100644 index 000000000..71b48f364 Binary files /dev/null and b/packrat/src/raster/raster_3.1-5.tar.gz differ diff --git a/packrat/src/rcmdcheck/rcmdcheck_1.3.3.tar.gz b/packrat/src/rcmdcheck/rcmdcheck_1.3.3.tar.gz new file mode 100644 index 000000000..8c275f875 Binary files /dev/null and b/packrat/src/rcmdcheck/rcmdcheck_1.3.3.tar.gz differ diff --git a/packrat/src/readr/readr_1.3.1.tar.gz b/packrat/src/readr/readr_1.3.1.tar.gz new file mode 100644 index 000000000..1ae1754ee Binary files /dev/null and b/packrat/src/readr/readr_1.3.1.tar.gz differ diff --git a/packrat/src/readxl/readxl_1.3.1.tar.gz b/packrat/src/readxl/readxl_1.3.1.tar.gz new file mode 100644 index 000000000..d29b5e800 Binary files /dev/null and b/packrat/src/readxl/readxl_1.3.1.tar.gz differ diff --git a/packrat/src/rematch/rematch_1.0.1.tar.gz b/packrat/src/rematch/rematch_1.0.1.tar.gz new file mode 100644 index 000000000..a8d3b1dcd Binary files /dev/null and b/packrat/src/rematch/rematch_1.0.1.tar.gz differ diff --git a/packrat/src/rematch2/rematch2_2.1.1.tar.gz b/packrat/src/rematch2/rematch2_2.1.1.tar.gz new file mode 100644 index 000000000..6cf34b5f5 Binary files /dev/null and b/packrat/src/rematch2/rematch2_2.1.1.tar.gz differ diff --git a/packrat/src/remotes/remotes_2.1.1.tar.gz b/packrat/src/remotes/remotes_2.1.1.tar.gz new file mode 100644 index 000000000..35a4f3bc2 Binary files /dev/null and b/packrat/src/remotes/remotes_2.1.1.tar.gz differ diff --git a/packrat/src/report.generation/report.generation_0.0.1.tar.gz b/packrat/src/report.generation/report.generation_0.0.1.tar.gz new file mode 100644 index 000000000..026ee86d6 Binary files /dev/null and b/packrat/src/report.generation/report.generation_0.0.1.tar.gz differ diff --git a/packrat/src/reprex/reprex_0.3.0.tar.gz b/packrat/src/reprex/reprex_0.3.0.tar.gz new file mode 100644 index 000000000..78910c5b9 Binary files /dev/null and b/packrat/src/reprex/reprex_0.3.0.tar.gz differ diff --git a/packrat/src/reshape2/reshape2_1.4.4.tar.gz b/packrat/src/reshape2/reshape2_1.4.4.tar.gz new file mode 100644 index 000000000..b5c25064c Binary files /dev/null and b/packrat/src/reshape2/reshape2_1.4.4.tar.gz differ diff --git a/packrat/src/reticulate/reticulate_1.5.tar.gz b/packrat/src/reticulate/reticulate_1.5.tar.gz new file mode 100644 index 000000000..7498262db Binary files /dev/null and b/packrat/src/reticulate/reticulate_1.5.tar.gz differ diff --git a/packrat/src/rex/rex_1.2.0.tar.gz b/packrat/src/rex/rex_1.2.0.tar.gz new file mode 100644 index 000000000..272e229ae Binary files /dev/null and b/packrat/src/rex/rex_1.2.0.tar.gz differ diff --git a/packrat/src/rgdal/rgdal_1.4-8.tar.gz b/packrat/src/rgdal/rgdal_1.4-8.tar.gz new file mode 100644 index 000000000..3ae90285d Binary files /dev/null and b/packrat/src/rgdal/rgdal_1.4-8.tar.gz differ diff --git a/packrat/src/rgeos/rgeos_0.5-2.tar.gz b/packrat/src/rgeos/rgeos_0.5-2.tar.gz new file mode 100644 index 000000000..f4895b607 Binary files /dev/null and b/packrat/src/rgeos/rgeos_0.5-2.tar.gz differ diff --git a/packrat/src/rlang/rlang_0.4.5.tar.gz b/packrat/src/rlang/rlang_0.4.5.tar.gz new file mode 100644 index 000000000..253014022 Binary files /dev/null and b/packrat/src/rlang/rlang_0.4.5.tar.gz differ diff --git a/packrat/src/rlist/rlist_0.4.6.1.tar.gz b/packrat/src/rlist/rlist_0.4.6.1.tar.gz new file mode 100644 index 000000000..4f7b16319 Binary files /dev/null and b/packrat/src/rlist/rlist_0.4.6.1.tar.gz differ diff --git a/packrat/src/rmarkdown/rmarkdown_2.1.tar.gz b/packrat/src/rmarkdown/rmarkdown_2.1.tar.gz new file mode 100644 index 000000000..6213ce97f Binary files /dev/null and b/packrat/src/rmarkdown/rmarkdown_2.1.tar.gz differ diff --git a/packrat/src/roxygen2/roxygen2_7.1.0.tar.gz b/packrat/src/roxygen2/roxygen2_7.1.0.tar.gz new file mode 100644 index 000000000..3d223d60e Binary files /dev/null and b/packrat/src/roxygen2/roxygen2_7.1.0.tar.gz differ diff --git a/packrat/src/rprojroot/rprojroot_1.3-2.tar.gz b/packrat/src/rprojroot/rprojroot_1.3-2.tar.gz new file mode 100644 index 000000000..9bf17e5d1 Binary files /dev/null and b/packrat/src/rprojroot/rprojroot_1.3-2.tar.gz differ diff --git a/packrat/src/rstudioapi/rstudioapi_0.11.tar.gz b/packrat/src/rstudioapi/rstudioapi_0.11.tar.gz new file mode 100644 index 000000000..82efc8c6b Binary files /dev/null and b/packrat/src/rstudioapi/rstudioapi_0.11.tar.gz differ diff --git a/packrat/src/rversions/rversions_2.0.1.tar.gz b/packrat/src/rversions/rversions_2.0.1.tar.gz new file mode 100644 index 000000000..532939172 Binary files /dev/null and b/packrat/src/rversions/rversions_2.0.1.tar.gz differ diff --git a/packrat/src/rvest/rvest_0.3.5.tar.gz b/packrat/src/rvest/rvest_0.3.5.tar.gz new file mode 100644 index 000000000..5b9d55c57 Binary files /dev/null and b/packrat/src/rvest/rvest_0.3.5.tar.gz differ diff --git a/packrat/src/scales/scales_1.1.0.tar.gz b/packrat/src/scales/scales_1.1.0.tar.gz new file mode 100644 index 000000000..57deed87f Binary files /dev/null and b/packrat/src/scales/scales_1.1.0.tar.gz differ diff --git a/packrat/src/selectr/selectr_0.4-2.tar.gz b/packrat/src/selectr/selectr_0.4-2.tar.gz new file mode 100644 index 000000000..ab3114c08 Binary files /dev/null and b/packrat/src/selectr/selectr_0.4-2.tar.gz differ diff --git a/packrat/src/sessioninfo/sessioninfo_1.1.1.tar.gz b/packrat/src/sessioninfo/sessioninfo_1.1.1.tar.gz new file mode 100644 index 000000000..d0946f63b Binary files /dev/null and b/packrat/src/sessioninfo/sessioninfo_1.1.1.tar.gz differ diff --git a/packrat/src/sf/sf_0.9-2.tar.gz b/packrat/src/sf/sf_0.9-2.tar.gz new file mode 100644 index 000000000..6a8a1f6a8 Binary files /dev/null and b/packrat/src/sf/sf_0.9-2.tar.gz differ diff --git a/packrat/src/sp/sp_1.4-1.tar.gz b/packrat/src/sp/sp_1.4-1.tar.gz new file mode 100644 index 000000000..43674ec0e Binary files /dev/null and b/packrat/src/sp/sp_1.4-1.tar.gz differ diff --git a/packrat/src/splines2/splines2_0.2.8.tar.gz b/packrat/src/splines2/splines2_0.2.8.tar.gz new file mode 100644 index 000000000..564d8f816 Binary files /dev/null and b/packrat/src/splines2/splines2_0.2.8.tar.gz differ diff --git a/packrat/src/stringdist/stringdist_0.9.5.5.tar.gz b/packrat/src/stringdist/stringdist_0.9.5.5.tar.gz new file mode 100644 index 000000000..f071ed170 Binary files /dev/null and b/packrat/src/stringdist/stringdist_0.9.5.5.tar.gz differ diff --git a/packrat/src/stringi/stringi_1.4.6.tar.gz b/packrat/src/stringi/stringi_1.4.6.tar.gz new file mode 100644 index 000000000..73792eee7 Binary files /dev/null and b/packrat/src/stringi/stringi_1.4.6.tar.gz differ diff --git a/packrat/src/stringr/stringr_1.4.0.tar.gz b/packrat/src/stringr/stringr_1.4.0.tar.gz new file mode 100644 index 000000000..0966c7a03 Binary files /dev/null and b/packrat/src/stringr/stringr_1.4.0.tar.gz differ diff --git a/packrat/src/survival/survival_3.1-12.tar.gz b/packrat/src/survival/survival_3.1-12.tar.gz new file mode 100644 index 000000000..bca32e3a8 Binary files /dev/null and b/packrat/src/survival/survival_3.1-12.tar.gz differ diff --git a/packrat/src/svUnit/svUnit_1.0.3.tar.gz b/packrat/src/svUnit/svUnit_1.0.3.tar.gz new file mode 100644 index 000000000..7a938e7bd Binary files /dev/null and b/packrat/src/svUnit/svUnit_1.0.3.tar.gz differ diff --git a/packrat/src/sys/sys_3.3.tar.gz b/packrat/src/sys/sys_3.3.tar.gz new file mode 100644 index 000000000..94fb2e4da Binary files /dev/null and b/packrat/src/sys/sys_3.3.tar.gz differ diff --git a/packrat/src/systemfonts/systemfonts_0.2.0.tar.gz b/packrat/src/systemfonts/systemfonts_0.2.0.tar.gz new file mode 100644 index 000000000..aa292431b Binary files /dev/null and b/packrat/src/systemfonts/systemfonts_0.2.0.tar.gz differ diff --git a/packrat/src/testthat/testthat_2.3.2.tar.gz b/packrat/src/testthat/testthat_2.3.2.tar.gz new file mode 100644 index 000000000..9b6271b35 Binary files /dev/null and b/packrat/src/testthat/testthat_2.3.2.tar.gz differ diff --git a/packrat/src/tibble/tibble_3.0.1.tar.gz b/packrat/src/tibble/tibble_3.0.1.tar.gz new file mode 100644 index 000000000..629bc5ab0 Binary files /dev/null and b/packrat/src/tibble/tibble_3.0.1.tar.gz differ diff --git a/packrat/src/tictoc/tictoc_1.0.tar.gz b/packrat/src/tictoc/tictoc_1.0.tar.gz new file mode 100644 index 000000000..c3bb0dc80 Binary files /dev/null and b/packrat/src/tictoc/tictoc_1.0.tar.gz differ diff --git a/packrat/src/tidycensus/tidycensus_0.9.9.2.tar.gz b/packrat/src/tidycensus/tidycensus_0.9.9.2.tar.gz new file mode 100644 index 000000000..f5c60e678 Binary files /dev/null and b/packrat/src/tidycensus/tidycensus_0.9.9.2.tar.gz differ diff --git a/packrat/src/tidyr/tidyr_1.0.2.tar.gz b/packrat/src/tidyr/tidyr_1.0.2.tar.gz new file mode 100644 index 000000000..829676aac Binary files /dev/null and b/packrat/src/tidyr/tidyr_1.0.2.tar.gz differ diff --git a/packrat/src/tidyselect/tidyselect_1.0.0.tar.gz b/packrat/src/tidyselect/tidyselect_1.0.0.tar.gz new file mode 100644 index 000000000..d90579124 Binary files /dev/null and b/packrat/src/tidyselect/tidyselect_1.0.0.tar.gz differ diff --git a/packrat/src/tidyverse/tidyverse_1.3.0.tar.gz b/packrat/src/tidyverse/tidyverse_1.3.0.tar.gz new file mode 100644 index 000000000..0b9068bb8 Binary files /dev/null and b/packrat/src/tidyverse/tidyverse_1.3.0.tar.gz differ diff --git a/packrat/src/tigris/tigris_0.9.4.tar.gz b/packrat/src/tigris/tigris_0.9.4.tar.gz new file mode 100644 index 000000000..4c96af874 Binary files /dev/null and b/packrat/src/tigris/tigris_0.9.4.tar.gz differ diff --git a/packrat/src/tinytex/tinytex_0.22.tar.gz b/packrat/src/tinytex/tinytex_0.22.tar.gz new file mode 100644 index 000000000..f03d0e68b Binary files /dev/null and b/packrat/src/tinytex/tinytex_0.22.tar.gz differ diff --git a/packrat/src/truncnorm/truncnorm_1.0-8.tar.gz b/packrat/src/truncnorm/truncnorm_1.0-8.tar.gz new file mode 100644 index 000000000..8a14da49f Binary files /dev/null and b/packrat/src/truncnorm/truncnorm_1.0-8.tar.gz differ diff --git a/packrat/src/units/units_0.6-6.tar.gz b/packrat/src/units/units_0.6-6.tar.gz new file mode 100644 index 000000000..5aaa633e2 Binary files /dev/null and b/packrat/src/units/units_0.6-6.tar.gz differ diff --git a/packrat/src/usethis/usethis_1.6.0.tar.gz b/packrat/src/usethis/usethis_1.6.0.tar.gz new file mode 100644 index 000000000..030304b10 Binary files /dev/null and b/packrat/src/usethis/usethis_1.6.0.tar.gz differ diff --git a/packrat/src/utf8/utf8_1.1.4.tar.gz b/packrat/src/utf8/utf8_1.1.4.tar.gz new file mode 100644 index 000000000..9f9449bd4 Binary files /dev/null and b/packrat/src/utf8/utf8_1.1.4.tar.gz differ diff --git a/packrat/src/uuid/uuid_0.1-4.tar.gz b/packrat/src/uuid/uuid_0.1-4.tar.gz new file mode 100644 index 000000000..00a96f552 Binary files /dev/null and b/packrat/src/uuid/uuid_0.1-4.tar.gz differ diff --git a/packrat/src/vctrs/vctrs_0.2.4.tar.gz b/packrat/src/vctrs/vctrs_0.2.4.tar.gz new file mode 100644 index 000000000..5eff6df4d Binary files /dev/null and b/packrat/src/vctrs/vctrs_0.2.4.tar.gz differ diff --git a/packrat/src/viridis/viridis_0.5.1.tar.gz b/packrat/src/viridis/viridis_0.5.1.tar.gz new file mode 100644 index 000000000..d8d24423a Binary files /dev/null and b/packrat/src/viridis/viridis_0.5.1.tar.gz differ diff --git a/packrat/src/viridisLite/viridisLite_0.3.0.tar.gz b/packrat/src/viridisLite/viridisLite_0.3.0.tar.gz new file mode 100644 index 000000000..e12d30e3b Binary files /dev/null and b/packrat/src/viridisLite/viridisLite_0.3.0.tar.gz differ diff --git a/packrat/src/whisker/whisker_0.4.tar.gz b/packrat/src/whisker/whisker_0.4.tar.gz new file mode 100644 index 000000000..e081df450 Binary files /dev/null and b/packrat/src/whisker/whisker_0.4.tar.gz differ diff --git a/packrat/src/withr/withr_2.2.0.tar.gz b/packrat/src/withr/withr_2.2.0.tar.gz new file mode 100644 index 000000000..95f3eb26c Binary files /dev/null and b/packrat/src/withr/withr_2.2.0.tar.gz differ diff --git a/packrat/src/xfun/xfun_0.13.tar.gz b/packrat/src/xfun/xfun_0.13.tar.gz new file mode 100644 index 000000000..76f546d86 Binary files /dev/null and b/packrat/src/xfun/xfun_0.13.tar.gz differ diff --git a/packrat/src/xml2/xml2_1.3.2.tar.gz b/packrat/src/xml2/xml2_1.3.2.tar.gz new file mode 100644 index 000000000..cac6c9a4a Binary files /dev/null and b/packrat/src/xml2/xml2_1.3.2.tar.gz differ diff --git a/packrat/src/xopen/xopen_1.0.0.tar.gz b/packrat/src/xopen/xopen_1.0.0.tar.gz new file mode 100644 index 000000000..81b154079 Binary files /dev/null and b/packrat/src/xopen/xopen_1.0.0.tar.gz differ diff --git a/packrat/src/xts/xts_0.12-0.tar.gz b/packrat/src/xts/xts_0.12-0.tar.gz new file mode 100644 index 000000000..9de8dfb90 Binary files /dev/null and b/packrat/src/xts/xts_0.12-0.tar.gz differ diff --git a/packrat/src/yaml/yaml_2.2.1.tar.gz b/packrat/src/yaml/yaml_2.2.1.tar.gz new file mode 100644 index 000000000..f4883643e Binary files /dev/null and b/packrat/src/yaml/yaml_2.2.1.tar.gz differ diff --git a/packrat/src/zip/zip_2.0.4.tar.gz b/packrat/src/zip/zip_2.0.4.tar.gz new file mode 100644 index 000000000..38954687b Binary files /dev/null and b/packrat/src/zip/zip_2.0.4.tar.gz differ diff --git a/packrat/src/zoo/zoo_1.8-7.tar.gz b/packrat/src/zoo/zoo_1.8-7.tar.gz new file mode 100644 index 000000000..ef71ae79e Binary files /dev/null and b/packrat/src/zoo/zoo_1.8-7.tar.gz differ diff --git a/requirements.txt b/requirements.txt index 4fc1baa41..d68a70563 100644 --- a/requirements.txt +++ b/requirements.txt @@ -71,6 +71,7 @@ ruamel.yaml.clib==0.2.0 s3transfer==0.3.3 scipy==1.4.1 seaborn==0.10.0 +setuptools==47.3.1 sh==1.12.14 Shapely==1.7.0 shortuuid==1.0.1 diff --git a/sample_data/geoid-params.csv b/sample_data/geoid-params.csv index 2221a011a..7a83e131e 100644 --- a/sample_data/geoid-params.csv +++ b/sample_data/geoid-params.csv @@ -1,3222 +1,3227 @@ -geoid,p_symp_inf,p_death_symp,p_hosp_symp,p_icu_hosp,p_vent_icu,rr_death_symp,death_symp_overall,rr_hosp_symp,hosp_symp_overall,rr_death_inf,death_inf_overall,rr_hosp_inf,hosp_inf_overall -01001,0.3882782471517099,0.013101963048958621,0.1566855499221377,0.15639587989431294,0.44173485429579784,0.8995030871424483,0.01457282039896661,0.9460771128352641,0.16630377296957227,0.9000582896239804,0.010000191358858813,0.9385808172639348,0.09730550692167428 -01003,0.42942323857031356,0.017740399363119306,0.1845467778680464,0.18697268941562795,0.44167870406227266,1.2170392147743248,0.01457282039896661,1.1072950465976317,0.16630377296957227,1.2510069577372542,0.010000191358858813,1.161636349783764,0.09730550692167428 -01005,0.41318547643591313,0.015478090625497456,0.1731182835213657,0.17220402029503698,0.44169913148450735,1.0621413886647768,0.01457282039896661,1.0398713655563643,0.16630377296957227,1.0763901132506042,0.010000191358858813,1.0567837856781885,0.09730550692167428 -01007,0.40584730812188724,0.014321741197766502,0.16690958357607832,0.16457133545863273,0.4417110072438185,0.9827395968227713,0.01457282039896661,1.0065786059954216,0.16630377296957227,0.9899036686670935,0.010000191358858813,1.0102879048144389,0.09730550692167428 -01009,0.41364343854490293,0.015861563501196392,0.1728889342822726,0.17380680324239633,0.44170290405684204,1.088348622616233,0.01457282039896661,1.0387205483633095,0.16630377296957227,1.1179997835934574,0.010000191358858813,1.071644659886735,0.09730550692167428 -01011,0.40626089541737087,0.014744054566636177,0.17002214270634025,0.1694276515341861,0.4417027525521175,1.011495087205049,0.01457282039896661,1.0213173646022535,0.16630377296957227,1.0012155087965362,0.010000191358858813,1.0245484373013203,0.09730550692167428 -01013,0.42084632114835785,0.017562527582376693,0.18160584325679371,0.18661834875804365,0.44168765272131627,1.2044915123307924,0.01457282039896661,1.0902470735322365,0.16630377296957227,1.2261129813107545,0.010000191358858813,1.1338450287549433,0.09730550692167428 -01015,0.410075620049921,0.01573476166048851,0.17282171901781268,0.174072794275295,0.4417028690607847,1.0793369027459114,0.01457282039896661,1.0383633338571252,0.16630377296957227,1.093087750261275,0.010000191358858813,1.0577564136175703,0.09730550692167428 -01017,0.4262059015352869,0.017605399631365138,0.18348204966818477,0.18707974943689828,0.44168140149513635,1.2077612131897975,0.01457282039896661,1.1011991112802235,0.16630377296957227,1.2312103750676955,0.010000191358858813,1.1482934815570727,0.09730550692167428 -01019,0.44769494569019885,0.0184027686983737,0.19300562694902845,0.1913855943432964,0.4416479778364448,1.2629709448949749,0.01457282039896661,1.158748102991808,0.16630377296957227,1.3019692796568063,0.010000191358858813,1.226716350594435,0.09730550692167428 -01021,0.4046858082356419,0.014816787859149937,0.1678134434705034,0.16758727183267483,0.44171400621630635,1.0169282724336126,0.01457282039896661,1.0077694728988607,0.16630377296957227,1.0290886456587365,0.010000191358858813,1.0203267088179364,0.09730550692167428 -01023,0.43718839022557643,0.018799845929226,0.19092048464330594,0.1959518129001409,0.44166241563193587,1.2893319200264854,0.01457282039896661,1.145812573036601,0.16630377296957227,1.3155160921936389,0.010000191358858813,1.2113372321254856,0.09730550692167428 -01025,0.40970531229001916,0.01651262786403284,0.17421110528305178,0.17949032987935234,0.4417014535044532,1.132566990084408,0.01457282039896661,1.0453007361829934,0.16630377296957227,1.1522909071556038,0.010000191358858813,1.0833443958050917,0.09730550692167428 -01027,0.4265897821440279,0.018309158635928177,0.18906518131257524,0.19548687104790452,0.441664610663077,1.2562882883272137,0.01457282039896661,1.1343224566047367,0.16630377296957227,1.2407570324829433,0.010000191358858813,1.1598043735654533,0.09730550692167428 -01029,0.4237498154124215,0.01649878704266678,0.17845395633208333,0.17952026204030255,0.4416914016536573,1.1315500055545495,0.01457282039896661,1.0714953318477227,0.16630377296957227,1.158074254302966,0.010000191358858813,1.1141673756975057,0.09730550692167428 -01031,0.40934864975455054,0.015904615158653535,0.17316971942135329,0.17523743426181887,0.44170298267122465,1.0910753819880723,0.01457282039896661,1.0393822240813417,0.16630377296957227,1.1046365235910913,0.010000191358858813,1.0587781730950967,0.09730550692167428 -01033,0.4309125502977872,0.017988860478196665,0.1864746384678587,0.18921683772111242,0.44167267736459587,1.2338883296448524,0.01457282039896661,1.1189973490557072,0.16630377296957227,1.2613276567042653,0.010000191358858813,1.1702805663470857,0.09730550692167428 -01035,0.4288755185995439,0.01840266749410342,0.18728484376744864,0.19414407190831434,0.4416718868620393,1.2623362819368462,0.01457282039896661,1.1243364780527092,0.16630377296957227,1.2765043209258407,0.010000191358858813,1.1812278487154326,0.09730550692167428 -01037,0.44250509781251113,0.01782556081693689,0.19104232765011958,0.19059359407043908,0.44165119616735715,1.2231372971777534,0.01457282039896661,1.1480725158111622,0.16630377296957227,1.2322231615195265,0.010000191358858813,1.1976491778415337,0.09730550692167428 -01039,0.4348461444463979,0.01901141821560335,0.19030201291942322,0.19609618593950645,0.4416648482555335,1.3041568654809335,0.01457282039896661,1.1421580269722234,0.16630377296957227,1.3412169305386072,0.010000191358858813,1.209522705371085,0.09730550692167428 -01041,0.4246813854737316,0.017694899282788668,0.18323440143354225,0.18812452816688724,0.4416832745003213,1.214107065739202,0.01457282039896661,1.099149424302011,0.16630377296957227,1.233866775037932,0.010000191358858813,1.1462759499982664,0.09730550692167428 -01043,0.4184236584526928,0.016495835956814517,0.17781487248368372,0.1793237197265739,0.44169184899209224,1.1318893283461693,0.01457282039896661,1.067601054479924,0.16630377296957227,1.1495937011777826,0.010000191358858813,1.0998523271686285,0.09730550692167428 -01045,0.39887965600199665,0.014639845057507277,0.16584379094012142,0.16729197200278667,0.44172081952283937,1.005032755395641,0.01457282039896661,0.9959346313182207,0.16630377296957227,1.0077927824803594,0.010000191358858813,0.9996571962083138,0.09730550692167428 -01047,0.40093817638939544,0.015470627663366723,0.16864904295261696,0.1732315098978385,0.44171724476352936,1.0623727414415047,0.01457282039896661,1.0127096743575144,0.16630377296957227,1.0685106267069617,0.010000191358858813,1.0324864343418574,0.09730550692167428 -01049,0.4051934159113758,0.015349413668412514,0.16938767502745333,0.17138381259570193,0.4417128179161791,1.0536688850093066,0.01457282039896661,1.017184249014632,0.16630377296957227,1.0683653352460705,0.010000191358858813,1.0369181394700218,0.09730550692167428 -01051,0.39959368727382416,0.013579346200356406,0.16326090484555272,0.16021509981644216,0.4417183387923286,0.9322107321534583,0.01457282039896661,0.9835403800234752,0.16630377296957227,0.9282667546297025,0.010000191358858813,0.9752134374254665,0.09730550692167428 -01053,0.4144988908486727,0.015975185331529244,0.17482526859829156,0.17530796159840006,0.441698092768392,1.095945617853558,0.01457282039896661,1.0486238087083775,0.16630377296957227,1.1149679375382884,0.010000191358858813,1.0742624777097851,0.09730550692167428 -01055,0.42101022491960527,0.017061049045697368,0.18097111991811476,0.18403687709808594,0.44168586372503515,1.1699328827887239,0.01457282039896661,1.086382273592729,0.16630377296957227,1.18073591766658,0.010000191358858813,1.119436132025623,0.09730550692167428 -01057,0.43406889513707314,0.018571958206923908,0.18914248226266098,0.19423172269513378,0.44166489947526005,1.274261456956827,0.01457282039896661,1.1355247549744907,0.16630377296957227,1.2992748004686219,0.010000191358858813,1.1959040535551835,0.09730550692167428 -01059,0.41260519386166294,0.016137689127102034,0.1734622476932903,0.1756225788671871,0.4417048592940352,1.1074879635840473,0.01457282039896661,1.041560558994928,0.16630377296957227,1.1382767852037872,0.010000191358858813,1.076536357786169,0.09730550692167428 -01061,0.4326525860333556,0.018681026792955746,0.18939694433449838,0.19456673281749548,0.4416631047571481,1.2818933962619696,0.01457282039896661,1.1369388030699075,0.16630377296957227,1.3079222924668588,0.010000191358858813,1.1944122720060117,0.09730550692167428 -01063,0.4179523341733681,0.017473952724495766,0.18066374475427832,0.18813444805554858,0.44168519717065474,1.1981215638739964,0.01457282039896661,1.0860793406983704,0.16630377296957227,1.2076794725145272,0.010000191358858813,1.135103471846631,0.09730550692167428 -01065,0.4054530352552591,0.01556291341499177,0.17092266293503167,0.1735217688678428,0.4417044354890404,1.0677439054532938,0.01457282039896661,1.0276275492467866,0.16630377296957227,1.075111437662192,0.010000191358858813,1.048492324655307,0.09730550692167428 -01067,0.4379993860740826,0.019001253151677652,0.19120717598589398,0.1966669626743025,0.441661849478947,1.3037336492462333,0.01457282039896661,1.1475036948617543,0.16630377296957227,1.3374549915028464,0.010000191358858813,1.2169452394157296,0.09730550692167428 -01069,0.4087832126119567,0.015463214942265015,0.171447598832912,0.1722805047767176,0.4417065841748963,1.0612931551668905,0.01457282039896661,1.0300893767672794,0.16630377296957227,1.0734030448035383,0.010000191358858813,1.0483460294030174,0.09730550692167428 -01071,0.4301199471154128,0.01725886516675016,0.18333257019032123,0.18399020185086423,0.44167877481522394,1.1842874717644996,0.01457282039896661,1.1013257819620308,0.16630377296957227,1.21559736534704,0.010000191358858813,1.1511319981542092,0.09730550692167428 -01073,0.4018503662974031,0.014877240206112792,0.16846128528826265,0.16917834521552635,0.4417110422476629,1.0211124363504074,0.01457282039896661,1.0116937694946424,0.16630377296957227,1.019707279136345,0.010000191358858813,1.0123839458912005,0.09730550692167428 -01075,0.43948276685145926,0.018947705157429585,0.1911115729745059,0.19394200024782682,0.44166475791094506,1.2995268030683005,0.01457282039896661,1.1458380816476121,0.16630377296957227,1.3494779032872941,0.010000191358858813,1.2197630595070112,0.09730550692167428 -01077,0.4233781163148792,0.017415499709384635,0.1819031253888035,0.18541913225896967,0.4416841681817787,1.1945821719123768,0.01457282039896661,1.0924870505180064,0.16630377296957227,1.219914278724397,0.010000191358858813,1.1350074714898506,0.09730550692167428 -01079,0.4164419168645906,0.015513920011380583,0.17451856184501868,0.17341600287102205,0.4416962418346739,1.0645789806335317,0.01457282039896661,1.0498319754046233,0.16630377296957227,1.0715603339019943,0.010000191358858813,1.0689317208096067,0.09730550692167428 -01081,0.36066243937513365,0.010823376233578662,0.14125895085718576,0.14047721491646015,0.44176666106766976,0.7427327810911637,0.01457282039896661,0.8504854079060513,0.16630377296957227,0.733963671431124,0.010000191358858813,0.8007252471825492,0.09730550692167428 -01083,0.40783619388531267,0.014149832748569825,0.16676857345086857,0.16272352548824218,0.44171130785934787,0.9708774700117526,0.01457282039896661,1.0062996122808807,0.16630377296957227,0.9822852561581139,0.010000191358858813,1.0120049032557503,0.09730550692167428 -01085,0.40999867742605317,0.015400867193698303,0.17055313902529484,0.17113138905526795,0.4417076557321448,1.057029218994813,0.01457282039896661,1.0263046651188774,0.16630377296957227,1.0804319743082575,0.010000191358858813,1.056518797895093,0.09730550692167428 -01087,0.3957130122269117,0.015349330154350443,0.16670224203601608,0.17357302780517261,0.44171163680431985,1.05330920132318,0.01457282039896661,1.003967673789211,0.16630377296957227,1.0537166251871681,0.010000191358858813,1.0195140650858183,0.09730550692167428 -01089,0.3989993959114894,0.013961349841246133,0.16343338331191826,0.16161338918463813,0.4417195811152601,0.9582917128840337,0.01457282039896661,0.9854925815066116,0.16630377296957227,0.9668412473427259,0.010000191358858813,0.9843974274969021,0.09730550692167428 -01091,0.4190529742457214,0.01714488136332505,0.17908579395338686,0.18446598133701217,0.44168783770591,1.1763842974341157,0.01457282039896661,1.076208653615717,0.16630377296957227,1.2000711794451533,0.010000191358858813,1.1242269088746157,0.09730550692167428 -01093,0.4386142605048059,0.018861923082900352,0.19168649629450263,0.19566318827682508,0.4416583765454337,1.2943377508415543,0.01457282039896661,1.1505257826411812,0.16630377296957227,1.3241552586032062,0.010000191358858813,1.2113226418903271,0.09730550692167428 -01095,0.40841145947555757,0.015630778612301218,0.17137146049419935,0.1732045915868528,0.44170793324123264,1.072484939175214,0.01457282039896661,1.029454224371352,0.16630377296957227,1.0890799775263464,0.010000191358858813,1.0527937171405166,0.09730550692167428 -01097,0.39697097351249133,0.014457130025603993,0.16458882277059012,0.16580655443011366,0.4417204774970303,0.9921971671822976,0.01457282039896661,0.9898786598971914,0.16630377296957227,0.9961725900464498,0.010000191358858813,0.9931892681873289,0.09730550692167428 -01099,0.4118587152646791,0.016742726587634274,0.17701891432696534,0.18221598608215892,0.4416938208374215,1.1481077913119517,0.01457282039896661,1.0624606977330715,0.16630377296957227,1.1550946235210113,0.010000191358858813,1.0941180067470593,0.09730550692167428 -01101,0.38876293302339293,0.013652682009842872,0.15977829329977145,0.1607319220160524,0.4417306875860778,0.9369525968442736,0.01457282039896661,0.9610362970305832,0.16630377296957227,0.9319586324117768,0.010000191358858813,0.9478516598450959,0.09730550692167428 -01103,0.41092256885523043,0.015396381338077691,0.17176318121687378,0.17149121819923335,0.4417042041496806,1.0565928756056422,0.01457282039896661,1.0323314578914387,0.16630377296957227,1.0721190973715085,0.010000191358858813,1.051335869482438,0.09730550692167428 -01105,0.402234918410005,0.017253256858187637,0.17176825494846296,0.18236882075662758,0.44171284942764866,1.183176166868025,0.01457282039896661,1.0323116194422286,0.16630377296957227,1.2274216077357836,0.010000191358858813,1.0841845940459336,0.09730550692167428 -01107,0.42419481274635645,0.01753540335243451,0.18169136640611538,0.18485399533574287,0.44168528094173387,1.2027691148784148,0.01457282039896661,1.0906392304347978,0.16630377296957227,1.242549651348085,0.010000191358858813,1.1468739901819278,0.09730550692167428 -01109,0.38266572290250833,0.01386807313671913,0.15785185515486516,0.16182509297406497,0.4417326694327546,0.9514833511813083,0.01457282039896661,0.9497337328745424,0.16630377296957227,0.955156570210139,0.010000191358858813,0.9414476091470756,0.09730550692167428 -01111,0.42267847296959377,0.017524435488666147,0.18167731854444938,0.18552011103026153,0.44168540507777343,1.2012375187380377,0.01457282039896661,1.0901323897552877,0.16630377296957227,1.2317586975856445,0.010000191358858813,1.140404910218891,0.09730550692167428 -01113,0.39838819782680246,0.014458137226623147,0.1645625140259966,0.16606457037128775,0.44171992895021517,0.9926010107327623,0.01457282039896661,0.9904764860545514,0.16630377296957227,0.9982899587517864,0.010000191358858813,0.9970738785852706,0.09730550692167428 -01115,0.4087290185202217,0.014349926803313753,0.16787500532880295,0.1645267752055547,0.44171007564722453,0.9845350316937586,0.01457282039896661,1.0111494298433543,0.16630377296957227,0.994008206873592,0.010000191358858813,1.0195164272400665,0.09730550692167428 -01117,0.3922956691082604,0.012400546334480489,0.15700338947282938,0.15191280589904396,0.4417323683470485,0.8509008904033287,0.01457282039896661,0.9465601326651356,0.16630377296957227,0.8415393976373665,0.010000191358858813,0.9252850986813648,0.09730550692167428 -01119,0.39867339433263094,0.015959638853045202,0.16960750706797273,0.17632065289255333,0.44170763666161716,1.0951324613152185,0.01457282039896661,1.019496761395274,0.16630377296957227,1.104137425801978,0.010000191358858813,1.0422561309942093,0.09730550692167428 -01121,0.4129631298965608,0.01556316672594055,0.17341974455127016,0.17340765065682945,0.4416995839679368,1.0680186518455912,0.01457282039896661,1.0415205334447908,0.16630377296957227,1.077531873395867,0.010000191358858813,1.0606543862234319,0.09730550692167428 -01123,0.4317079735535041,0.01789178778612964,0.18609175463333222,0.1898145707343378,0.4416715646373043,1.2278561342557288,0.01457282039896661,1.117726981972682,0.16630377296957227,1.2504159327187332,0.010000191358858813,1.17128986909089,0.09730550692167428 -01125,0.3752830174930797,0.01260436749818607,0.15220585312341606,0.15329786071273002,0.4417444310324359,0.8647968659919879,0.01457282039896661,0.915078178970592,0.16630377296957227,0.8575027968909481,0.010000191358858813,0.8857238867757274,0.09730550692167428 -01127,0.4282695014070296,0.017548387499484553,0.1839012107349049,0.18624615822275922,0.44167957376140876,1.2038846063745,0.01457282039896661,1.1034672590039265,0.16630377296957227,1.231157282421726,0.010000191358858813,1.1517372696704946,0.09730550692167428 -01129,0.41289402602729597,0.016516135557848165,0.1756712967120827,0.17990113221190912,0.4416983112588586,1.1326508921479963,0.01457282039896661,1.0543579189008365,0.16630377296957227,1.1491531504087074,0.010000191358858813,1.0905205487350924,0.09730550692167428 -01131,0.399399882481159,0.015048378213471417,0.16715584064408429,0.17148877762226666,0.4417165651164122,1.0331287266291103,0.01457282039896661,1.003361673089313,0.16630377296957227,1.0293830879328085,0.010000191358858813,1.019587359950786,0.09730550692167428 -01133,0.44008232778451706,0.018364107559234035,0.1884337285850773,0.18989704250315922,0.44166073340901746,1.2596264754751634,0.01457282039896661,1.1337102740268312,0.16630377296957227,1.3167695471761707,0.010000191358858813,1.207487448168119,0.09730550692167428 -02013,0.4100538691422879,0.007586760512824756,0.1544895572022661,0.11865218774035377,0.4416982444019206,0.5191450349545791,0.01457282039896661,0.9344473883172429,0.16630377296957227,0.47527254589281454,0.010000191358858813,0.8180923249773248,0.09730550692167428 -02016,0.42668587180623196,0.00813173967976316,0.16229323793892664,0.12322767808756774,0.44167063671809753,0.5565498791271133,0.01457282039896661,0.9858187316080074,0.16630377296957227,0.5085431704456673,0.010000191358858813,0.8790817406037894,0.09730550692167428 -02020,0.37110015119021633,0.010075886775678505,0.1431691450692817,0.13629317725991244,0.4417604440872426,0.6909567613788175,0.01457282039896661,0.8646897257608203,0.16630377296957227,0.667583873507732,0.010000191358858813,0.812812817834952,0.09730550692167428 -02050,0.3237367992456504,0.008017848501850677,0.11888381051792349,0.12180071897603686,0.44182790497426827,0.5502366027238959,0.01457282039896661,0.7181546840011221,0.16630377296957227,0.5225774558536365,0.010000191358858813,0.6503036454190385,0.09730550692167428 -02060,0.39302809257026916,0.013460448672366038,0.16025334961259824,0.15972101729591567,0.4417353544679544,0.9231893290290387,0.01457282039896661,0.9588896073388283,0.16630377296957227,0.9161266161912516,0.010000191358858813,0.9781363441998465,0.09730550692167428 -02068,0.41006574698546094,0.009249846481775237,0.15715576086752647,0.1318156609650678,0.44171477383117547,0.6337200594497976,0.01457282039896661,0.9526514712124476,0.16630377296957227,0.5839753463054886,0.010000191358858813,0.8999204452807301,0.09730550692167428 -02070,0.34905480406081246,0.009654550593441162,0.13370678543762438,0.13373812207618113,0.44178764047018426,0.6619878174517942,0.01457282039896661,0.8076217370214431,0.16630377296957227,0.6345058061196502,0.010000191358858813,0.7607799521007763,0.09730550692167428 -02090,0.3597871270701358,0.009121182800902955,0.1368655981069516,0.13019574543906012,0.44177500278553017,0.6258193450332183,0.01457282039896661,0.8261898802060126,0.16630377296957227,0.594186722880344,0.010000191358858813,0.7584163378813499,0.09730550692167428 -02100,0.4678621742569701,0.023942202329798525,0.2178118040470397,0.23114562878965889,0.44160360346420013,1.6430714107485973,0.01457282039896661,1.304458173473772,0.16630377296957227,1.6776911795568235,0.010000191358858813,1.4295995414869296,0.09730550692167428 -02105,0.461993683361277,0.016816167726902986,0.1943813867925819,0.18026442197206094,0.44163090156059354,1.1519277698720154,0.01457282039896661,1.1636328156061237,0.16630377296957227,1.1848753613389198,0.010000191358858813,1.2234131048212473,0.09730550692167428 -02110,0.3969389622452797,0.011563969371268364,0.15687736156976734,0.14713831741451758,0.44172533425993243,0.7930457847198598,0.01457282039896661,0.9495074005623609,0.16630377296957227,0.7735166891501524,0.010000191358858813,0.9221641948275698,0.09730550692167428 -02122,0.41035622300330143,0.013335225882737504,0.16675153850991903,0.15937259626053796,0.4417079243110349,0.9145170611929139,0.01457282039896661,1.0065486426719628,0.16630377296957227,0.9036111004187042,0.010000191358858813,1.0059152701053087,0.09730550692167428 -02130,0.3990698617237137,0.012655931031266963,0.16017376302385095,0.1532262379824122,0.441723158732642,0.8682630084121447,0.01457282039896661,0.9680243615370645,0.16630377296957227,0.8634437434487929,0.010000191358858813,0.9548561718103786,0.09730550692167428 -02150,0.3662464320737877,0.009630291172314362,0.13972073211167477,0.13342359291638262,0.44177023047507885,0.66124851379543,0.01457282039896661,0.84617863430695,0.16630377296957227,0.6369845711084345,0.010000191358858813,0.794621844085311,0.09730550692167428 -02164,0.3240753233267377,0.0095356404058376,0.1223355486033508,0.13383184973614626,0.44183082053365513,0.6541994714967435,0.01457282039896661,0.740998218807084,0.16630377296957227,0.6245963742295468,0.010000191358858813,0.7176986269917738,0.09730550692167428 -02170,0.37380208629131617,0.010475403885648271,0.14487300811762918,0.13902947886639339,0.44175823503941586,0.718512107885166,0.01457282039896661,0.8741691430031769,0.16630377296957227,0.6981321789681335,0.010000191358858813,0.8374888558764988,0.09730550692167428 -02180,0.338485973415871,0.008504053228381167,0.1254310997888355,0.1252733666958753,0.44181338235789114,0.583345518498523,0.01457282039896661,0.7568617986994834,0.16630377296957227,0.55917988719282,0.010000191358858813,0.700844948367863,0.09730550692167428 -02185,0.3385040033298764,0.008854985943558966,0.1270596599835422,0.12863691932942226,0.4417998399987907,0.6069463261614169,0.01457282039896661,0.7695992414595201,0.16630377296957227,0.580058840068444,0.010000191358858813,0.7059502645302786,0.09730550692167428 -02188,0.32632718128643295,0.00826188499231577,0.12106417475879165,0.12398433543471066,0.4418210009768403,0.5668315203521849,0.01457282039896661,0.7316096716503373,0.16630377296957227,0.535211419851872,0.010000191358858813,0.6623784520181399,0.09730550692167428 -02195,0.42326638305552444,0.012996564272261292,0.1716211212655645,0.16005328803519644,0.44168969402920194,0.8904640423162349,0.01457282039896661,1.0363488266563043,0.16630377296957227,0.8575956656629915,0.010000191358858813,1.0332914655435705,0.09730550692167428 -02198,0.40660036888233575,0.012095837590969223,0.16121878096428124,0.15061705656088192,0.4417203984078653,0.8296370707390301,0.01457282039896661,0.9719469413501067,0.16630377296957227,0.8197081191379729,0.010000191358858813,0.966280020621949,0.09730550692167428 -02220,0.4041768078288858,0.012796445862126513,0.1626971810070791,0.15456007408958922,0.44171472986997606,0.8775402946568809,0.01457282039896661,0.9843512752011679,0.16630377296957227,0.8704239741746727,0.010000191358858813,0.9741214406248784,0.09730550692167428 -02230,0.3836482556491312,0.009395740970148055,0.14806048258809984,0.13206142642009083,0.4417407348545608,0.6437716756352739,0.01457282039896661,0.8954642614524141,0.16630377296957227,0.6059540004070161,0.010000191358858813,0.8282885699776336,0.09730550692167428 -02240,0.38424007936578775,0.011311110277471538,0.15082309930113047,0.14472685945407077,0.4417475836570094,0.7760300025846009,0.01457282039896661,0.9084458753896077,0.16630377296957227,0.7630259622999742,0.010000191358858813,0.8884191228659704,0.09730550692167428 -02261,0.3993554834906341,0.011705987158342899,0.15835318905773602,0.14737385235950784,0.4417264162005406,0.8028701652419332,0.01457282039896661,0.9539669405550097,0.16630377296957227,0.7871712578686176,0.010000191358858813,0.9336517156472055,0.09730550692167428 -02270,0.29772634158254974,0.007129173268241381,0.10620515926804358,0.11600987220923117,0.44186001445896417,0.4894615791129614,0.01457282039896661,0.6435671866343184,0.16630377296957227,0.45749127566791664,0.010000191358858813,0.5670334216350896,0.09730550692167428 -02275,0.4234049439053999,0.017567771437767457,0.18081212043525813,0.18278605820905502,0.44168997501824486,1.2053275309947713,0.01457282039896661,1.0844822742857034,0.16630377296957227,1.2610378437643626,0.010000191358858813,1.1516808897534334,0.09730550692167428 -02282,0.3899786665415616,0.014018466369556804,0.15928925084572448,0.16496790350159157,0.44173664779230437,0.9619015218730083,0.01457282039896661,0.955845568914046,0.16630377296957227,0.9561675216370965,0.010000191358858813,0.9793306885825495,0.09730550692167428 -02290,0.3848598278886364,0.012066155103321964,0.15331767473631883,0.14975355356037012,0.44174531312655796,0.8279015067356387,0.01457282039896661,0.9223730053409025,0.16630377296957227,0.8183150544812345,0.010000191358858813,0.910143779432194,0.09730550692167428 -04001,0.36862835508874625,0.01284740960192517,0.1480341570752931,0.15461872047222353,0.4417617569717226,0.8816113830251899,0.01457282039896661,0.8927795143531017,0.16630377296957227,0.8854917197285045,0.010000191358858813,0.8911572649083551,0.09730550692167428 -04003,0.42428873804870554,0.01782221615273062,0.18234254172268377,0.1873524080592423,0.4416856797233797,1.2221947976110095,0.01457282039896661,1.0949114900399866,0.16630377296957227,1.2600772135634157,0.010000191358858813,1.1514234116572402,0.09730550692167428 -04005,0.36610114074208,0.010961896843277117,0.14379598053581827,0.14227688825323087,0.441762087396611,0.7521436777385873,0.01457282039896661,0.8663643075089194,0.16630377296957227,0.7381000267458584,0.010000191358858813,0.8250419952790669,0.09730550692167428 -04007,0.462718114251194,0.022391425713071546,0.20773474628705949,0.21871774149885717,0.4416262045005164,1.5371451105752278,0.01457282039896661,1.247245464064459,0.16630377296957227,1.603237930354965,0.010000191358858813,1.3708890949633186,0.09730550692167428 -04009,0.37345796697712075,0.013207200962284234,0.15159588025907877,0.1561877017488283,0.4417537344989883,0.9069217047915314,0.01457282039896661,0.9129121034264283,0.16630377296957227,0.9159911610354705,0.010000191358858813,0.9039926588730756,0.09730550692167428 -04011,0.38676501068761426,0.01334616844200075,0.15738149617116992,0.15801125527205243,0.44173770955256036,0.9158561377602858,0.01457282039896661,0.9477800389661185,0.16630377296957227,0.9147880390149817,0.010000191358858813,0.9450180127861794,0.09730550692167428 -04012,0.5187121536979079,0.02950359025477465,0.24250430663477052,0.26029634148495717,0.44154392547538107,2.0225273221396787,0.01457282039896661,1.4513366641953913,0.16630377296957227,2.198204220753845,0.010000191358858813,1.6953852607740831,0.09730550692167428 -04013,0.3828342291148128,0.013290988507448668,0.15609245992673093,0.15774638562810678,0.44174111797880955,0.9121973002198877,0.01457282039896661,0.9388178076366587,0.16630377296957227,0.910587366274699,0.010000191358858813,0.9238278493055563,0.09730550692167428 -04015,0.46382124362881144,0.021963523734736253,0.20667543451714837,0.2148254818890145,0.44162554338135807,1.5076685375960408,0.01457282039896661,1.240195458362845,0.16630377296957227,1.5812225612051671,0.010000191358858813,1.363034105645127,0.09730550692167428 -04017,0.3827306398170765,0.013924105667180778,0.15593647610200762,0.16137484439277622,0.4417446365044012,0.9557839620279199,0.01457282039896661,0.9389197902039572,0.16630377296957227,0.9699299990058583,0.010000191358858813,0.951494297540412,0.09730550692167428 -04019,0.40912397544031687,0.01626774066298525,0.17389409846804504,0.17813167387288298,0.44170167103489755,1.1160273023059828,0.01457282039896661,1.0450092147482433,0.16630377296957227,1.1296064875208796,0.010000191358858813,1.068279263845104,0.09730550692167428 -04021,0.4015993790264043,0.01487354327111548,0.1653918561254798,0.16656800733455063,0.4417244523538848,1.0212245508251665,0.01457282039896661,0.9932791692272599,0.16630377296957227,1.0495347627990443,0.010000191358858813,1.0142006259429812,0.09730550692167428 -04023,0.38785025571623966,0.014935064215928037,0.1612049407231263,0.1686311722596765,0.441733182135701,1.0255893204463047,0.01457282039896661,0.9699677554241914,0.16630377296957227,1.040736613427197,0.010000191358858813,0.9928040405669558,0.09730550692167428 -04025,0.4722432068205271,0.022937296670482082,0.21362968436412713,0.22288874006548254,0.4416047388742501,1.5748311901753969,0.01457282039896661,1.28271823291537,0.16630377296957227,1.6360606509771445,0.010000191358858813,1.406120706112587,0.09730550692167428 -04027,0.39155569795345563,0.01610201031219312,0.16501976556467154,0.17492544186727682,0.44172826032441537,1.1050419569749454,0.01457282039896661,0.9920626578959657,0.16630377296957227,1.1380284605180417,0.010000191358858813,1.0246528290064196,0.09730550692167428 -05001,0.42645622025395763,0.017860764879760405,0.18564314084724592,0.1895483994849359,0.441673105201308,1.2247051027950135,0.01457282039896661,1.1145569725820277,0.16630377296957227,1.238851949171365,0.010000191358858813,1.1594621375471297,0.09730550692167428 -05003,0.4189120294829386,0.016816446983462147,0.17747214701821776,0.18127663463189217,0.44169562080064184,1.153196999342409,0.01457282039896661,1.064844788932061,0.16630377296957227,1.1817947370978246,0.010000191358858813,1.1107794947510732,0.09730550692167428 -05005,0.49098425607774104,0.026171130074663485,0.22914214657232082,0.24431435290502634,0.44156933209087,1.7962033444285552,0.01457282039896661,1.375818399120245,0.16630377296957227,1.874736004567084,0.010000191358858813,1.5331239620807091,0.09730550692167428 -05007,0.3846002169917414,0.013645838512662326,0.15743924773897613,0.1598255745648645,0.44174001077990754,0.936709385175436,0.01457282039896661,0.9472655558380997,0.16630377296957227,0.9403499006220594,0.010000191358858813,0.9396998117679638,0.09730550692167428 -05009,0.427190626312842,0.018655099126741095,0.18702106496336665,0.1940089177426737,0.44167619303133643,1.2792084666150336,0.01457282039896661,1.122341472476593,0.16630377296957227,1.3073810729868773,0.010000191358858813,1.1780263206442052,0.09730550692167428 -05011,0.425129032505816,0.01822232854323071,0.18514610516335606,0.19074963638033227,0.44167917310467364,1.249483838680891,0.01457282039896661,1.1106728395973757,0.16630377296957227,1.277269959676027,0.010000191358858813,1.1596025266245524,0.09730550692167428 -05013,0.4314405306477196,0.018267621143274106,0.1869848173498921,0.1896268967702644,0.44167154935698627,1.253768325335197,0.01457282039896661,1.121114747041358,0.16630377296957227,1.2956899759920553,0.010000191358858813,1.176018859140921,0.09730550692167428 -05015,0.4460841274047924,0.01936485981906575,0.19410253925859225,0.19928745961192573,0.44165605920540363,1.3280426056134715,0.01457282039896661,1.1653667853535876,0.16630377296957227,1.3659225981609016,0.010000191358858813,1.2461268430830923,0.09730550692167428 -05017,0.4284204405341213,0.018456382567197328,0.18716727283120055,0.19302942182107355,0.4416727097946973,1.2660579465035102,0.01457282039896661,1.1232951705109608,0.16630377296957227,1.2902091540409724,0.010000191358858813,1.1775154883271126,0.09730550692167428 -05019,0.39219475994832964,0.015752893011254758,0.1665990528731922,0.17433624775834367,0.441715012387481,1.0805278992393927,0.01457282039896661,1.0026619515921675,0.16630377296957227,1.0945533566416463,0.010000191358858813,1.014667489182785,0.09730550692167428 -05021,0.4407036976027563,0.019969101702893413,0.19551663940290392,0.20399152235451434,0.44165140660434454,1.3704586625841642,0.01457282039896661,1.173604712577677,0.16630377296957227,1.400014117844333,0.010000191358858813,1.2474555767501023,0.09730550692167428 -05023,0.46537999655134465,0.02270984344930217,0.21119034601414688,0.22158764027939523,0.44161203479737454,1.558410245007242,0.01457282039896661,1.2680970013299886,0.16630377296957227,1.612487966391185,0.010000191358858813,1.3793362047517217,0.09730550692167428 -05025,0.420304601014692,0.0172066122537462,0.17815051441861424,0.18191244574148271,0.44169454156394516,1.180377074627243,0.01457282039896661,1.0690664612926652,0.16630377296957227,1.2294855448868227,0.010000191358858813,1.126738945380469,0.09730550692167428 -05027,0.40416914947796434,0.016928183859138062,0.17381952329534106,0.1814668952242432,0.44170287545326264,1.1610022765632177,0.01457282039896661,1.0445055189590873,0.16630377296957227,1.184308707432145,0.010000191358858813,1.0747141234618303,0.09730550692167428 -05029,0.42089062739226446,0.017694575555291605,0.1812107178321193,0.1864109241666967,0.44168676849277855,1.213066751173512,0.01457282039896661,1.0877769385073783,0.16630377296957227,1.2490493621796892,0.010000191358858813,1.138247495578161,0.09730550692167428 -05031,0.3821361412386961,0.013440426595274606,0.15656751177488346,0.15925601512224252,0.44173840816863946,0.9227358885877914,0.01457282039896661,0.9415628128701472,0.16630377296957227,0.9193891021770495,0.010000191358858813,0.9261979783796921,0.09730550692167428 -05033,0.4007392757699925,0.01432543419949395,0.1641162527031427,0.16360054125601692,0.44172176456876144,0.9838112395761702,0.01457282039896661,0.9891394625479792,0.16630377296957227,1.0015138864080388,0.010000191358858813,1.0024298208242122,0.09730550692167428 -05035,0.37557894589255125,0.012444530272818619,0.15040603757593862,0.1520733647041901,0.44175567268005145,0.8538814437384072,0.01457282039896661,0.9060309969210958,0.16630377296957227,0.8486876947846259,0.010000191358858813,0.8905405154825642,0.09730550692167428 -05037,0.4097769521062429,0.016318208942625978,0.17458326553935505,0.17939124649032187,0.44169944880776,1.1191787161291014,0.01457282039896661,1.049054063243498,0.16630377296957227,1.1256069496474062,0.010000191358858813,1.0760991866805596,0.09730550692167428 -05039,0.42906268651609764,0.01878954005080509,0.1877617649173149,0.19536480166315273,0.4416717031137949,1.2891497104029548,0.01457282039896661,1.12816393222514,0.16630377296957227,1.3179417680132286,0.010000191358858813,1.189002035274361,0.09730550692167428 -05041,0.4080463871356679,0.016246828658450035,0.17331976272159239,0.17888392332643882,0.4417077894219147,1.1150324504910365,0.01457282039896661,1.0407156909286654,0.16630377296957227,1.1227434365714355,0.010000191358858813,1.0716873985959359,0.09730550692167428 -05043,0.40167162601375306,0.01572874799190275,0.17014822716972033,0.1749508650575961,0.44170779243225433,1.078891671613159,0.01457282039896661,1.023433287949764,0.16630377296957227,1.0861706492309273,0.010000191358858813,1.038127111133866,0.09730550692167428 -05045,0.3682464104933073,0.01170943678977074,0.1469502788620945,0.14752817302944915,0.4417560069581648,0.8033897369671698,0.01457282039896661,0.8849805973842835,0.16630377296957227,0.7886696686577637,0.010000191358858813,0.8448252310008205,0.09730550692167428 -05047,0.4206685778886027,0.01789244100322329,0.18284025107316437,0.18905808838615268,0.4416836856608595,1.2268504671470986,0.01457282039896661,1.0977675982642112,0.16630377296957227,1.2489128637028624,0.010000191358858813,1.1453093560001786,0.09730550692167428 -05049,0.4628138787007742,0.02229934139038526,0.20832552447585334,0.21873067484422354,0.4416239588266676,1.5308507840324463,0.01457282039896661,1.250427680299972,0.16630377296957227,1.5873610710611725,0.010000191358858813,1.365158392622091,0.09730550692167428 -05051,0.4500527940845526,0.020949469729637203,0.2011707964269639,0.2091402423184573,0.44163687780343786,1.4381351251042709,0.01457282039896661,1.2075639441823025,0.16630377296957227,1.4848408737169883,0.010000191358858813,1.2956426842915585,0.09730550692167428 -05053,0.4144820175082544,0.015921344939500946,0.1731851760269857,0.1734312221682081,0.44170001489731303,1.0928203544447568,0.01457282039896661,1.041902808207111,0.16630377296957227,1.128802916863541,0.010000191358858813,1.0759941164725555,0.09730550692167428 -05055,0.40601841856595755,0.01556325269499143,0.17033815537664287,0.17257641331452037,0.44171075117826986,1.0677480397751786,0.01457282039896661,1.0230971161403306,0.16630377296957227,1.084335718916965,0.010000191358858813,1.043465429651833,0.09730550692167428 -05057,0.4019946110975722,0.015902301607891606,0.1706801295616572,0.17642758592414906,0.44171023994344993,1.0907502078200992,0.01457282039896661,1.0245773729872982,0.16630377296957227,1.0939397388938876,0.010000191358858813,1.0445331895207672,0.09730550692167428 -05059,0.42163421916831817,0.017065040636831508,0.18003878057296444,0.18248469935930345,0.4416888629178001,1.1699036330526869,0.01457282039896661,1.080144065172583,0.16630377296957227,1.1975938406778317,0.010000191358858813,1.1228215546156877,0.09730550692167428 -05061,0.4034229540667993,0.016593117857170776,0.17386648536872668,0.18169732725483329,0.4417068455525914,1.138706808660586,0.01457282039896661,1.0429250889404336,0.16630377296957227,1.1386969672828304,0.010000191358858813,1.0656957546148014,0.09730550692167428 -05063,0.4152661057361573,0.016586955117395122,0.1765195125768352,0.1792327127090236,0.4416980451345176,1.1374572040058868,0.01457282039896661,1.0585307067068463,0.16630377296957227,1.1619256940424214,0.010000191358858813,1.0935083919419122,0.09730550692167428 -05065,0.47369803563669544,0.022812098563895565,0.21212636992718853,0.21901153927494166,0.44160890380479345,1.5657738032628075,0.01457282039896661,1.2714640815531955,0.16630377296957227,1.6548012932807847,0.010000191358858813,1.4066874163730398,0.09730550692167428 -05067,0.4260530852093468,0.017063425457761742,0.1827361443421915,0.18367439255085882,0.441679217409928,1.1702573043717446,0.01457282039896661,1.0973079188254213,0.16630377296957227,1.1835918894084179,0.010000191358858813,1.1269300223956225,0.09730550692167428 -05069,0.3991935811207399,0.01474034603438385,0.16681326385376238,0.1685981026247993,0.4417154479652113,1.0121332272487944,0.01457282039896661,1.00210496883328,0.16630377296957227,1.0097467334697494,0.010000191358858813,1.0056420270662545,0.09730550692167428 -05071,0.40253164264425656,0.015502474844173237,0.16962325220591098,0.17355136921098718,0.4417115070512493,1.0636991237149072,0.01457282039896661,1.0192462762326726,0.16630377296957227,1.068296166080034,0.010000191358858813,1.0344946971493791,0.09730550692167428 -05073,0.4362187000528286,0.018980437305390906,0.1893735925285519,0.1941887074916072,0.44166579260225475,1.3021194047725488,0.01457282039896661,1.1369470945306586,0.16630377296957227,1.358050343257319,0.010000191358858813,1.216969335891116,0.09730550692167428 -05075,0.4252237297515047,0.01837976748729122,0.18438663659682294,0.19175980101766177,0.4416816677652721,1.2602920018354016,0.01457282039896661,1.1065711428183864,0.16630377296957227,1.2957700793937783,0.010000191358858813,1.167744707508675,0.09730550692167428 -05077,0.4197408998630184,0.016799568210029467,0.17940321686028698,0.1811306103547143,0.44168396697460566,1.1526550176667114,0.01457282039896661,1.078486178475097,0.16630377296957227,1.1726480816222429,0.010000191358858813,1.1094286361358896,0.09730550692167428 -05079,0.3996595654060849,0.01404448465436508,0.16484197298979555,0.1626738967830412,0.44171126546428585,0.9638272275658966,0.01457282039896661,0.9911538592621509,0.16630377296957227,0.9674359148835101,0.010000191358858813,0.981800698050836,0.09730550692167428 -05081,0.42947192676246815,0.017819915237425064,0.18530928929911478,0.18947823390883708,0.44167520250867276,1.2225081202851673,0.01457282039896661,1.1125365342779565,0.16630377296957227,1.2417043859386636,0.010000191358858813,1.165310253383905,0.09730550692167428 -05083,0.42547293712228323,0.018297342341451084,0.1844327063886563,0.19117613192674288,0.44168195404462146,1.2542682975941193,0.01457282039896661,1.107580757443269,0.16630377296957227,1.2901608574958476,0.010000191358858813,1.1690776545775505,0.09730550692167428 -05085,0.38493131322973184,0.01266879955017855,0.1547110135871843,0.15357727524594533,0.44174097531857426,0.869557205146942,0.01457282039896661,0.9328946989315123,0.16630377296957227,0.8646882522579724,0.010000191358858813,0.9150432665710477,0.09730550692167428 -05087,0.4169130146152512,0.015994632286545442,0.17519484341880925,0.175434185547736,0.44170135890152473,1.0978094770228513,0.01457282039896661,1.0510511602254284,0.16630377296957227,1.1190720713930509,0.010000191358858813,1.0829271404439602,0.09730550692167428 -05089,0.4851011624059386,0.02282533777353793,0.21579720551859116,0.22007752487108484,0.44159572715855094,1.5668921659238824,0.01457282039896661,1.2941223168541545,0.16630377296957227,1.6573273593528397,0.010000191358858813,1.4415057571207108,0.09730550692167428 -05091,0.40225546066024753,0.015263236102355526,0.16871780111725665,0.17146469646486454,0.44171426392308705,1.047650231277542,0.01457282039896661,1.0133047645534032,0.16630377296957227,1.0543145752638226,0.010000191358858813,1.0253605800363377,0.09730550692167428 -05093,0.38611970078982893,0.013808012593675886,0.15851370046094398,0.16124402188965506,0.4417371071072462,0.9475228533225042,0.01457282039896661,0.9532449824755851,0.16630377296957227,0.9497672213717692,0.010000191358858813,0.9518787174968693,0.09730550692167428 -05095,0.43105623790826686,0.019143014112198528,0.1897883740656509,0.1987432421581023,0.4416687892737169,1.3128887179175395,0.01457282039896661,1.1391349537538225,0.16630377296957227,1.335099995135105,0.010000191358858813,1.2065612014270022,0.09730550692167428 -05097,0.4588650192964524,0.02157171601266386,0.20448130453570793,0.21254417964235206,0.44163208603518445,1.4809695876449736,0.01457282039896661,1.2266698330955266,0.16630377296957227,1.546496171834169,0.010000191358858813,1.340303954722649,0.09730550692167428 -05099,0.42532453964824524,0.018112161525856103,0.1856265332043182,0.19111211991744026,0.44167826898425777,1.2425439105431026,0.01457282039896661,1.112184397582956,0.16630377296957227,1.2566254822200777,0.010000191358858813,1.1588081196366002,0.09730550692167428 -05101,0.45199824997082283,0.019970614745058946,0.19842742007465897,0.20302277678450592,0.4416391758671477,1.3706412416917078,0.01457282039896661,1.1915823258305935,0.16630377296957227,1.415098308840979,0.010000191358858813,1.2808490541718482,0.09730550692167428 -05103,0.42766908820873284,0.017994372468685405,0.18548408741515165,0.18948262039159097,0.4416785002334852,1.2335090121258752,0.01457282039896661,1.1133505615605883,0.16630377296957227,1.2579158609422993,0.010000191358858813,1.165409555538318,0.09730550692167428 -05105,0.4331508312610203,0.01771951931586406,0.18428688649606367,0.1843623483306902,0.4416755674325753,1.2158268496965405,0.01457282039896661,1.1082184122512837,0.16630377296957227,1.2735210462063593,0.010000191358858813,1.1726756843041233,0.09730550692167428 -05107,0.39633643707513944,0.016201549906238972,0.1685944710871293,0.17828691026471893,0.4417187327173494,1.111703922727013,0.01457282039896661,1.012672110773082,0.16630377296957227,1.1221479673767782,0.010000191358858813,1.0438418145031572,0.09730550692167428 -05109,0.4148500659838794,0.017952072077981253,0.18031035527911823,0.18985733192007453,0.441693094460958,1.2307368742542764,0.01457282039896661,1.0824935152658544,0.16630377296957227,1.2510504262708877,0.010000191358858813,1.1310135976035496,0.09730550692167428 -05111,0.41653149732167816,0.016466186923593272,0.17691615062940663,0.17958004028427077,0.44169669735742734,1.129676310338829,0.01457282039896661,1.0618709880748287,0.16630377296957227,1.1447357698717384,0.010000191358858813,1.0952585616245647,0.09730550692167428 -05113,0.4402829444556385,0.019716994396692108,0.19307475821747908,0.20048710652707408,0.44166200681127016,1.3529133993188158,0.01457282039896661,1.1589155007363736,0.16630377296957227,1.4020067353066796,0.010000191358858813,1.2447388843661855,0.09730550692167428 -05115,0.3919972936038523,0.01438075504930856,0.16217584552302322,0.16476585503263372,0.4417251679874152,0.9873330439026156,0.01457282039896661,0.9763637336890374,0.16630377296957227,0.9970435083206952,0.010000191358858813,0.9775678016328315,0.09730550692167428 -05117,0.44413288698725484,0.01889745067233893,0.19332191690905393,0.1950500775717014,0.44165338128359183,1.2970252982019004,0.01457282039896661,1.160283512728489,0.16630377296957227,1.3358859228098434,0.010000191358858813,1.2310197309498947,0.09730550692167428 -05119,0.3967020727000689,0.013911683508641089,0.1636913752403396,0.1627168444524691,0.44172189826274016,0.9552334394472131,0.01457282039896661,0.983810349794861,0.16630377296957227,0.9491112229752682,0.010000191358858813,0.9735763175589206,0.09730550692167428 -05121,0.4312452348770339,0.019493002010838006,0.19053601345676047,0.20027818774862527,0.4416672206682114,1.3371567275663803,0.01457282039896661,1.144165300995542,0.16630377296957227,1.3666379479647386,0.010000191358858813,1.2090834469896516,0.09730550692167428 -05123,0.3994756778550007,0.014119404665544136,0.1654724712631796,0.16447951955354762,0.44171630873276424,0.9692813007294492,0.01457282039896661,0.9945846870951001,0.16630377296957227,0.960428132576352,0.010000191358858813,0.987753402840176,0.09730550692167428 -05125,0.41713006254199003,0.015993122474519963,0.17480055967084612,0.17492168348418835,0.44169998970895663,1.0974829990859591,0.01457282039896661,1.0498774580279138,0.16630377296957227,1.1246300233622795,0.010000191358858813,1.0821437904589606,0.09730550692167428 -05127,0.42183286222647104,0.017997762716625145,0.18307670743985288,0.19041567564734824,0.44168342918131553,1.2344159205850294,0.01457282039896661,1.0996914458098352,0.16630377296957227,1.2566060777794652,0.010000191358858813,1.1508468710045787,0.09730550692167428 -05129,0.46030474256026227,0.022098728994908563,0.20848378122994382,0.2195324449973376,0.4416182713185838,1.5171948095406482,0.01457282039896661,1.2520194294803828,0.16630377296957227,1.5511930627891726,0.010000191358858813,1.3522652948316094,0.09730550692167428 -05131,0.3971683625427377,0.014433767756703395,0.1651841393190943,0.16636372828901808,0.44172029564773596,0.9908059114588692,0.01457282039896661,0.9930608772057752,0.16630377296957227,0.9871491102740846,0.010000191358858813,0.9922966826507409,0.09730550692167428 -05133,0.38371564481639087,0.014419525384823453,0.15896481655710276,0.16517947250633536,0.4417407941426782,0.9899051715553188,0.01457282039896661,0.956961190919785,0.16630377296957227,0.9962433118986684,0.010000191358858813,0.9581356866785353,0.09730550692167428 -05135,0.46706551217643577,0.023872211386211706,0.21453190754307333,0.2276920780118461,0.4416080275825748,1.6372008837507623,0.01457282039896661,1.2867395633480667,0.16630377296957227,1.7080320965596907,0.010000191358858813,1.4152027254257613,0.09730550692167428 -05137,0.4659073796655703,0.02186397141834507,0.20787399434766057,0.21535602919067195,0.44161696585058774,1.5010312163313826,0.01457282039896661,1.2481260294168015,0.16630377296957227,1.5619309036601288,0.010000191358858813,1.3633186004634088,0.09730550692167428 -05139,0.4171026880273456,0.016901309738157268,0.17933520809484962,0.18321085836497397,0.44169103934745413,1.1589630991137732,0.01457282039896661,1.0762112314488017,0.16630377296957227,1.1665076285376292,0.010000191358858813,1.106680479857765,0.09730550692167428 -05141,0.461173727330386,0.022944739115048133,0.21157482509982617,0.22284153030201176,0.4416155816758507,1.5742959450407312,0.01457282039896661,1.2697773310763543,0.16630377296957227,1.622775235533737,0.010000191358858813,1.373457797871347,0.09730550692167428 -05143,0.36310158272677673,0.011353893881358188,0.14417775853379794,0.1447481384294967,0.4417650123632295,0.7789087596164943,0.01457282039896661,0.8670070407625666,0.16630377296957227,0.7645168427331362,0.010000191358858813,0.8219061143233524,0.09730550692167428 -05145,0.39716147265854307,0.015125012189652894,0.16634867211063287,0.17008102750413237,0.4417183444129117,1.0379984808803666,0.01457282039896661,0.9996283971013726,0.16630377296957227,1.0483611726856823,0.010000191358858813,1.00940858150045,0.09730550692167428 -05147,0.4369717614294275,0.01891989238467234,0.19096018756347816,0.1957995252234824,0.4416642903518665,1.2985692647196763,0.01457282039896661,1.145390658309142,0.16630377296957227,1.331263639886901,0.010000191358858813,1.2120791276148224,0.09730550692167428 -05149,0.40533790642273326,0.015887385501792677,0.1713268001813471,0.17530686620816213,0.4417086400201812,1.0899157378553082,0.01457282039896661,1.0296024579677108,0.16630377296957227,1.1027448157031379,0.010000191358858813,1.0527176816047545,0.09730550692167428 -06001,0.39522721737883815,0.013129968709084918,0.16119270403735278,0.15731366163276575,0.441722135609402,0.9005367585102009,0.01457282039896661,0.9707669495926483,0.16630377296957227,0.8885092235942923,0.010000191358858813,0.9463102507378571,0.09730550692167428 -06003,0.4091376728198839,0.012674203714438607,0.1634933694928828,0.15287333911087853,0.44172034736167054,0.86868712654247,0.01457282039896661,0.9901617720428755,0.16630377296957227,0.8693889084780579,0.010000191358858813,0.9948583889748136,0.09730550692167428 -06005,0.47151187066292805,0.021026905244402948,0.2100600075434213,0.21036182685020657,0.4415981544081573,1.443345484080455,0.01457282039896661,1.2629722601248297,0.16630377296957227,1.480494737358872,0.010000191358858813,1.3532363371448222,0.09730550692167428 -06007,0.40863423437575264,0.016712958066612733,0.17558437449327602,0.18169980013581402,0.44169597976661407,1.1464683821427295,0.01457282039896661,1.0557829321276664,0.16630377296957227,1.1559979926713653,0.010000191358858813,1.0788456794265775,0.09730550692167428 -06009,0.4739228738622169,0.021890015905647913,0.21154703295754462,0.2158362318095749,0.4416016915447542,1.5028802648779056,0.01457282039896661,1.2704793824955825,0.16630377296957227,1.5600767650668965,0.010000191358858813,1.3894840163480255,0.09730550692167428 -06011,0.3775036102980029,0.01305537360000903,0.15442062923263167,0.15846287633204809,0.4417470256364018,0.896270143519351,0.01457282039896661,0.9296728013126054,0.16630377296957227,0.8724550518973457,0.010000191358858813,0.9103830536122437,0.09730550692167428 -06013,0.40138630488013655,0.0143058771263984,0.16645591978098423,0.16550982474963233,0.44171336652954807,0.981731004908879,0.01457282039896661,1.0019441241458034,0.16630377296957227,0.9755801623670013,0.010000191358858813,0.9998357139510361,0.09730550692167428 -06015,0.416542426490361,0.015564662479437639,0.17407913278656306,0.17187559157571955,0.4416980143509769,1.0676285914478527,0.01457282039896661,1.044883481218787,0.16630377296957227,1.0903925295035615,0.010000191358858813,1.067379915146221,0.09730550692167428 -06017,0.4272578600984168,0.016190621823441297,0.1805476401016794,0.17842560138411823,0.4416790119897939,1.1104199815702858,0.01457282039896661,1.0859729221339531,0.16630377296957227,1.1171587436377968,0.010000191358858813,1.1167186643379585,0.09730550692167428 -06019,0.359137665525609,0.011747209565046626,0.143409796670067,0.148278014819208,0.4417702796996853,0.8062179038942661,0.01457282039896661,0.8638957059971981,0.16630377296957227,0.7883757564899128,0.010000191358858813,0.8277101372168553,0.09730550692167428 -06021,0.3871132253945434,0.014256434740103739,0.160878071354549,0.16550230037044075,0.44173262381633577,0.9784648028630683,0.01457282039896661,0.9673339159335574,0.16630377296957227,0.9713763648606412,0.010000191358858813,0.9653311585623159,0.09730550692167428 -06023,0.41036562086105544,0.015233750846929793,0.1724155304467929,0.17162381672328847,0.4416994908344958,1.0456388343562635,0.01457282039896661,1.0348482476816776,0.16630377296957227,1.047859866034588,0.010000191358858813,1.042371242022944,0.09730550692167428 -06025,0.364814300281533,0.011963823983887865,0.14552295288054812,0.14866901808707172,0.4417646148634691,0.8206456080217199,0.01457282039896661,0.8765884024792314,0.16630377296957227,0.8136753165440922,0.010000191358858813,0.8473128161020331,0.09730550692167428 -06027,0.44648634208888716,0.01988700479359161,0.19861559647143667,0.20434629559700007,0.44163966589378334,1.3648066433537531,0.01457282039896661,1.1924276261672404,0.16630377296957227,1.381755556141768,0.010000191358858813,1.2606083839659112,0.09730550692167428 -06029,0.3569159221578327,0.010859499520571783,0.13958564659717254,0.14146307311838416,0.44177727929250477,0.7447430465187398,0.01457282039896661,0.8419901194393382,0.16630377296957227,0.7289645159269132,0.010000191358858813,0.7992599708271184,0.09730550692167428 -06031,0.35477301111693127,0.009803762345832252,0.13674723283489537,0.13386710909757715,0.4417803670098064,0.672269644852268,0.01457282039896661,0.823722877127864,0.16630377296957227,0.6500343865777014,0.010000191358858813,0.7582322654698928,0.09730550692167428 -06033,0.44425548134642684,0.019092369345853333,0.19431241355978418,0.19841319879849612,0.4416508376017151,1.31028162603708,0.01457282039896661,1.1670547831100415,0.16630377296957227,1.3346745360609509,0.010000191358858813,1.2356372757172966,0.09730550692167428 -06035,0.40176155414596143,0.012002879877977763,0.16083388957497607,0.1487021457445715,0.44171166378336985,0.822272946613084,0.01457282039896661,0.9704974624123828,0.16630377296957227,0.8106173288546841,0.010000191358858813,0.9271703729989502,0.09730550692167428 -06037,0.38145272668290237,0.012518253674148619,0.1541150482331019,0.15291417390764367,0.44173930362125147,0.8587458539618552,0.01457282039896661,0.9282887767642919,0.16630377296957227,0.8461419582458658,0.010000191358858813,0.8972550965848823,0.09730550692167428 -06039,0.37579542438829583,0.012735908579829997,0.1518586388041634,0.1544740455849718,0.44175040078431516,0.8736971023057163,0.01457282039896661,0.9140745078308065,0.16630377296957227,0.8665216055942453,0.010000191358858813,0.8961512087113265,0.09730550692167428 -06041,0.4465118520638026,0.017950034789974853,0.1934372749346673,0.19052784369013465,0.44164627115406924,1.2313441048327647,0.01457282039896661,1.1620181643702572,0.16630377296957227,1.2405355577024801,0.010000191358858813,1.2079349706537839,0.09730550692167428 -06043,0.47087891575936425,0.02094531981718334,0.20878457838239783,0.20956513569255586,0.4416080962731552,1.4376145557890716,0.01457282039896661,1.2539773495454787,0.16630377296957227,1.4817064693970161,0.010000191358858813,1.352221565231581,0.09730550692167428 -06045,0.4283639346203656,0.01727231858199509,0.18448046898190734,0.18692295172663048,0.4416749089926735,1.18467206494914,0.01457282039896661,1.1085452226710863,0.16630377296957227,1.187976709568276,0.010000191358858813,1.1459074066809531,0.09730550692167428 -06047,0.34987258639393837,0.01087315524984462,0.13653251632300795,0.14125640355104285,0.4417867138706913,0.7457762674767957,0.01457282039896661,0.8239989181456873,0.16630377296957227,0.7321417017747971,0.010000191358858813,0.7836145327167601,0.09730550692167428 -06049,0.4537358951978204,0.01933696464365242,0.19738649481337645,0.2004505498172317,0.4416416662049837,1.3267577740703547,0.01457282039896661,1.1861664709695159,0.16630377296957227,1.3560692973589363,0.010000191358858813,1.2659433206119224,0.09730550692167428 -06051,0.39558529214980737,0.011394662761174741,0.15562369811418644,0.14588814403984135,0.44172653320641597,0.7814508124304946,0.01457282039896661,0.9399429976075743,0.16630377296957227,0.7661994838825519,0.010000191358858813,0.9088358941620358,0.09730550692167428 -06053,0.3751878090693649,0.012550719660291915,0.15171861687824587,0.15337007790645946,0.44174958763308153,0.8609338339511365,0.01457282039896661,0.9128004456319081,0.16630377296957227,0.8491474450796239,0.010000191358858813,0.8843579234577448,0.09730550692167428 -06055,0.41653033718083665,0.016733180871170823,0.17870539274763203,0.18189926494343053,0.44168978332297404,1.1473290353249204,0.01457282039896661,1.072950294309696,0.16630377296957227,1.154671380006805,0.010000191358858813,1.098164742505108,0.09730550692167428 -06057,0.46021726587185213,0.020377850651032085,0.20410627442984164,0.2071454499105257,0.4416199184115219,1.3987775564808378,0.01457282039896661,1.2258313746946825,0.16630377296957227,1.4281694412055677,0.010000191358858813,1.3109353902934875,0.09730550692167428 -06059,0.38885274210252185,0.01319693484276668,0.15871452788058854,0.15763601713295472,0.44172945472655123,0.9056089755129088,0.01457282039896661,0.9560152075611174,0.16630377296957227,0.8962578783421173,0.010000191358858813,0.9351851700034943,0.09730550692167428 -06061,0.4149685804661876,0.016163994171427047,0.175888057731108,0.1774686222125224,0.4416955051432264,1.1086944840545356,0.01457282039896661,1.0573312943183206,0.16630377296957227,1.1196706099779248,0.010000191358858813,1.0835135431198917,0.09730550692167428 -06063,0.4734488840267751,0.020979298264691783,0.21008815166060119,0.2114511850085772,0.44160211579792324,1.4402802311909841,0.01457282039896661,1.2627372513414734,0.16630377296957227,1.4740009767418014,0.010000191358858813,1.3631898017045112,0.09730550692167428 -06065,0.3752669478355183,0.01310770487677555,0.1525575703234026,0.15641743450707332,0.44174952615790486,0.8996816172129274,0.01457282039896661,0.9180731431887815,0.16630377296957227,0.8988559335800448,0.010000191358858813,0.904591984722593,0.09730550692167428 -06067,0.3837826082710384,0.013007391130191802,0.1563967446036538,0.15654394499876273,0.44173680291313033,0.8927084719842782,0.01457282039896661,0.9414626708388913,0.16630377296957227,0.8814705894439068,0.010000191358858813,0.9186070143819007,0.09730550692167428 -06069,0.371734736461996,0.011972969006449622,0.14832730260440447,0.1488028979939135,0.44175610379027325,0.8210519172719546,0.01457282039896661,0.8939472579470904,0.16630377296957227,0.8102371225003404,0.010000191358858813,0.865723413241603,0.09730550692167428 -06071,0.35927660404859874,0.010772525934849338,0.14033770232814624,0.14099464866466027,0.44177289075841,0.7385486651778446,0.01457282039896661,0.8470164601651187,0.16630377296957227,0.7208993586999636,0.010000191358858813,0.8028716204133669,0.09730550692167428 -06073,0.3862463195455237,0.013134339962251785,0.15787176873235154,0.15724946986779736,0.44173160498325936,0.9011454352659767,0.01457282039896661,0.9498539108799097,0.16630377296957227,0.8904477376807185,0.010000191358858813,0.9241247611059296,0.09730550692167428 -06075,0.4281354195573423,0.015538128107899512,0.18192537902468092,0.1726873597190967,0.4416648750217679,1.066981555645076,0.01457282039896661,1.0882363653544491,0.16630377296957227,1.0675572932948576,0.010000191358858813,1.078929197719117,0.09730550692167428 -06077,0.3673024031810648,0.012081218056276058,0.14730857333735303,0.15036554225653645,0.4417603107854294,0.8290361704907943,0.01457282039896661,0.8868855235511865,0.16630377296957227,0.8140920884110978,0.010000191358858813,0.857066882567936,0.09730550692167428 -06079,0.4152402874433746,0.016537214722927848,0.1782706918317359,0.18080955567556345,0.44168617839511903,1.1343363403211275,0.01457282039896661,1.071176026572008,0.16630377296957227,1.1387191441444493,0.010000191358858813,1.090527860757792,0.09730550692167428 -06081,0.41386644952634377,0.015202038198396807,0.1739683791747671,0.171371483360438,0.44169635321033696,1.0426554707838427,0.01457282039896661,1.045514914521401,0.16630377296957227,1.0391343797412036,0.010000191358858813,1.0476408247860083,0.09730550692167428 -06083,0.3860131276734251,0.014293632137015608,0.16096722475599612,0.16527994649028388,0.4417273175311087,0.9812705505097308,0.01457282039896661,0.9697194653821207,0.16630377296957227,0.9755066825469326,0.010000191358858813,0.9572122708722726,0.09730550692167428 -06085,0.39058490453022454,0.012772959846146719,0.15812172499576527,0.15448460769574557,0.44173010831376036,0.8761844563652115,0.01457282039896661,0.952339862251699,0.16630377296957227,0.865246526843122,0.010000191358858813,0.9246024640815678,0.09730550692167428 -06087,0.396770575517465,0.013540322986920011,0.16338075631725657,0.16095717807322393,0.44171606998125623,0.9284212830050325,0.01457282039896661,0.9837119872220119,0.16630377296957227,0.9128733364258501,0.010000191358858813,0.9667270029758858,0.09730550692167428 -06089,0.426042367849952,0.01784689525302416,0.18469273756349175,0.18941106608391828,0.44167595422457584,1.2242444416969525,0.01457282039896661,1.109447455905248,0.16630377296957227,1.2423965669340868,0.010000191358858813,1.1567944399212462,0.09730550692167428 -06091,0.4937581769187467,0.021530255557662796,0.21687950430765063,0.2121564727764211,0.44158382389037865,1.4770699544614758,0.01457282039896661,1.3018723831455432,0.16630377296957227,1.5457196967294342,0.010000191358858813,1.431790424199904,0.09730550692167428 -06093,0.45744803748835966,0.02061198590030286,0.2026926337954695,0.20801621637996676,0.4416293665094376,1.4152238939936415,0.01457282039896661,1.2170495446388965,0.16630377296957227,1.4556762421906893,0.010000191358858813,1.3110586170568441,0.09730550692167428 -06095,0.3929545258227235,0.013246711319843691,0.16001781224137415,0.15801428573606918,0.4417266443603261,0.9091890327825711,0.01457282039896661,0.9641938884443897,0.16630377296957227,0.9018280097104997,0.010000191358858813,0.9513260968162122,0.09730550692167428 -06097,0.41469246204917265,0.01570944356599642,0.17577851089025673,0.17572897183557035,0.44169274765740496,1.0777616565433004,0.01457282039896661,1.0559244850114147,0.16630377296957227,1.0733697787091194,0.010000191358858813,1.0675378775592526,0.09730550692167428 -06099,0.3695220919165491,0.01222941664474025,0.14851255763624369,0.1511993230601491,0.44175685613281346,0.8387739277919329,0.01457282039896661,0.8941000522464129,0.16630377296957227,0.8257055448195303,0.010000191358858813,0.8655194953757481,0.09730550692167428 -06101,0.384117514618041,0.013766576850564703,0.15767326760325415,0.16100498994398305,0.4417386252774772,0.9453416900630054,0.01457282039896661,0.9481415063386451,0.16630377296957227,0.9476632254996279,0.010000191358858813,0.9434151162259299,0.09730550692167428 -06103,0.412708453625554,0.016743752717470296,0.17626242319664442,0.181456068192617,0.4416987970871683,1.1485237705188045,0.01457282039896661,1.0580785287614776,0.16630377296957227,1.1658189250619992,0.010000191358858813,1.095357983619731,0.09730550692167428 -06105,0.47073729474296944,0.020363699241049797,0.20679541727377576,0.20689562837178044,0.4416114533143525,1.3979185400909717,0.01457282039896661,1.2418116950870117,0.16630377296957227,1.4352382363560774,0.010000191358858813,1.3363536993024443,0.09730550692167428 -06107,0.35095105677765837,0.011151182163952987,0.13782144090509257,0.14340542904404108,0.44178485980275567,0.7646821767333224,0.01457282039896661,0.831493559826496,0.16630377296957227,0.7496493785543844,0.010000191358858813,0.7935682678497333,0.09730550692167428 -06109,0.4614893956063394,0.02037291098968716,0.20467058154947865,0.2068097123341444,0.44161703641425776,1.3991409672062916,0.01457282039896661,1.2291810181589429,0.16630377296957227,1.4302488317375004,0.010000191358858813,1.3101244923734612,0.09730550692167428 -06111,0.388515117049207,0.013371786464937724,0.15907542750809264,0.1593306570755696,0.4417302488008533,0.9179766307002895,0.01457282039896661,0.9582091996005833,0.16630377296957227,0.9067139859840566,0.010000191358858813,0.9431582276916088,0.09730550692167428 -06113,0.36335778016304904,0.011497447534601055,0.1449077801573587,0.1462791638491307,0.44175909144163505,0.7886926000387371,0.01457282039896661,0.872157069985156,0.16630377296957227,0.7711692277786687,0.010000191358858813,0.8276643001241717,0.09730550692167428 -06115,0.3678060493548013,0.011953765407093652,0.14649130448350328,0.1490319272755404,0.44176353269132707,0.8199947889051744,0.01457282039896661,0.8827154416594871,0.16630377296957227,0.8104140119003624,0.010000191358858813,0.8544587110503996,0.09730550692167428 -08001,0.3632256043842353,0.010390803210118663,0.14093119491346964,0.13776141206443826,0.4417728292154355,0.7128063555763255,0.01457282039896661,0.848864439867698,0.16630377296957227,0.6957842608287238,0.010000191358858813,0.7978467796911854,0.09730550692167428 -08003,0.3745357238901938,0.01283642412718678,0.15167672709859692,0.15506668097038923,0.4417502782893151,0.8806510961334524,0.01457282039896661,0.9133038833508031,0.16630377296957227,0.8741157188202171,0.010000191358858813,0.8981214123873154,0.09730550692167428 -08005,0.38696677277161085,0.012297453190324234,0.15536434934181803,0.1517054504204395,0.44173738264725076,0.8438868043408314,0.01457282039896661,0.9359546011075122,0.16630377296957227,0.8287284214027558,0.010000191358858813,0.9087275734387961,0.09730550692167428 -08007,0.40661107366282456,0.01768663627852795,0.17511401087550932,0.18968874821746112,0.4417029684220538,1.213053226424825,0.01457282039896661,1.0523616357888308,0.16630377296957227,1.2361983179732348,0.010000191358858813,1.1212572722820178,0.09730550692167428 -08009,0.4643283626810075,0.02422394745996394,0.21611675293274898,0.23380910761142654,0.4415999121538944,1.6622627903784584,0.01457282039896661,1.2985987479890966,0.16630377296957227,1.7036287545677575,0.010000191358858813,1.4173611866692428,0.09730550692167428 -08011,0.42773083050436567,0.015503680285082514,0.18093489617624947,0.17353921764607522,0.4416667585175087,1.0635392078975718,0.01457282039896661,1.086802610068986,0.16630377296957227,1.0574571753567894,0.010000191358858813,1.0852601320690716,0.09730550692167428 -08013,0.387989934495373,0.012107613243789332,0.15561812836607064,0.15047180094725526,0.44173137476763574,0.8305821098681551,0.01457282039896661,0.9385502112854194,0.16630377296957227,0.8134926618881375,0.010000191358858813,0.9034433482706483,0.09730550692167428 -08014,0.38556876199025336,0.011644475988950093,0.15329488949958447,0.1472155937665251,0.4417385084317344,0.7985239859131386,0.01457282039896661,0.9258497718173425,0.16630377296957227,0.7764434633211051,0.010000191358858813,0.8886589835490177,0.09730550692167428 -08015,0.4662719073648231,0.020366400383557626,0.2052788564109872,0.20477700688165662,0.4416126698685737,1.3982641771026834,0.01457282039896661,1.2316397111148445,0.16630377296957227,1.4495983868237987,0.010000191358858813,1.3211214034403453,0.09730550692167428 -08017,0.4271989866513967,0.019842153658018197,0.19272238777372963,0.20408908251420355,0.441657183745885,1.3610437284507415,0.01457282039896661,1.15674895043283,0.16630377296957227,1.3709600670965192,0.010000191358858813,1.2066475475631804,0.09730550692167428 -08019,0.44481424768325384,0.014912274084615193,0.18464524312783334,0.16934925623433955,0.44165100061952267,1.020708044220485,0.01457282039896661,1.1084413424165684,0.16630377296957227,1.0163766065360695,0.010000191358858813,1.1289149609362306,0.09730550692167428 -08021,0.4055818807488416,0.01667271624295076,0.1726472446081455,0.17935418048532376,0.4417103430544251,1.1440959349394175,0.01457282039896661,1.036468852158273,0.16630377296957227,1.1737437362190963,0.010000191358858813,1.08172123544051,0.09730550692167428 -08023,0.4553206078397598,0.021855375340831575,0.20512599972330214,0.21807757175919848,0.4416210794969309,1.4998923667610886,0.01457282039896661,1.2326914542713263,0.16630377296957227,1.5365927823524372,0.010000191358858813,1.341191536852095,0.09730550692167428 -08025,0.4084360670839047,0.012225050351151172,0.16321349808520996,0.14971746419869242,0.441703074801024,0.8378393063283207,0.01457282039896661,0.9844279054797302,0.16630377296957227,0.8337387472990866,0.010000191358858813,0.9454013836618044,0.09730550692167428 -08027,0.5100509404092437,0.02437428969249474,0.2284005331702293,0.22789859962610853,0.4415629774118479,1.673047486581419,0.01457282039896661,1.3705987016554546,0.16630377296957227,1.7917693077269834,0.010000191358858813,1.5527144937329076,0.09730550692167428 -08029,0.4509813111307119,0.020875956894170523,0.20142143141778973,0.21001886017079072,0.44163519070372903,1.4327985765725684,0.01457282039896661,1.209599672617311,0.16630377296957227,1.4698684972492342,0.010000191358858813,1.2986460448121022,0.09730550692167428 -08031,0.3866069093186019,0.012596908470742954,0.1572190877168753,0.1534003140923011,0.44173357773562905,0.8642181167866116,0.01457282039896661,0.9439028861968322,0.16630377296957227,0.8485177320154702,0.010000191358858813,0.9032309181056902,0.09730550692167428 -08033,0.4309653523103387,0.018328446275035784,0.19161088749471691,0.1966113069026875,0.44165871350359953,1.2568600532941023,0.01457282039896661,1.1467559855892033,0.16630377296957227,1.2297614685939404,0.010000191358858813,1.1786536016192852,0.09730550692167428 -08035,0.3703742801659281,0.009483630889993247,0.14113739115962576,0.1319520107571489,0.44176754911442706,0.6508986413531899,0.01457282039896661,0.8519133200169154,0.16630377296957227,0.6228862163807318,0.010000191358858813,0.7986871589840451,0.09730550692167428 -08037,0.3696767087482147,0.008147735094535731,0.13783158199695755,0.12237200683616262,0.44176754381568306,0.5593687799380407,0.01457282039896661,0.8318101777925521,0.16630377296957227,0.5272026712499986,0.010000191358858813,0.751297404180872,0.09730550692167428 -08039,0.41539800301179064,0.012828221808721178,0.16682866313013894,0.15502108425941946,0.44170123102753933,0.8787322522993012,0.01457282039896661,1.0096441856215899,0.16630377296957227,0.8693244649301555,0.010000191358858813,1.009429942429412,0.09730550692167428 -08041,0.3802477822196112,0.012084680040643694,0.1519226626654716,0.1501493747863548,0.4417451743218477,0.8292441668451511,0.01457282039896661,0.9166937582135121,0.16630377296957227,0.816279127425441,0.010000191358858813,0.8874008277084795,0.09730550692167428 -08043,0.4467690893063232,0.01814134600899689,0.19348340707996664,0.19047449459046975,0.4416439175814256,1.2457965003209739,0.01457282039896661,1.1607413294896505,0.16630377296957227,1.27021040297446,0.010000191358858813,1.2064403540901985,0.09730550692167428 -08045,0.37687447267918495,0.01102943514884537,0.1482913364981308,0.14278942402578843,0.44175393160254617,0.7565104134635152,0.01457282039896661,0.8928107677693417,0.16630377296957227,0.7351630502295756,0.010000191358858813,0.8489085749112041,0.09730550692167428 -08047,0.44203838351465874,0.012765417475982952,0.1779178502962288,0.15529532486367936,0.441661735005204,0.8739326900593198,0.01457282039896661,1.0718353976761508,0.16630377296957227,0.8528955255593544,0.010000191358858813,1.0621869687397227,0.09730550692167428 -08049,0.4224861010493343,0.013647153183867163,0.17220751746387436,0.1614456710097662,0.44169014321551275,0.9347561086989614,0.01457282039896661,1.0376944074748555,0.16630377296957227,0.9260281166091116,0.010000191358858813,1.0371006073849482,0.09730550692167428 -08051,0.382293233381801,0.010920350439042017,0.15087923830400585,0.1424752155984712,0.4417390815881824,0.7483865680408056,0.01457282039896661,0.9075890141328851,0.16630377296957227,0.7259139309702023,0.010000191358858813,0.8561750898208011,0.09730550692167428 -08053,0.5622115540355318,0.025046479265098565,0.2504084672524345,0.2367248311544702,0.4415019776567047,1.7197694602441378,0.01457282039896661,1.505597062562828,0.16630377296957227,1.8112554575068445,0.010000191358858813,1.6960071232107112,0.09730550692167428 -08055,0.48523180682810474,0.02433576336715064,0.2229501860663661,0.2329479370786859,0.4415752619485266,1.6706707384016568,0.01457282039896661,1.3394281391768235,0.16630377296957227,1.7304287393971303,0.010000191358858813,1.4726806200029179,0.09730550692167428 -08057,0.46495452968902906,0.020494411527177042,0.20293418054583592,0.20388087470271932,0.4416318265823388,1.4057507399210392,0.01457282039896661,1.2179095834703642,0.16630377296957227,1.4775351073859104,0.010000191358858813,1.3294827284335953,0.09730550692167428 -08059,0.4128335526020637,0.014486126322585443,0.17107749377843628,0.16664021647721255,0.441699174505988,0.9928064273943678,0.01457282039896661,1.0292467365918037,0.16630377296957227,0.9885958709193211,0.010000191358858813,1.0327172481200306,0.09730550692167428 -08061,0.4434551477057466,0.02175143900302111,0.2039181488076053,0.2215214442366486,0.4416285384077332,1.4923303300544495,0.01457282039896661,1.226711605080606,0.16630377296957227,1.4818929831255128,0.010000191358858813,1.3030945612565252,0.09730550692167428 -08063,0.4193669097711025,0.01685974045725539,0.1802055829179456,0.18260646367652267,0.4416838815646425,1.156705013645937,0.01457282039896661,1.0820812504382993,0.16630377296957227,1.166159408385918,0.010000191358858813,1.106433635311355,0.09730550692167428 -08065,0.3804426297416893,0.011176665415313512,0.15086631799709638,0.14476804125397313,0.44174521130980643,0.7669569943761618,0.01457282039896661,0.9065971129866884,0.16630377296957227,0.7344945893724651,0.010000191358858813,0.8613140230554468,0.09730550692167428 -08067,0.40675232231182357,0.013773643707060336,0.16726010955061885,0.16242922110361716,0.4417064495315036,0.9442113976880385,0.01457282039896661,1.0063844067338636,0.16630377296957227,0.9343405226733774,0.010000191358858813,0.9985976045563616,0.09730550692167428 -08069,0.3930074551479439,0.013379881355325245,0.16100277341880193,0.15889603787125867,0.4417230904353363,0.9179593516292088,0.01457282039896661,0.968383845331749,0.16630377296957227,0.9111314968452047,0.010000191358858813,0.9510660274534037,0.09730550692167428 -08071,0.43807664315333916,0.018758095701810473,0.19176323046496807,0.19545113839929187,0.4416585053830966,1.2869642244016855,0.01457282039896661,1.1514871855786266,0.16630377296957227,1.3092843855708003,0.010000191358858813,1.2124973624659363,0.09730550692167428 -08073,0.42749276667355673,0.01778253879613284,0.18681178849192792,0.18829593142551754,0.44166243501300206,1.2197853912991627,0.01457282039896661,1.1225227713463837,0.16630377296957227,1.2293990474014096,0.010000191358858813,1.1471242145688656,0.09730550692167428 -08075,0.4058528316072536,0.01579976885873568,0.17332675589808944,0.1766982365505993,0.4416996829177203,1.0837683826135278,0.01457282039896661,1.040693047713136,0.16630377296957227,1.0746251492932928,0.010000191358858813,1.0447559871184677,0.09730550692167428 -08077,0.41238632863665653,0.01642097171633003,0.17572837243985096,0.1791296689439285,0.4416983379460985,1.1264665657585162,0.01457282039896661,1.0550687621875814,0.16630377296957227,1.1386036705256597,0.010000191358858813,1.080915052059011,0.09730550692167428 -08079,0.57700370913539345,0.03353344955875735,0.276210571223068,0.28895036389689394,0.44149095759311696,2.3019034492900876,0.01457282039896661,1.6539710055393813,0.16630377296957227,2.4925703553397938,0.010000191358858813,1.9498839461334907,0.09730550692167428 -08081,0.3922646721629637,0.012883379686240436,0.15815628863732092,0.15498626545221783,0.44173498708571446,0.8842585843749564,0.01457282039896661,0.9524436313659947,0.16630377296957227,0.8792221396375541,0.010000191358858813,0.942121631498234,0.09730550692167428 -08083,0.4320592033749773,0.017756612084995918,0.18644778992003325,0.1882491696029427,0.4416733392053317,1.2175087416445178,0.01457282039896661,1.1190171267418982,0.16630377296957227,1.2390356798284938,0.010000191358858813,1.1721227550239957,0.09730550692167428 -08085,0.42979368233323834,0.018454334016500096,0.18712977107672624,0.19324468959657554,0.44167557878973546,1.2656479438624064,0.01457282039896661,1.1228011214742577,0.16630377296957227,1.2923673778330413,0.010000191358858813,1.182887869616445,0.09730550692167428 -08087,0.39335142117717814,0.015462187544836454,0.16686422871325785,0.17351282878288596,0.44171965647966904,1.0614956006233434,0.01457282039896661,1.00185574001671,0.16630377296957227,1.0586700403451712,0.010000191358858813,1.009786663350562,0.09730550692167428 -08089,0.4245717561915002,0.019394854475457985,0.18792799813307914,0.19905006528953498,0.4416782890547006,1.33054978138434,0.01457282039896661,1.128108416500028,0.16630377296957227,1.3621558331746593,0.010000191358858813,1.1928244478644068,0.09730550692167428 -08091,0.45403190383566217,0.01571875399394814,0.18770356604603078,0.1761558020335433,0.4416487519246223,1.0758118095440796,0.01457282039896661,1.1232105149193332,0.16630377296957227,1.0889951921860153,0.010000191358858813,1.1835028308257325,0.09730550692167428 -08093,0.4481162186960183,0.014060239269090162,0.18163598624793537,0.16252414163244933,0.44165633413783656,0.9612602827918895,0.01457282039896661,1.0952907072663285,0.16630377296957227,0.9700313576477684,0.010000191358858813,1.1210898908805929,0.09730550692167428 -08095,0.4228816043493844,0.019421249303212103,0.187934309517018,0.19815713664904677,0.4416802660203104,1.3317934398373366,0.01457282039896661,1.1262537436675029,0.16630377296957227,1.366972283145592,0.010000191358858813,1.1878286149937893,0.09730550692167428 -08097,0.4396365093231303,0.014146820074074563,0.178914469757722,0.16277196276819642,0.4416649695302726,0.9684417065703403,0.01457282039896661,1.0794588232408004,0.16630377296957227,0.9821405772095073,0.010000191358858813,1.0945477000509138,0.09730550692167428 -08099,0.39663417575203663,0.01592263468503171,0.16826467315867746,0.17605634274625903,0.44171851661418116,1.0926258775048867,0.01457282039896661,1.0103287528409863,0.16630377296957227,1.1012602967820555,0.010000191358858813,1.0350632692808723,0.09730550692167428 -08101,0.4110679410537639,0.016700276320139547,0.1759772308797453,0.1810759388042706,0.4416992044508868,1.1452449012261434,0.01457282039896661,1.0564887007569417,0.16630377296957227,1.1592022134338427,0.010000191358858813,1.0866249247105344,0.09730550692167428 -08103,0.4068293206631702,0.014469397480499867,0.16862842782466092,0.16745876112100064,0.4417109609158334,0.9932725951693497,0.01457282039896661,1.0132424955534178,0.16630377296957227,0.986849491218749,0.010000191358858813,1.0167857388348205,0.09730550692167428 -08105,0.412416843451332,0.017314216281693273,0.17732008845081165,0.18725407573943142,0.4416990173248569,1.187756723136158,0.01457282039896661,1.0653834839665866,0.16630377296957227,1.1971440913122222,0.010000191358858813,1.1182444772499323,0.09730550692167428 -08107,0.4048314285438952,0.011331387586518674,0.15919463064776573,0.1448195753350902,0.4417166956857226,0.7767843084486785,0.01457282039896661,0.9612242198952545,0.16630377296957227,0.7612896933801048,0.010000191358858813,0.9314863160450466,0.09730550692167428 -08109,0.432042531222572,0.016144850604491723,0.1805369470590845,0.17673706320085295,0.44168519071979295,1.106870185754068,0.01457282039896661,1.0822638998861824,0.16630377296957227,1.1333170156723704,0.010000191358858813,1.1277064733957316,0.09730550692167428 -08111,0.45192425154797317,0.015496031317445876,0.1873422314749107,0.16875729613406887,0.44163165886228034,1.0633766576452008,0.01457282039896661,1.1241239443013198,0.16630377296957227,1.1172664473828982,0.010000191358858813,1.1476319722324486,0.09730550692167428 -08113,0.4086804999932813,0.010682270409382163,0.15828596805789885,0.13929091868953783,0.4417178296622364,0.7322982775631312,0.01457282039896661,0.9573494909885734,0.16630377296957227,0.7202726649709267,0.010000191358858813,0.9167909401310844,0.09730550692167428 -08115,0.4851546222591994,0.026958645255122437,0.23441725719594503,0.2547356516156965,0.44155275605221445,1.8503591940156998,0.01457282039896661,1.4061059719050257,0.16630377296957227,1.8724395444958293,0.010000191358858813,1.5318126318574157,0.09730550692167428 -08117,0.4005979587290315,0.010486574407100442,0.15528737794146896,0.1371776880470825,0.44172403540435146,0.7184578554330876,0.01457282039896661,0.9363087676151849,0.16630377296957227,0.7122087983365668,0.010000191358858813,0.8869133637331881,0.09730550692167428 -08119,0.4501220121698544,0.015735645960173496,0.1869938083514207,0.17532536631489082,0.4416488940983931,1.0773104152701154,0.01457282039896661,1.1210692693414293,0.16630377296957227,1.0919448230535296,0.010000191358858813,1.1706132016745467,0.09730550692167428 -08121,0.4366544709134368,0.01915215033669416,0.19386706899898146,0.1985912998873331,0.44165516981321395,1.3138624121513667,0.01457282039896661,1.1626871943635189,0.16630377296957227,1.3254340853516333,0.010000191358858813,1.2153221326870969,0.09730550692167428 -08123,0.36997110787146187,0.01144366848966652,0.14607849064224745,0.1453957951706964,0.4417630920441237,0.7851253869594803,0.01457282039896661,0.8797758660627366,0.16630377296957227,0.7724524475477219,0.010000191358858813,0.8452347627075807,0.09730550692167428 -08125,0.41286746958825016,0.01736759982367485,0.17811856112598443,0.18386639403442606,0.4416996685294299,1.1909531001962022,0.01457282039896661,1.0673606492607632,0.16630377296957227,1.2185961086718495,0.010000191358858813,1.106500689301198,0.09730550692167428 -09001,0.4060096488961096,0.01521777527087105,0.17134017912869828,0.17212069298895064,0.4417035138284729,1.043992567729406,0.01457282039896661,1.0307144444865393,0.16630377296957227,1.0357136530822826,0.010000191358858813,1.033518488812383,0.09730550692167428 -09003,0.4132506259409028,0.016201535877624813,0.17687415828590114,0.1787212261678697,0.4416915926876294,1.111165552834004,0.01457282039896661,1.062272566995444,0.16630377296957227,1.1087092323191774,0.010000191358858813,1.0754712633894594,0.09730550692167428 -09005,0.43471310396211316,0.01738581881679529,0.18774989824125227,0.18685015390362145,0.4416597053673002,1.1918736684274456,0.01457282039896661,1.1290691392931724,0.16630377296957227,1.1953623734078755,0.010000191358858813,1.165391964098545,0.09730550692167428 -09007,0.4302492285270797,0.016986771388011537,0.1845180952909546,0.18357117467188033,0.4416688883848301,1.1649412892950624,0.01457282039896661,1.11004752776749,0.16630377296957227,1.1739962046991654,0.010000191358858813,1.142552745658863,0.09730550692167428 -09009,0.4094571680289988,0.015958094930098678,0.17517710593319913,0.1773491984307224,0.4416947904031817,1.0946744221587537,0.01457282039896661,1.0517335976149007,0.16630377296957227,1.0881367355469536,0.010000191358858813,1.0588835786252866,0.09730550692167428 -09011,0.4149480609041939,0.01572451506924554,0.17557904457079715,0.1749915275906488,0.44169146242648105,1.0787900435459137,0.01457282039896661,1.0562234262011232,0.16630377296957227,1.0805728689487153,0.010000191358858813,1.0686134188763359,0.09730550692167428 -09013,0.39821718494230385,0.01369566055512832,0.16338382949268399,0.16101183146631964,0.44171376290135034,0.9393306840057147,0.01457282039896661,0.9863944069697161,0.16630377296957227,0.9350082630114555,0.010000191358858813,0.9761556453999456,0.09730550692167428 -09015,0.40410744831483514,0.014607794622800763,0.1689020741498104,0.16789070550170493,0.4417048183016178,1.002071732237769,0.01457282039896661,1.016692172944425,0.16630377296957227,0.9931278156934542,0.010000191358858813,1.0138293951508304,0.09730550692167428 -10001,0.39689058371791064,0.014553126961729841,0.1640255591792726,0.1659876776371193,0.44172250113489,0.9989055773553317,0.01457282039896661,0.9871984171011652,0.16630377296957227,1.0101157419723037,0.010000191358858813,0.9950612873539313,0.09730550692167428 -10003,0.39675188173517945,0.014040470386776298,0.16410141666325423,0.1635468600694957,0.44171815321684665,0.9636424352001838,0.01457282039896661,0.9876147116541711,0.16630377296957227,0.9580253236912628,0.010000191358858813,0.9780920075774076,0.09730550692167428 -10005,0.45549990971843046,0.02059248608024586,0.20093428932041607,0.20635434735895178,0.44163657719475446,1.4137788595621679,0.01457282039896661,1.2059620934930058,0.16630377296957227,1.468996295774339,0.010000191358858813,1.3020180870875833,0.09730550692167428 -11001,0.39501995657083583,0.013361389279099321,0.16255632624618988,0.1585126699722298,0.4417167044310992,0.9163684228055001,0.01457282039896661,0.9752322817513175,0.16630377296957227,0.9090281065208197,0.010000191358858813,0.9453621293766296,0.09730550692167428 -12001,0.3732263279318021,0.012314670833246506,0.15086631502388492,0.15127217219544808,0.4417429916443843,0.8441706245376186,0.01457282039896661,0.9082732644595407,0.16630377296957227,0.835886959887826,0.010000191358858813,0.8683058147918059,0.09730550692167428 -12003,0.38590983335150936,0.012495812802101318,0.15532235750238732,0.15348896292360836,0.441735476610174,0.8575676162310624,0.01457282039896661,0.9384055113880077,0.16630377296957227,0.8413184354123235,0.010000191358858813,0.9147844214059677,0.09730550692167428 -12005,0.4144799390769955,0.015567156540451047,0.17364103794666133,0.1726105471489977,0.4416980598476775,1.0680014285961499,0.01457282039896661,1.0440963899199078,0.16630377296957227,1.0843944434245139,0.010000191358858813,1.0628934071027365,0.09730550692167428 -12007,0.4168108885830124,0.015294105283757506,0.17580043858133537,0.17274410662250422,0.4416900840072331,1.0489814107088062,0.01457282039896661,1.0565715453955238,0.16630377296957227,1.0415491481054682,0.010000191358858813,1.0559343781345598,0.09730550692167428 -12009,0.44951361320735994,0.02045426825711847,0.20052576845297154,0.20600558891083517,0.44163444929124396,1.4037167755817805,0.01457282039896661,1.203614165222855,0.16630377296957227,1.442299471221367,0.010000191358858813,1.2812356188677514,0.09730550692167428 -12011,0.41197721417761213,0.015811516890550815,0.1755596032022115,0.17613255553945872,0.4416928127305777,1.084770156212378,0.01457282039896661,1.0547551572295881,0.16630377296957227,1.0790103929182662,0.010000191358858813,1.0598349655689434,0.09730550692167428 -12013,0.4241264552167088,0.0169176592473081,0.18000799784323823,0.18044125888383744,0.44168735273332915,1.1607080825004865,0.01457282039896661,1.080106258703006,0.16630377296957227,1.1985188086124536,0.010000191358858813,1.121198432099636,0.09730550692167428 -12015,0.5244988247010702,0.03060447043330794,0.2532455520652914,0.27398425932981996,0.441524193860244,2.100411670268593,0.01457282039896661,1.519060756298491,0.16630377296957227,2.2068634867578765,0.010000191358858813,1.7315089467939708,0.09730550692167428 -12017,0.5155921937985859,0.02915772373154553,0.24544357092452235,0.2638001944963164,0.4415311565551806,2.0023308413883765,0.01457282039896661,1.4732779297033693,0.16630377296957227,2.1082853965571102,0.010000191358858813,1.6740014230860247,0.09730550692167428 -12019,0.39501224333633433,0.01326175784410647,0.1598003111829816,0.15760525940230333,0.44172736127521584,0.9104546871237895,0.01457282039896661,0.9643309608799606,0.16630377296957227,0.9101138194030512,0.010000191358858813,0.9602073776301598,0.09730550692167428 -12021,0.4694950992499958,0.023950756209675222,0.2147258302548684,0.22805535180844794,0.44160756711251437,1.6432943344967068,0.01457282039896661,1.28789652780279,0.16630377296957227,1.7214392020156835,0.010000191358858813,1.4182821388928972,0.09730550692167428 -12023,0.41815448088379586,0.016556978393151324,0.1779252567793407,0.1796226190588346,0.4416937033615308,1.135864006294598,0.01457282039896661,1.06835936494454,0.16630377296957227,1.1550274568191399,0.010000191358858813,1.1009599700076698,0.09730550692167428 -12027,0.41696220260593553,0.01756899349605381,0.1786270789394892,0.18478429087063453,0.4416933493813362,1.2048898157631291,0.01457282039896661,1.0733389062286505,0.16630377296957227,1.2486718177613865,0.010000191358858813,1.1216015764349505,0.09730550692167428 -12029,0.4541159897954883,0.019341929691459384,0.19593607286662773,0.19715684571296171,0.4416448583233313,1.3269639406086384,0.01457282039896661,1.176066420652123,0.16630377296957227,1.3874544750125515,0.010000191358858813,1.265640497534516,0.09730550692167428 -12031,0.39029091347568184,0.012954367778692084,0.1583261324860688,0.15578948167561918,0.4417299813883695,0.8887168187894208,0.01457282039896661,0.9537608692486064,0.16630377296957227,0.8808331988177578,0.010000191358858813,0.9322009222343589,0.09730550692167428 -12033,0.406418186630418,0.01557028526512909,0.171199274186488,0.1735420845609001,0.4417045363921286,1.068528606066478,0.01457282039896661,1.029459229766931,0.16630377296957227,1.078515130880512,0.010000191358858813,1.044398097889324,0.09730550692167428 -12035,0.4724163322694023,0.023320288950925243,0.21445471142360828,0.22488501680142123,0.4416042156193881,1.600805293440097,0.01457282039896661,1.2879575829267513,0.16630377296957227,1.6674806366080483,0.010000191358858813,1.4155529843958554,0.09730550692167428 -12037,0.45029676765541476,0.01795832780530207,0.19241000755272974,0.1870343471043887,0.44164692034997177,1.2323531451874923,0.01457282039896661,1.1561721413050816,0.16630377296957227,1.2791974954849519,0.010000191358858813,1.213497131796201,0.09730550692167428 -12039,0.40902486445529296,0.01516589024254657,0.17087672022625441,0.17077257645867022,0.44170730608797393,1.0405779640960229,0.01457282039896661,1.0258488101036138,0.16630377296957227,1.0481461404781847,0.010000191358858813,1.0413575041353438,0.09730550692167428 -12041,0.4215823893541062,0.01711083207926442,0.18017531898833206,0.18331378912105112,0.44168595470057725,1.1734791871223913,0.01457282039896661,1.0824293501054023,0.16630377296957227,1.1979141484040439,0.010000191358858813,1.1246110978713726,0.09730550692167428 -12043,0.45465598657042183,0.020138243412402067,0.1967383088163892,0.20010792158584512,0.44164662168228974,1.3804105129526563,0.01457282039896661,1.1802081184471334,0.16630377296957227,1.4677912695698132,0.010000191358858813,1.2856310421604902,0.09730550692167428 -12045,0.4437133876787219,0.017208439807735593,0.1891330986436588,0.18410465271981366,0.44165073745624694,1.181219064930142,0.01457282039896661,1.1366456977324206,0.16630377296957227,1.2057011066309689,0.010000191358858813,1.1783945888716638,0.09730550692167428 -12047,0.409978124996663,0.014331038033622243,0.16834110934162122,0.1635127966996193,0.44170629142685625,0.9827458831391377,0.01457282039896661,1.0135760245050545,0.16630377296957227,1.0020993665476132,0.010000191358858813,1.0205004154895911,0.09730550692167428 -12049,0.3828915026227926,0.013853430558074583,0.1558621078290922,0.1594528512008555,0.44174372051488525,0.9507474988176694,0.01457282039896661,0.9391588702786212,0.16630377296957227,0.9742098533630252,0.010000191358858813,0.9416041480622448,0.09730550692167428 -12051,0.37000773424661626,0.012287621213049195,0.14805367238275735,0.15049531876555372,0.44175832924260794,0.8433225375474234,0.01457282039896661,0.892049454118934,0.16630377296957227,0.841982368687636,0.010000191358858813,0.8671851060074471,0.09730550692167428 -12053,0.4735744270094748,0.024509140659315816,0.21858361752719363,0.23274230572294555,0.4415966409022719,1.681458914531324,0.01457282039896661,1.3116225980399925,0.16630377296957227,1.7516464252453847,0.010000191358858813,1.4459329330038666,0.09730550692167428 -12055,0.49727889594832775,0.029017488418541744,0.23845014059394373,0.2623356232181681,0.44155462400499823,1.9909815926141206,0.01457282039896661,1.4310320612536553,0.16630377296957227,2.0966012431168304,0.010000191358858813,1.618453672592869,0.09730550692167428 -12057,0.3919414122546259,0.013482426056752444,0.1603111870462249,0.15915602096074472,0.4417259327830234,0.9254528555193211,0.01457282039896661,0.9655643423932592,0.16630377296957227,0.9225194259825488,0.010000191358858813,0.9505330675772217,0.09730550692167428 -12059,0.43035573360301127,0.0177010613601029,0.18506627925827418,0.18784260338828887,0.4416744879639015,1.2149319349304672,0.01457282039896661,1.1116482450914447,0.16630377296957227,1.2418816165136675,0.010000191358858813,1.1614053142301337,0.09730550692167428 -12061,0.4771927293651427,0.025658578923448933,0.2245167529979073,0.24183135355593113,0.441581577368203,1.7605514012225263,0.01457282039896661,1.3486789982726273,0.16630377296957227,1.8200363566528022,0.010000191358858813,1.4801156285010408,0.09730550692167428 -12063,0.426081536167153,0.01665895442702145,0.18191171660827604,0.1807960521882676,0.4416759617104885,1.1427845260645748,0.01457282039896661,1.092417092700963,0.16630377296957227,1.1548041973435879,0.010000191358858813,1.118386188542976,0.09730550692167428 -12065,0.44520754648322086,0.018327690707532526,0.19183587966778998,0.19211319910985447,0.441650378282831,1.2581576347749324,0.01457282039896661,1.152865582788271,0.16630377296957227,1.291148368222784,0.010000191358858813,1.2221831297042172,0.09730550692167428 -12067,0.39730387483293667,0.015141617926301375,0.16705810179033181,0.17075896727215528,0.44171277235243855,1.0388945187961318,0.01457282039896661,1.0047744963397907,0.16630377296957227,1.0422945441989837,0.010000191358858813,1.0122819800081602,0.09730550692167428 -12069,0.4640475259361456,0.022913614647022327,0.209987398843688,0.22088360417829256,0.44161936600513935,1.5724639665806728,0.01457282039896661,1.259148316017746,0.16630377296957227,1.6468810032611465,0.010000191358858813,1.3806153887532253,0.09730550692167428 -12071,0.4590215941772476,0.02216512762040097,0.20697695722640588,0.21702577775377738,0.44162407523523006,1.5207410775746806,0.01457282039896661,1.2420932713135278,0.16630377296957227,1.5783718663033155,0.010000191358858813,1.3460905227403563,0.09730550692167428 -12073,0.36663745199644615,0.011207305771861405,0.14543426914177948,0.1440602803980126,0.44175509903372723,0.7686412972916119,0.01457282039896661,0.8752786334962364,0.16630377296957227,0.7527724495328909,0.010000191358858813,0.825664131079463,0.09730550692167428 -12075,0.44856844965644893,0.019362001498046462,0.19499155257668238,0.1987509439569192,0.4416507713734522,1.3288317585635605,0.01457282039896661,1.1709990340712024,0.16630377296957227,1.3740283035968632,0.010000191358858813,1.2547791514072246,0.09730550692167428 -12077,0.39682538495131353,0.010686798533351805,0.15511299395275052,0.14000350240784531,0.4417225974321287,0.7322771890169809,0.01457282039896661,0.937213724167731,0.16630377296957227,0.7163239532473386,0.010000191358858813,0.8884177462661209,0.09730550692167428 -12079,0.4212027318816728,0.017228618152931457,0.1817837753834453,0.18411393334599718,0.4416830792861285,1.1817196368104357,0.01457282039896661,1.091332073716683,0.16630377296957227,1.1986468951991505,0.010000191358858813,1.1237723309730465,0.09730550692167428 -12081,0.4582119142585256,0.02258796287463453,0.20865881892442978,0.2202851024454187,0.44162098934481453,1.5497168953305422,0.01457282039896661,1.2521537292090366,0.16630377296957227,1.6024766790619729,0.010000191358858813,1.3556619529487577,0.09730550692167428 -12083,0.4716629721970847,0.02393946588289464,0.2155423446137708,0.22832306574441288,0.44160435568755574,1.642711150984924,0.01457282039896661,1.2936077142759066,0.16630377296957227,1.71855412487296,0.010000191358858813,1.4265312586993866,0.09730550692167428 -12085,0.48551851342935404,0.02605952127995404,0.22852813371428954,0.24384156794386014,0.4415679365768531,1.788731202116537,0.01457282039896661,1.3720626998651606,0.16630377296957227,1.8555863099375043,0.010000191358858813,1.511984732067762,0.09730550692167428 -12086,0.4068510545955254,0.015217255627692943,0.17082666719427386,0.170550927505635,0.44170338513809193,1.044084308956816,0.01457282039896661,1.0272095927923028,0.16630377296957227,1.0508524266279324,0.010000191358858813,1.0312619493963486,0.09730550692167428 -12087,0.4656662622999159,0.01848145078209174,0.20086988511266674,0.19265875151971956,0.4416168425173243,1.2680555350572615,0.01457282039896661,1.2061264877855287,0.16630377296957227,1.2982432052184558,0.010000191358858813,1.2654796410596467,0.09730550692167428 -12089,0.43398040087958756,0.01710474952840295,0.18478277156044934,0.18372532969906802,0.4416710481084931,1.1736772003204519,0.01457282039896661,1.1106308492287822,0.16630377296957227,1.1962667107111344,0.010000191358858813,1.156075723212201,0.09730550692167428 -12091,0.40658973997279985,0.014903283976377593,0.169031380330578,0.1680489885987896,0.44170846967317196,1.0223430619034881,0.01457282039896661,1.0167367043393831,0.16630377296957227,1.0357789326323563,0.010000191358858813,1.025516861208196,0.09730550692167428 -12093,0.4154931030841835,0.017398234950901835,0.17898246301197338,0.18484824273657308,0.4416916426446603,1.1930325672071596,0.01457282039896661,1.0751907521274557,0.16630377296957227,1.2215232332995698,0.010000191358858813,1.1159651131393487,0.09730550692167428 -12095,0.3763192410393899,0.011549804684992313,0.14942019614438312,0.1460266159255326,0.44174801867633734,0.79270660965668,0.01457282039896661,0.9010240751634169,0.16630377296957227,0.7785894324829149,0.010000191358858813,0.8578700975162543,0.09730550692167428 -12097,0.3847525096690073,0.012627417687891326,0.15435718781190305,0.1530931783395281,0.44173932512902947,0.8670141947669445,0.01457282039896661,0.9309953979459749,0.16630377296957227,0.8647433414821919,0.010000191358858813,0.9135444940454529,0.09730550692167428 -12099,0.44443522325488355,0.021506176329716287,0.20289604485364,0.21398029397101193,0.4416341430305457,1.4754716867628743,0.01457282039896661,1.2171218487910218,0.16630377296957227,1.5035315666634244,0.010000191358858813,1.2870490462803208,0.09730550692167428 -12101,0.4474983037653216,0.020873565733690064,0.2006552070160663,0.208894245605937,0.4416385734754973,1.4319896726395571,0.01457282039896661,1.2042027669806643,0.16630377296957227,1.4724065416276975,0.010000191358858813,1.2837741477173599,0.09730550692167428 -12103,0.46036020053166704,0.021708562325348978,0.20904225791612557,0.21569271714423702,0.4416101549368324,1.489364803105818,0.01457282039896661,1.2547381671476319,0.16630377296957227,1.5205357995569981,0.010000191358858813,1.3355506148745162,0.09730550692167428 -12105,0.4223320948466882,0.018061611481408713,0.18279091364229222,0.1893480876260818,0.4416861964663811,1.2384787643173252,0.01457282039896661,1.0970724809454149,0.16630377296957227,1.2717525896253767,0.010000191358858813,1.1495522752485958,0.09730550692167428 -12107,0.43427765217213643,0.019051212233199808,0.19031056895292306,0.19687115060289123,0.44166741446640195,1.3066969143538167,0.01457282039896661,1.1425592679580536,0.16630377296957227,1.3384755388233711,0.010000191358858813,1.2093117602045425,0.09730550692167428 -12109,0.4266160270088176,0.01698275094554126,0.1826055218360327,0.18313432645911992,0.4416778380609132,1.1648068692491078,0.01457282039896661,1.0981929663312968,0.16630377296957227,1.1792555292606341,0.010000191358858813,1.1358697525477057,0.09730550692167428 -12111,0.4370216967027074,0.019867642727175217,0.1937232696112713,0.20189929031041282,0.4416580635802434,1.3632981820281223,0.01457282039896661,1.1629390128601353,0.16630377296957227,1.401932978082328,0.010000191358858813,1.2332767908789946,0.09730550692167428 -12113,0.40691277942469517,0.014018935224872308,0.16606799051000337,0.16209746567207714,0.44171163435006744,0.961661091251713,0.01457282039896661,1.0022727694995925,0.16630377296957227,0.9714293742760163,0.010000191358858813,1.0084109023809087,0.09730550692167428 -12115,0.503551705009112,0.028635717238956648,0.24216552009896852,0.2620970570504702,0.441534890246571,1.9643649172572495,0.01457282039896661,1.4534113237892614,0.16630377296957227,2.039652811435876,0.010000191358858813,1.6206929620856623,0.09730550692167428 -12117,0.39920014087535854,0.013695854000880558,0.16410591506020944,0.16128728627179342,0.44171429352192493,0.939398718721915,0.01457282039896661,0.989341137527697,0.16630377296957227,0.9312618044369132,0.010000191358858813,0.9763869912441318,0.09730550692167428 -12119,0.5801047121715737,0.035464751839993244,0.2802802152523911,0.30150114403651573,0.4414960868877069,2.434390583824441,0.01457282039896661,1.6772285553094708,0.16630377296957227,2.641119736948747,0.010000191358858813,2.004471266313898,0.09730550692167428 -12121,0.4319404355702164,0.019115687830361855,0.1903484038086602,0.19722122157498156,0.4416666091821687,1.3116411866001507,0.01457282039896661,1.1426143730553235,0.16630377296957227,1.340481049372198,0.010000191358858813,1.2034561950540787,0.09730550692167428 -12123,0.42641703221033855,0.016801266136946554,0.18071616246236846,0.18023827622899097,0.44168389240783223,1.1523871672798773,0.01457282039896661,1.084970590701414,0.16630377296957227,1.1849429788002857,0.010000191358858813,1.1271690549072446,0.09730550692167428 -12125,0.39616968615893755,0.012054705720268745,0.15754618622016306,0.15022617795884735,0.44171983020067473,0.8263230931852836,0.01457282039896661,0.9544905317490824,0.16630377296957227,0.8141627136392877,0.010000191358858813,0.9330979602701737,0.09730550692167428 -12127,0.451107583807873,0.021058304638319446,0.20275554687786995,0.21045765430015562,0.4416296414482278,1.4450459104942204,0.01457282039896661,1.2173671260545198,0.16630377296957227,1.483454624706648,0.010000191358858813,1.2984175964882056,0.09730550692167428 -12129,0.4101792344820517,0.013599029101533785,0.16653362140626315,0.15905977399412016,0.4417078106836763,0.9321379791315216,0.01457282039896661,1.004735205876168,0.16630377296957227,0.9394176812657467,0.010000191358858813,1.005116949824782,0.09730550692167428 -12131,0.4361051998897161,0.01723134928827702,0.18599775629568688,0.18381617502863726,0.4416682482383844,1.1822668682460131,0.01457282039896661,1.1171828188966066,0.16630377296957227,1.2095297539785501,0.010000191358858813,1.161910450513612,0.09730550692167428 -12133,0.4238726799529174,0.016328608866546048,0.17981450319004405,0.17902900111547912,0.44168167296106686,1.12036970463992,0.01457282039896661,1.082232005273839,0.16630377296957227,1.129931024693417,0.010000191358858813,1.1083928449012161,0.09730550692167428 -13001,0.41375824202305,0.014838692389724729,0.17026091185921655,0.16766936387335313,0.4417087782386244,1.018547540982698,0.01457282039896661,1.0239356349562452,0.16630377296957227,1.0347629522277475,0.010000191358858813,1.0477000145392927,0.09730550692167428 -13003,0.368788743614191,0.011728275870663333,0.14630884255941384,0.14855411956863235,0.4417675671034066,0.8042266301572251,0.01457282039896661,0.8829998683923141,0.16630377296957227,0.783137924283948,0.010000191358858813,0.854475158925409,0.09730550692167428 -13005,0.40120743747195825,0.014579876374274048,0.16531476699362907,0.16660191379700448,0.44172474906717435,1.001127693375766,0.01457282039896661,0.9923818061388692,0.16630377296957227,1.009456443318844,0.010000191358858813,1.0043501480678279,0.09730550692167428 -13007,0.3959727362408357,0.015755767824038532,0.16623231933769775,0.17374239840542943,0.44173214097482005,1.0816253670069589,0.01457282039896661,0.9995988324704235,0.16630377296957227,1.1018286254917873,0.010000191358858813,1.0350014601524564,0.09730550692167428 -13009,0.39224440768120605,0.013267292039048629,0.15985393146980106,0.15725511686297597,0.4417246464868635,0.9097974892419853,0.01457282039896661,0.9610239874604505,0.16630377296957227,0.9148012824309616,0.010000191358858813,0.9482464194715899,0.09730550692167428 -13011,0.4025925291068474,0.01428464408141681,0.1662740301778197,0.16569877034044656,0.44171451477029855,0.9806307818986367,0.01457282039896661,0.9999475095388468,0.16630377296957227,0.9759940230959985,0.010000191358858813,1.00383610785042,0.09730550692167428 -13013,0.37311575960627585,0.011357858728985485,0.14625590830858243,0.143879707595871,0.4417611709923552,0.7792169297666565,0.01457282039896661,0.8824538226137552,0.16630377296957227,0.7740861007638684,0.010000191358858813,0.8497408488572031,0.09730550692167428 -13015,0.38730212821071397,0.012314188933707188,0.1543748473897913,0.1509817691407136,0.4417396040891277,0.8447949092249768,0.01457282039896661,0.9323345777926535,0.16630377296957227,0.8392280541963346,0.010000191358858813,0.9131325551791374,0.09730550692167428 -13017,0.40258469392890495,0.01523991952869511,0.16778585206809477,0.17073205022764243,0.4417198745808229,1.0465531524948586,0.01457282039896661,1.007753677461677,0.16630377296957227,1.06123341714571,0.010000191358858813,1.0286724997040622,0.09730550692167428 -13019,0.403794393357817,0.015161129419444742,0.1687207579742746,0.17054087343027774,0.44171250270405915,1.0406430300819707,0.01457282039896661,1.0139673668484905,0.16630377296957227,1.0492418869751226,0.010000191358858813,1.0281708079189045,0.09730550692167428 -13021,0.39229713726335097,0.014531404631212282,0.16301689981644768,0.16642270181735097,0.4417261741436041,0.9976066790896823,0.01457282039896661,0.9800311378992563,0.16630377296957227,1.0013191539111976,0.010000191358858813,0.9849980588883026,0.09730550692167428 -13023,0.402952170229945,0.016132538426626708,0.17119098816743986,0.17767061203577011,0.44170355514570614,1.1064067352645215,0.01457282039896661,1.0302366627557018,0.16630377296957227,1.1168313103566345,0.010000191358858813,1.0566446651244783,0.09730550692167428 -13025,0.3996225085059962,0.014220142058478043,0.16344651614894407,0.16275292505349362,0.441720700790751,0.9761661263043611,0.01457282039896661,0.9859733344507551,0.16630377296957227,0.9950364539127531,0.010000191358858813,0.99855152438279,0.09730550692167428 -13027,0.410922941357167,0.01684465334238612,0.1768921417739539,0.1838951424524961,0.44169435657993217,1.1549007819658317,0.01457282039896661,1.0625327548395853,0.16630377296957227,1.1549957579442087,0.010000191358858813,1.090269450149843,0.09730550692167428 -13029,0.3776465202158308,0.011221031671211556,0.14768374532348885,0.1436733185197578,0.44175396555291135,0.7696034004684953,0.01457282039896661,0.8928526888069812,0.16630377296957227,0.7582888066756845,0.010000191358858813,0.8649443619808386,0.09730550692167428 -13031,0.3491106779651786,0.010719893992837438,0.13618435581862182,0.13964821562954063,0.4417776128637614,0.735844925708967,0.01457282039896661,0.8212906096305739,0.16630377296957227,0.730572007781639,0.010000191358858813,0.7737395121562628,0.09730550692167428 -13033,0.38790971824820986,0.013701078426340977,0.15749417736420826,0.15996736585145216,0.44173909473948586,0.9409877801958964,0.01457282039896661,0.9490409114405499,0.16630377296957227,0.9530303820190005,0.010000191358858813,0.9576407072125934,0.09730550692167428 -13035,0.40224812939002386,0.013624577162902338,0.16446359954636788,0.1596885790440838,0.44171257965815613,0.9340931008467127,0.01457282039896661,0.9916451033504641,0.16630377296957227,0.9354250347284129,0.010000191358858813,0.9819082063918485,0.09730550692167428 -13037,0.405400374155351,0.014175035627626358,0.16828474842836869,0.1641868141746619,0.4417090407183376,0.9725042527485774,0.01457282039896661,1.009958422023081,0.16630377296957227,0.9666999675880295,0.010000191358858813,0.9951787805838705,0.09730550692167428 -13039,0.36607670935766923,0.010591904918091533,0.1413863154139237,0.13870761995323908,0.44176776279677404,0.7271389550773446,0.01457282039896661,0.8538825924894723,0.16630377296957227,0.721725721852269,0.010000191358858813,0.8150078772672648,0.09730550692167428 -13043,0.4045345119579821,0.01678572358202613,0.17397899096287955,0.18252455546329638,0.4417018603654752,1.1510462723670938,0.01457282039896661,1.045635355441033,0.16630377296957227,1.1595039242384826,0.010000191358858813,1.0747538228351594,0.09730550692167428 -13045,0.3774298594029257,0.01231572632885361,0.15074828347934555,0.15070698202658578,0.44174959355375354,0.8455017608622994,0.01457282039896661,0.908560739556858,0.16630377296957227,0.8455701025357073,0.010000191358858813,0.8867684397414318,0.09730550692167428 -13047,0.40588036918943404,0.014839043131650617,0.16834820271249382,0.16823154693168857,0.4417115332525352,1.0188031027813378,0.01457282039896661,1.0121684948702705,0.16630377296957227,1.0272275455496658,0.010000191358858813,1.0249600675097215,0.09730550692167428 -13049,0.4042854783116574,0.013776497033683863,0.1652995591581648,0.16087841864163233,0.4417144989733506,0.945118105583501,0.01457282039896661,0.9951226238920374,0.16630377296957227,0.9486003647072607,0.010000191358858813,0.9926319269249114,0.09730550692167428 -13051,0.39175354725977196,0.0140199289058883,0.16207239316252506,0.16333809889978906,0.44172520388028,0.9623777564609945,0.01457282039896661,0.9744088821841855,0.16630377296957227,0.9595145145372959,0.010000191358858813,0.9641627137135693,0.09730550692167428 -13053,0.2998207587681565,0.005074451955736656,0.10284180576253063,0.10070338198445987,0.441854174502889,0.34884546168367314,0.01457282039896661,0.6172208847305214,0.16630377296957227,0.3132028399928641,0.010000191358858813,0.47985677672613286,0.09730550692167428 -13055,0.41374963105780965,0.01582083749735044,0.17436242985294043,0.1743345451299762,0.4416985229495967,1.0852482728400281,0.01457282039896661,1.046843161240175,0.16630377296957227,1.100619866663012,0.010000191358858813,1.0659322951267516,0.09730550692167428 -13057,0.38150554279171855,0.011205473751403803,0.14942609783303373,0.14322391063409803,0.44175053357296856,0.7686825873237573,0.01457282039896661,0.9013320970292917,0.16630377296957227,0.7564736245490689,0.010000191358858813,0.868237129272881,0.09730550692167428 -13059,0.3385269670365214,0.009833683373705894,0.1302856589469727,0.13410536064172085,0.44178826423342826,0.6746393216264974,0.01457282039896661,0.7879277181971954,0.16630377296957227,0.6574619402810055,0.010000191358858813,0.7139863788613321,0.09730550692167428 -13061,0.4418717451169534,0.021106497472386604,0.1976747907407151,0.2094809303206373,0.4416660306520612,1.4482051496603443,0.01457282039896661,1.1829720326933402,0.16630377296957227,1.5010249231151285,0.010000191358858813,1.281206560967369,0.09730550692167428 -13063,0.3521117663683224,0.00882918545971896,0.1325858790969657,0.1274188661672503,0.4417877970107075,0.6059749096373166,0.01457282039896661,0.8003520868262202,0.16630377296957227,0.5781009214489825,0.010000191358858813,0.7309169489916177,0.09730550692167428 -13065,0.3970598868818553,0.01233481953943825,0.15865600213445408,0.1539844728196082,0.441731394412533,0.8461050197293956,0.01457282039896661,0.9564909272573614,0.16630377296957227,0.8249263366840038,0.010000191358858813,0.947340540628945,0.09730550692167428 -13067,0.3786148300843184,0.010857793825388096,0.14807437415074295,0.1413820920720376,0.44175002705567434,0.7447938492279431,0.01457282039896661,0.8935944955515388,0.16630377296957227,0.7255511151328302,0.010000191358858813,0.8485006043247565,0.09730550692167428 -13069,0.3837344084694151,0.012796818898778092,0.15458698145166772,0.15431918768816666,0.4417426198550821,0.8785728842577606,0.01457282039896661,0.9307180145925089,0.16630377296957227,0.87723566536535,0.010000191358858813,0.9160968022175174,0.09730550692167428 -13071,0.3867417394160665,0.013898003715585715,0.15852635723785596,0.1617834128361993,0.4417379690257893,0.9543982209386794,0.01457282039896661,0.9534880165026025,0.16630377296957227,0.959922467845004,0.010000191358858813,0.9532219930042068,0.09730550692167428 -13073,0.3886198437724745,0.012451191035804365,0.15569128819955932,0.1526003814921563,0.4417353675786232,0.8544127496676093,0.01457282039896661,0.940377332121404,0.16630377296957227,0.843695746279908,0.010000191358858813,0.92273651769867,0.09730550692167428 -13075,0.3951786765314744,0.014476468516720336,0.16289832376310637,0.16547259061491015,0.44172893140353153,0.9939474825958757,0.01457282039896661,0.9790527770116912,0.16630377296957227,1.0047900778409269,0.010000191358858813,0.9885414345041159,0.09730550692167428 -13077,0.38659116292290907,0.012158208533117405,0.15364161550033656,0.14972421269633251,0.44174181479243657,0.8340438020251271,0.01457282039896661,0.92711195702906,0.16630377296957227,0.8283413046901591,0.010000191358858813,0.9073545865502785,0.09730550692167428 -13079,0.41069903001283264,0.014050847965800452,0.16767987989420655,0.16238949441294293,0.44171151782139567,0.9644757077252787,0.01457282039896661,1.0119020869421194,0.16630377296957227,0.9722558988583665,0.010000191358858813,1.0179923551291963,0.09730550692167428 -13081,0.40436496512783116,0.015682434239412832,0.16943860450827752,0.17349494281851716,0.44171313906758447,1.0763931979866843,0.01457282039896661,1.0181158480917225,0.16630377296957227,1.097615575741639,0.010000191358858813,1.047734664652973,0.09730550692167428 -13083,0.4113366442708492,0.015072218525463841,0.16956074254023945,0.1679762791676294,0.4417082103009728,1.0338379453693332,0.01457282039896661,1.0195908178000883,0.16630377296957227,1.065109969279148,0.010000191358858813,1.0476632803593877,0.09730550692167428 -13085,0.42006338430131085,0.01470628280788448,0.17199161707030258,0.16670647897441404,0.4416979571054488,1.0084882559275723,0.01457282039896661,1.0355196767445702,0.16630377296957227,1.029354109962032,0.010000191358858813,1.0616257049299778,0.09730550692167428 -13087,0.39895661202035254,0.015102182990469695,0.16676098353366864,0.16937945886161362,0.44171736906885295,1.0361490190134477,0.01457282039896661,1.0019040486133943,0.16630377296957227,1.049000089586722,0.010000191358858813,1.0155358357703996,0.09730550692167428 -13089,0.3776323724557472,0.011134656427492886,0.1490846183806745,0.14344518539839005,0.4417485617960364,0.7638175884927952,0.01457282039896661,0.8981118268238766,0.16630377296957227,0.7425763405747273,0.010000191358858813,0.8479196414755474,0.09730550692167428 -13091,0.40041281682780494,0.01467078135262308,0.1662983126258929,0.16790007110638908,0.44171272521085936,1.0068443616649092,0.01457282039896661,1.000313152619604,0.16630377296957227,1.009976793994882,0.010000191358858813,1.0086268904452047,0.09730550692167428 -13093,0.416012395960616,0.015184416090664007,0.17267518996898146,0.16965503233503598,0.44170063841921736,1.0416392871342555,0.01457282039896661,1.039508942952407,0.16630377296957227,1.0594714665561256,0.010000191358858813,1.059470881928501,0.09730550692167428 -13095,0.3814897319858206,0.013621114109084332,0.1567411859981379,0.16048062515225273,0.44174051660988634,0.9348532619539702,0.01457282039896661,0.9427970539744372,0.16630377296957227,0.9318127871617599,0.010000191358858813,0.9329982733292442,0.09730550692167428 -13097,0.371085707858688,0.010482156565474791,0.14386846835016864,0.13879727194981628,0.4417602201863902,0.719037247177116,0.01457282039896661,0.8688548387307424,0.16630377296957227,0.6993511916787531,0.010000191358858813,0.823086757937543,0.09730550692167428 -13099,0.4105561101847022,0.017057298625570094,0.17642646339160692,0.18496095687138797,0.4417030286087545,1.1695621013836568,0.01457282039896661,1.059326808545125,0.16630377296957227,1.1772089442428806,0.010000191358858813,1.096607916108865,0.09730550692167428 -13101,0.3442110300374453,0.010136243168018538,0.13137423438795434,0.13364580774730686,0.44178944239860674,0.6958787592159182,0.01457282039896661,0.7927309308619529,0.16630377296957227,0.7052305446879887,0.010000191358858813,0.7486185843344533,0.09730550692167428 -13103,0.3747050190148846,0.01109148260620995,0.14670998613367198,0.14324359916163384,0.44175435946362995,0.7609498013251874,0.01457282039896661,0.8870291175360829,0.16630377296957227,0.7445470194662123,0.010000191358858813,0.8523844135017742,0.09730550692167428 -13105,0.4194245656772449,0.01748373454733258,0.18102263609660962,0.1869083890977884,0.44168637543266753,1.1988827892516296,0.01457282039896661,1.0868357758761316,0.16630377296957227,1.215527810984402,0.010000191358858813,1.1286625355777367,0.09730550692167428 -13107,0.4028081756828821,0.015055789094000759,0.16695298949839799,0.1690412256963847,0.4417162914298386,1.0337044217241798,0.01457282039896661,1.0031882374270356,0.16630377296957227,1.0541423579727112,0.010000191358858813,1.0249388407160227,0.09730550692167428 -13109,0.396640979228685,0.015300219664797401,0.16616474541522247,0.17061059365713221,0.44172220169165255,1.0500324924257034,0.01457282039896661,0.9990242785131022,0.16630377296957227,1.0660367451465393,0.010000191358858813,1.0129850582434479,0.09730550692167428 -13111,0.4727983964749349,0.021087626580100938,0.2082359243193761,0.2087355343636847,0.44161287627276047,1.4469590376767567,0.01457282039896661,1.2500431670867562,0.16630377296957227,1.5131554120092408,0.010000191358858813,1.3618281894464341,0.09730550692167428 -13113,0.40977295775766964,0.014541568198486243,0.16954469483267787,0.1674054246258292,0.4417014212068401,0.9970619420777087,0.01457282039896661,1.0212417183787459,0.16630377296957227,0.9939941157969183,0.010000191358858813,1.0357678503301049,0.09730550692167428 -13115,0.4036248460159484,0.015476660780064221,0.16954334058464895,0.17229825082048322,0.44171174661224877,1.062023377180269,0.01457282039896661,1.0180891085884116,0.16630377296957227,1.0750239669110773,0.010000191358858813,1.035442905154337,0.09730550692167428 -13117,0.37684803789428134,0.010915438923878319,0.14695416270399417,0.14094999770248481,0.4417586958514229,0.7490332196903121,0.01457282039896661,0.8875510086312651,0.16630377296957227,0.7352555451647118,0.010000191358858813,0.8496971330838238,0.09730550692167428 -13119,0.42465031519255214,0.01776369802339703,0.1822360300908709,0.18688055129221126,0.44168615113193,1.217888520697131,0.01457282039896661,1.0934902213273392,0.16630377296957227,1.2552637498767028,0.010000191358858813,1.1483664406447471,0.09730550692167428 -13121,0.3779237321058243,0.011192716431253396,0.14945003211088992,0.14404713864907426,0.44174722422368773,0.7678437210933851,0.01457282039896661,0.900714628339447,0.16630377296957227,0.7451379879491775,0.010000191358858813,0.8508162180987097,0.09730550692167428 -13123,0.4346607419631484,0.017813002851842466,0.18631261329575244,0.18754773770505956,0.4416715218492407,1.2222552699845488,0.01457282039896661,1.1179848110220507,0.16630377296957227,1.2587142530112427,0.010000191358858813,1.1768239457306648,0.09730550692167428 -13125,0.4050114511930919,0.01573081214416021,0.17209272293133318,0.17474889305786645,0.4417008482544501,1.0795707970875323,0.01457282039896661,1.035238122310958,0.16630377296957227,1.0810870801391217,0.010000191358858813,1.040229389380972,0.09730550692167428 -13127,0.41603861062743785,0.016330295897308764,0.17617225494210004,0.17799032220300903,0.4416970787395362,1.1204116029231632,0.01457282039896661,1.0577623979144177,0.16630377296957227,1.1404050152258716,0.010000191358858813,1.0903247960880234,0.09730550692167428 -13129,0.38804146270991846,0.013111679744928753,0.15650864066414955,0.15565570495965098,0.44173855542465734,0.9000068868734109,0.01457282039896661,0.943425881953569,0.16630377296957227,0.906726312794254,0.010000191358858813,0.93618094449383,0.09730550692167428 -13131,0.3989000136239137,0.014893769294139166,0.1660871892374603,0.16825127057087286,0.4417196555635054,1.0224587052985616,0.01457282039896661,0.9979570554777242,0.16630377296957227,1.0336139669538955,0.010000191358858813,1.0110116170846397,0.09730550692167428 -13133,0.45667875071110114,0.019915866198563767,0.19735775510160458,0.20010788391438536,0.4416456315819246,1.3660409249291359,0.01457282039896661,1.183109296680259,0.16630377296957227,1.441708297843141,0.010000191358858813,1.2920996347522131,0.09730550692167428 -13135,0.3615993393401025,0.009297128286417834,0.13734057856747972,0.13061804354026288,0.4417750862032296,0.6381937287611192,0.01457282039896661,0.8302209478169245,0.16630377296957227,0.6118705383834903,0.010000191358858813,0.7675201361888415,0.09730550692167428 -13137,0.40154351570089375,0.0160736716621322,0.16947894520080775,0.1757623385025348,0.44171484674143985,1.1028493908261199,0.01457282039896661,1.0175808272021873,0.16630377296957227,1.1265597162891383,0.010000191358858813,1.0496651797075263,0.09730550692167428 -13139,0.37851799079210713,0.01251159137370604,0.15203080079622827,0.15265638235297974,0.4417502524111276,0.8581523625270392,0.01457282039896661,0.9155557382261698,0.16630377296957227,0.8515966069542119,0.010000191358858813,0.8934506496011236,0.09730550692167428 -13141,0.4307770732460302,0.0165344169391893,0.18302480774925858,0.1808406213252859,0.44166839613555675,1.1346161836530608,0.01457282039896661,1.100062297680064,0.16630377296957227,1.1469277652480925,0.010000191358858813,1.1281332292758806,0.09730550692167428 -13143,0.40540986273840274,0.015258644081259223,0.1703112038327803,0.1724874950293997,0.4417087749345928,1.047325795128511,0.01457282039896661,1.0228122784036482,0.16630377296957227,1.0452644260786692,0.010000191358858813,1.0345440379108353,0.09730550692167428 -13145,0.42234805945535925,0.015546212315897772,0.17606660136795438,0.17319692824691874,0.44169151236185894,1.0663608311440878,0.01457282039896661,1.0582669387751444,0.16630377296957227,1.079744987879195,0.010000191358858813,1.088118293285465,0.09730550692167428 -13147,0.43602316932766605,0.018362583102182965,0.1883206005573544,0.19223967716242243,0.44167202768359826,1.259617318104072,0.01457282039896661,1.1310598321815624,0.16630377296957227,1.293162428038095,0.010000191358858813,1.1950208166715024,0.09730550692167428 -13149,0.407007327416126,0.014188524975883084,0.16584040898307462,0.1633293932890798,0.4417122744736467,0.9735539037134887,0.01457282039896661,1.0007409968000518,0.16630377296957227,0.9885217910876287,0.010000191358858813,1.0171334865288086,0.09730550692167428 -13151,0.3696551117383274,0.010318240413992017,0.1427076790904414,0.1373521092023886,0.4417631377606257,0.7076760120653085,0.01457282039896661,0.8623695657218399,0.16630377296957227,0.6900533760393291,0.010000191358858813,0.8177157414557711,0.09730550692167428 -13153,0.3810718368230449,0.012256808288383976,0.15192541763900907,0.15023307816145462,0.4417456345252543,0.8412898477836666,0.01457282039896661,0.9166194412670284,0.16630377296957227,0.8396418794758301,0.010000191358858813,0.8949585316419261,0.09730550692167428 -13155,0.418146922616876,0.01691253777941701,0.17598630299218332,0.17879374679914892,0.4417007661904392,1.1601488770917465,0.01457282039896661,1.0557025244725153,0.16630377296957227,1.2173734657947048,0.010000191358858813,1.1125602966394694,0.09730550692167428 -13157,0.39346281871785516,0.013087577023310131,0.1587513008676923,0.156406048105232,0.44173152102090574,0.8984371491613258,0.01457282039896661,0.9567518887883446,0.16630377296957227,0.8977719491168206,0.010000191358858813,0.9500057422528226,0.09730550692167428 -13159,0.40105234996252753,0.01449044051259354,0.16631268519045628,0.16613231351469254,0.44171706334294625,0.9943017453997939,0.01457282039896661,0.999140066332213,0.16630377296957227,0.9963071483793251,0.010000191358858813,1.0047191629006975,0.09730550692167428 -13161,0.39886008691400826,0.014708123210649291,0.16434601692096848,0.16672736275119243,0.4417279155158682,1.0099861455055397,0.01457282039896661,0.987109788784189,0.16630377296957227,1.0268149463635496,0.010000191358858813,1.005473030496253,0.09730550692167428 -13163,0.40716998792147463,0.01610470430554179,0.17190931132910325,0.17636214149714982,0.4417093793284772,1.1048142680036241,0.01457282039896661,1.0313713928265376,0.16630377296957227,1.1258543988053145,0.010000191358858813,1.0640103018387268,0.09730550692167428 -13165,0.4104652770976249,0.016929209431252625,0.17564544740379268,0.183362793974916,0.4417004401913761,1.1609591115641287,0.01457282039896661,1.0570676781380692,0.16630377296957227,1.1799506076433608,0.010000191358858813,1.0964179847576982,0.09730550692167428 -13167,0.4143529436420888,0.015379723434567718,0.17531318674436963,0.1729403011165937,0.441689554971204,1.0545806323752647,0.01457282039896661,1.055000326904639,0.16630377296957227,1.0459650993351362,0.010000191358858813,1.0564777795652407,0.09730550692167428 -13169,0.4022585147954647,0.013816216009815602,0.16401668479821724,0.16171985709662132,0.4417164189167798,0.9483772192563245,0.01457282039896661,0.9902755495230444,0.16630377296957227,0.9505762572071474,0.010000191358858813,0.9946763887896377,0.09730550692167428 -13171,0.40426006573179885,0.014733668210124656,0.16763881810057935,0.16722397659800442,0.4417121040711097,1.0105931754131308,0.01457282039896661,1.0086003969148936,0.16630377296957227,1.0212726548611242,0.010000191358858813,1.018844806943306,0.09730550692167428 -13173,0.37997641440214447,0.012084342508536,0.1510602407346766,0.14927233895752878,0.4417528932719399,0.829685483925215,0.01457282039896661,0.9103636710227752,0.16630377296957227,0.8263649023811763,0.010000191358858813,0.8895389528410236,0.09730550692167428 -13175,0.4028402254843157,0.015538449912761088,0.17018202257767445,0.1740386241283226,0.4417116956397428,1.0662075682719012,0.01457282039896661,1.0219673369279842,0.16630377296957227,1.0667119402417748,0.010000191358858813,1.0358103966178718,0.09730550692167428 -13177,0.37593657782124135,0.010844890859438077,0.14693166796386609,0.14179284403068826,0.441754019465299,0.7440043799727871,0.01457282039896661,0.885696998996771,0.16630377296957227,0.7226288927943282,0.010000191358858813,0.8478053775313268,0.09730550692167428 -13179,0.3332097950342995,0.008085293414226709,0.12347717142284725,0.1225708300728044,0.44181196685508456,0.5549144416122647,0.01457282039896661,0.7447215801657603,0.16630377296957227,0.5252554096989304,0.010000191358858813,0.6629139314957556,0.09730550692167428 -13181,0.4361444297387096,0.01831920352963689,0.19070167200772387,0.1939252575305515,0.4416550731065147,1.2571223064349208,0.01457282039896661,1.1455158280972113,0.16630377296957227,1.264045589128103,0.010000191358858813,1.1962055203092414,0.09730550692167428 -13183,0.35027183329519374,0.009363734706342719,0.13284420969303967,0.1311360281636636,0.44178738031636283,0.6426679660537691,0.01457282039896661,0.8035486075352134,0.16630377296957227,0.6205085221438983,0.010000191358858813,0.7489780981102845,0.09730550692167428 -13185,0.36404127076349324,0.011523246766372149,0.1444218005371483,0.1457541636864673,0.44176364889006786,0.7909742852931034,0.01457282039896661,0.8692059620354615,0.16630377296957227,0.7821147271972888,0.010000191358858813,0.8308366129064795,0.09730550692167428 -13187,0.39353883520003635,0.013106067823601488,0.1588542476461659,0.15676236474291955,0.4417265251556111,0.8993471494992797,0.01457282039896661,0.95739168928066265,0.16630377296957227,0.9017446272163957,0.010000191358858813,0.9527353761595763,0.09730550692167428 -13189,0.4029332049921892,0.01488147985026925,0.16682943119353838,0.16862055588325955,0.44171898270318294,1.02175538207485,0.01457282039896661,1.0016665237979212,0.16630377296957227,1.0334803738878757,0.010000191358858813,1.0216186968424203,0.09730550692167428 -13191,0.43374455639823845,0.017464834575504046,0.1845144852785756,0.184987732370208,0.44167221929592204,1.1983136838284152,0.01457282039896661,1.1081738029562367,0.16630377296957227,1.2381926883980277,0.010000191358858813,1.170747154408161,0.09730550692167428 -13193,0.40024901501420274,0.01405427988294581,0.16439743423484854,0.16357919165033075,0.44171819766230114,0.9650413871020458,0.01457282039896661,0.9894590298643919,0.16630377296957227,0.9651583106184076,0.010000191358858813,0.99067138348085,0.09730550692167428 -13195,0.40904927104957345,0.01456945097146256,0.1689635404249396,0.1667194433899795,0.44170724443156606,0.9991617693195993,0.01457282039896661,1.0159494463109628,0.16630377296957227,1.0045877622947608,0.010000191358858813,1.027535407228831,0.09730550692167428 -13197,0.41753994983885523,0.015097221721404434,0.17174163280572502,0.1697196852022791,0.441698526553612,1.035096868739475,0.01457282039896661,1.0323524169954434,0.16630377296957227,1.0603502877602904,0.010000191358858813,1.06677097659299,0.09730550692167428 -13199,0.4149036433322806,0.016406624675505008,0.17499114683423944,0.1768190922881613,0.44170013601840546,1.1259543494772246,0.01457282039896661,1.050515453081037,0.16630377296957227,1.1628503631681029,0.010000191358858813,1.094581857668873,0.09730550692167428 -13201,0.4227683557429657,0.01899436781216764,0.18815314335078925,0.19770513475471863,0.44167799664051416,1.3025732761161157,0.01457282039896661,1.1275418155604795,0.16630377296957227,1.3105365527604802,0.010000191358858813,1.1679575887703668,0.09730550692167428 -13205,0.3969393337858613,0.014323346041220337,0.1643117699168305,0.1650526512641421,0.44172144302849037,0.9832424545999974,0.01457282039896661,0.9884822546076931,0.16630377296957227,0.9841527120195018,0.010000191358858813,0.9881812809292261,0.09730550692167428 -13207,0.41660097231770893,0.014863109379169528,0.17212316892199842,0.16765686366474758,0.4416983627648319,1.018722598060318,0.01457282039896661,1.0352312480811179,0.16630377296957227,1.034165826555883,0.010000191358858813,1.0548837648595324,0.09730550692167428 -13209,0.39319121307884075,0.01384131598655831,0.16060780955751125,0.16161716806298526,0.4417249143651736,0.9499964306553157,0.01457282039896661,0.9683569323269998,0.16630377296957227,0.9568206186216257,0.010000191358858813,0.9691086050316401,0.09730550692167428 -13211,0.42133541710329286,0.016192754611546636,0.17904593177280864,0.17919394797629057,0.44168765356931033,1.1107051536721366,0.01457282039896661,1.0753483488568962,0.16630377296957227,1.1101569439050802,0.010000191358858813,1.0978173342246764,0.09730550692167428 -13213,0.38317385584704644,0.011867613393847624,0.15131693590543085,0.14779093437986293,0.44174783374214077,0.8148925610775608,0.01457282039896661,0.9131854856027263,0.16630377296957227,0.8101338665066056,0.010000191358858813,0.8909159207101671,0.09730550692167428 -13215,0.3817022276681844,0.013429837097203098,0.15618036981427055,0.15870819983846474,0.44174040767348155,0.9219914343453459,0.01457282039896661,0.9390338328740871,0.16630377296957227,0.9213645359904363,0.010000191358858813,0.9261518976506957,0.09730550692167428 -13217,0.37252628576250185,0.011405223558238491,0.14622285942603552,0.14452535354252355,0.4417599536590159,0.7825867943721476,0.01457282039896661,0.8821063190035875,0.16630377296957227,0.7754866275440604,0.010000191358858813,0.8528492648415481,0.09730550692167428 -13219,0.39435849002174905,0.012974950632894583,0.1593838071501193,0.1562812146234206,0.4417263357968484,0.8902608183059304,0.01457282039896661,0.9630923819431587,0.16630377296957227,0.8809139184841912,0.010000191358858813,0.9554958259707045,0.09730550692167428 -13221,0.41556640866472194,0.015530002749273618,0.17243019029372064,0.17200288634290062,0.44169561082661213,1.0652333936290082,0.01457282039896661,1.038325385981996,0.16630377296957227,1.0942024105234112,0.010000191358858813,1.0742129775559939,0.09730550692167428 -13223,0.35812015379605217,0.0091884845979138,0.13551822011675618,0.12966052136941014,0.44177964904077005,0.6306731578354015,0.01457282039896661,0.8192455709446571,0.16630377296957227,0.606195790461105,0.010000191358858813,0.7574492547493972,0.09730550692167428 -13225,0.37964245745428216,0.012892846018727526,0.15337452271562307,0.155038844026778,0.4417407756362878,0.8844777637922643,0.01457282039896661,0.9254488812692332,0.16630377296957227,0.8831813475105499,0.010000191358858813,0.9154330131149444,0.09730550692167428 -13227,0.43170917756051924,0.017048868367907012,0.18326877008833828,0.18374166147732932,0.4416788542606115,1.1690412361986258,0.01457282039896661,1.099875604693509,0.16630377296957227,1.1936522995780594,0.010000191358858813,1.1471430758116234,0.09730550692167428 -13229,0.4074062036658004,0.015326498297989898,0.17017359167331447,0.17144482685730528,0.44170987065154266,1.051934899459189,0.01457282039896661,1.0234166115109786,0.16630377296957227,1.0647502752980755,0.010000191358858813,1.045298201516644,0.09730550692167428 -13231,0.399511302162829,0.014199059543463014,0.16347085748508972,0.16314759110680221,0.44172073013067886,0.9749586329379025,0.01457282039896661,0.9867315457872929,0.16630377296957227,0.9872541844365512,0.010000191358858813,0.9975851752979548,0.09730550692167428 -13233,0.3967923295978567,0.014481174950921685,0.16416072161762874,0.165903771705355,0.44172464061945516,0.9939964247032971,0.01457282039896661,0.9868139160202096,0.16630377296957227,0.9994195882166621,0.010000191358858813,0.9923629824424641,0.09730550692167428 -13235,0.4309939047152229,0.015653431634727533,0.18005756883772617,0.17535243127303768,0.44167066846149033,1.0732564246950087,0.01457282039896661,1.0805858226215106,0.16630377296957227,1.08205614484811,0.010000191358858813,1.1060806447283185,0.09730550692167428 -13237,0.44202377148976263,0.017891056182534913,0.18928929249197696,0.1895526555001858,0.44165921567660915,1.2272678214199035,0.01457282039896661,1.1370893849697852,0.16630377296957227,1.25702861546604,0.010000191358858813,1.1972210852407303,0.09730550692167428 -13239,0.4274141776688783,0.018801064956181827,0.18557908606629278,0.19511771578933063,0.44168049900191086,1.2891217037325018,0.01457282039896661,1.1124489362792112,0.16630377296957227,1.3296734604327085,0.010000191358858813,1.184699715776857,0.09730550692167428 -13241,0.45757677650174927,0.020899804787202866,0.20294635896223892,0.20870868039224916,0.441630758510087,1.4349538792501262,0.01457282039896661,1.2177709785598152,0.16630377296957227,1.4873998600271765,0.010000191358858813,1.3158241781867042,0.09730550692167428 -13243,0.4127304367469374,0.01819503802188716,0.1809009589786355,0.1908762991560569,0.44168682893527705,1.2492737730030976,0.01457282039896661,1.0855141073070662,0.16630377296957227,1.272794745656296,0.010000191358858813,1.1361133145280893,0.09730550692167428 -13245,0.3832846606941642,0.012958190182800687,0.15549447787815668,0.15582805092893112,0.4417397863480452,0.8892578921822056,0.01457282039896661,0.936364675627117,0.16630377296957227,0.8835632224792388,0.010000191358858813,0.9174623809649636,0.09730550692167428 -13247,0.3888188518741399,0.012630928664013214,0.15606603760417842,0.15352790791036217,0.44173467154507184,0.866859504111601,0.01457282039896661,0.9421516850955285,0.16630377296957227,0.8602833085461346,0.010000191358858813,0.9274611630810614,0.09730550692167428 -13249,0.3815927630739172,0.011072626483442843,0.14850759663203805,0.14335259319496763,0.4417529412919017,0.7596113043845529,0.01457282039896661,0.8955478769523946,0.16630377296957227,0.744962412911399,0.010000191358858813,0.8721233295062062,0.09730550692167428 -13251,0.40757562274961856,0.01574479180664507,0.17125577401701264,0.17497759087121137,0.44170444249368934,1.0799985123773865,0.01457282039896661,1.0289737096125164,0.16630377296957227,1.0943151366164328,0.010000191358858813,1.0593461531086545,0.09730550692167428 -13253,0.43147232147859127,0.018821504044632627,0.19039744675556353,0.19760825931424933,0.441663950816257,1.2915554902855093,0.01457282039896661,1.142921102800222,0.16630377296957227,1.2995223922980164,0.010000191358858813,1.1983007513028614,0.09730550692167428 -13255,0.3981666109996628,0.014512448601788637,0.1646719323505179,0.16568639903310495,0.44172272691307535,0.9957886580457276,0.01457282039896661,0.9901149716733882,0.16630377296957227,1.0044388424380997,0.010000191358858813,0.9967726027802458,0.09730550692167428 -13257,0.42208568458713425,0.017524038746913488,0.18214817144576337,0.1878295371908682,0.441682831912111,1.2015919814334963,0.01457282039896661,1.0947188229921858,0.16630377296957227,1.2142902007156662,0.010000191358858813,1.1364183887775514,0.09730550692167428 -13259,0.43717150735991783,0.019715536607829653,0.1953312097826052,0.20383165371413636,0.4416504228398886,1.352595284676365,0.01457282039896661,1.172225238057116,0.16630377296957227,1.3614072650303268,0.010000191358858813,1.230256302199896,0.09730550692167428 -13261,0.38274710294101877,0.014116890597688,0.15907698996620467,0.16475719522306193,0.44173624562300773,0.9693675159107932,0.01457282039896661,0.9577000117769161,0.16630377296957227,0.9593281164847605,0.010000191358858813,0.9480810788269571,0.09730550692167428 -13263,0.4369004741948389,0.0178155759457646,0.1881732309103918,0.18719863843509538,0.4416683753328452,1.2220509630394243,0.01457282039896661,1.1278222115550722,0.16630377296957227,1.2526690829514595,0.010000191358858813,1.187592024654708,0.09730550692167428 -13265,0.44319920887736675,0.019098073061957363,0.19372122566922234,0.1994019600379192,0.44165144495927217,1.310073331468355,0.01457282039896661,1.1605726493140027,0.16630377296957227,1.3295430054842852,0.010000191358858813,1.2265250111552344,0.09730550692167428 -13267,0.3979875941223089,0.013527143567997738,0.16246179924285964,0.1586741540974151,0.4417173297771275,0.9283226403290354,0.01457282039896661,0.9793863767266762,0.16630377296957227,0.9312102068212121,0.010000191358858813,0.9650919506880193,0.09730550692167428 -13269,0.407262631017815,0.015336074243915889,0.17057379299146888,0.17248625385596028,0.44170650793455046,1.0525027933139586,0.01457282039896661,1.0256970906645169,0.16630377296957227,1.057539087513427,0.010000191358858813,1.042194105241614,0.09730550692167428 -13271,0.414694074954709,0.015212731284550265,0.17423229058481554,0.1715376745364156,0.4416914208946069,1.0438017280686138,0.01457282039896661,1.048122263929271,0.16630377296957227,1.0416121097374291,0.010000191358858813,1.050288089015416,0.09730550692167428 -13273,0.40559607370652195,0.015961180855438375,0.17264079813776828,0.17851969587189076,0.4417051648821434,1.0949826942186482,0.01457282039896661,1.0367889107158366,0.16630377296957227,1.0858451405565428,0.010000191358858813,1.0540294607921528,0.09730550692167428 -13275,0.41250840382143206,0.016161192097064264,0.17440466766337187,0.17659275262982416,0.44170137944249804,1.1085844827961768,0.01457282039896661,1.0480561029003277,0.16630377296957227,1.128677020153515,0.010000191358858813,1.078609638663485,0.09730550692167428 -13277,0.3847274230215346,0.013797256089056825,0.15824710805352094,0.16219389808187332,0.4417370510660133,0.9471137388358246,0.01457282039896661,0.9515754032601469,0.16630377296957227,0.9421114270005855,0.010000191358858813,0.9452574581050759,0.09730550692167428 -13279,0.3914242982983551,0.014706485545801638,0.16289384862910367,0.16804741018154773,0.4417304420033749,1.0092286444565532,0.01457282039896661,0.9789174163467195,0.16630377296957227,1.0099002659600749,0.010000191358858813,0.9872062040076466,0.09730550692167428 -13281,0.4867853912054163,0.027089536115962383,0.22797568552174105,0.2495520734922942,0.44157540742658274,1.858868125501039,0.01457282039896661,1.3674459464088884,0.16630377296957227,1.9627191469509075,0.010000191358858813,1.5488439774229308,0.09730550692167428 -13283,0.40624553868668867,0.014832016602546547,0.16688994141247449,0.16501497665961196,0.4417203434249003,1.0176416491491111,0.01457282039896661,1.0023926658526927,0.16630377296957227,1.0550692594069369,0.010000191358858813,1.0240870141784795,0.09730550692167428 -13285,0.39112402266654406,0.01411061563121702,0.16180511313499907,0.16403013870955718,0.44173000694880765,0.9679064064696277,0.01457282039896661,0.9723214887439697,0.16630377296957227,0.9639016199470879,0.010000191358858813,0.9691085367202024,0.09730550692167428 -13287,0.40132689147497325,0.01564236319978799,0.1685702068814276,0.17518449592016558,0.44171863539093925,1.0739386471613086,0.01457282039896661,1.0126521116866762,0.16630377296957227,1.0805682646241248,0.010000191358858813,1.0389166447950435,0.09730550692167428 -13289,0.42989437557084487,0.016469130434153725,0.18051735478850206,0.17959752277243857,0.4416801327253784,1.1286563259689317,0.01457282039896661,1.082530088485225,0.16630377296957227,1.1547709618370092,0.010000191358858813,1.1313459926599942,0.09730550692167428 -13291,0.48941420907189015,0.024351195341762825,0.22321962682907706,0.23189185470771165,0.44157877273628315,1.6718543212100037,0.01457282039896661,1.3398978739622343,0.16630377296957227,1.7475390287948436,0.010000191358858813,1.4861491901488524,0.09730550692167428 -13293,0.41574112984550127,0.016342453182270733,0.1762653833381579,0.17836234989037647,0.4416939419958297,1.121356090435311,0.01457282039896661,1.058151987873463,0.16630377296957227,1.1397354640792368,0.010000191358858813,1.0912110373793023,0.09730550692167428 -13295,0.41717276579315354,0.01604052091666942,0.17522973703134181,0.1751956309719469,0.44169880686636814,1.1005023680395896,0.01457282039896661,1.0527769189537373,0.16630377296957227,1.1266825686818749,0.010000191358858813,1.0847881552073868,0.09730550692167428 -13297,0.3934275768397755,0.013301175689510177,0.1597068407837161,0.15775628218255147,0.441729459253168,0.9129414683650564,0.01457282039896661,0.9628925687827277,0.16630377296957227,0.911416585512241,0.010000191358858813,0.9552777215103694,0.09730550692167428 -13299,0.41032195369140934,0.016371607151306634,0.17411787332281942,0.17816148122685502,0.44170325379125785,1.1227302260826013,0.01457282039896661,1.045599859979605,0.16630377296957227,1.143728358590933,0.010000191358858813,1.0752248071560633,0.09730550692167428 -13301,0.4235309928445715,0.017851138854341322,0.18479405587627368,0.19008608396271492,0.44167768751218217,1.2240985598103102,0.01457282039896661,1.111483077534559,0.16630377296957227,1.2318637218171489,0.010000191358858813,1.1525107171621563,0.09730550692167428 -13303,0.40489235995084755,0.014917474823135934,0.16957174158614233,0.16979127057225246,0.44170802597663483,1.0236622224640781,0.01457282039896661,1.0194602869560232,0.16630377296957227,1.0199458234251497,0.010000191358858813,1.0224299384700628,0.09730550692167428 -13305,0.40223317582442375,0.01438167073403228,0.16601733536826785,0.16555386493865248,0.4417175789015173,0.9875678029246573,0.01457282039896661,0.9989753863942474,0.16630377296957227,0.9892670450598305,0.010000191358858813,1.0038488459063428,0.09730550692167428 -13307,0.42957470316208446,0.017121489156316647,0.18379788445696404,0.18656099150120434,0.44168154530438863,1.1741889611072227,0.01457282039896661,1.1032705971109134,0.16630377296957227,1.1762744240229102,0.010000191358858813,1.1457134316714201,0.09730550692167428 -13309,0.40914103524693113,0.01450128329809285,0.17169801495832787,0.16721087018388164,0.4416968800968783,0.9951836961137923,0.01457282039896661,1.0292413511349348,0.16630377296957227,0.9842794947387254,0.010000191358858813,1.0078500700171844,0.09730550692167428 -13311,0.4378291037420887,0.018241838639771038,0.18903899962867698,0.19101838917414182,0.44166437155575133,1.252227056395472,0.01457282039896661,1.1350531343523498,0.16630377296957227,1.2858253851232098,0.010000191358858813,1.1969638883812928,0.09730550692167428 -13313,0.37570503279720463,0.01235496306659097,0.15057598025112234,0.1512018262348615,0.4417542905351599,0.8474269517116979,0.01457282039896661,0.9064608990702276,0.16630377296957227,0.8420107014258231,0.010000191358858813,0.8843738602150306,0.09730550692167428 -13315,0.41823614855513447,0.016106332025948904,0.17797226435542063,0.17643722942798504,0.44168447174818526,1.1053488565611744,0.01457282039896661,1.0694110463749897,0.16630377296957227,1.114430540100893,0.010000191358858813,1.0832171314622805,0.09730550692167428 -13317,0.435268143983497,0.01890994085817652,0.19217557656774287,0.19896569876369477,0.44165533675378654,1.297439891952934,0.01457282039896661,1.154121367952656,0.16630377296957227,1.301269208868451,0.010000191358858813,1.2061379926396736,0.09730550692167428 -13319,0.41788908052576146,0.016426404113883866,0.17692308456793399,0.17959075132591856,0.4416961647804406,1.1266558787507113,0.01457282039896661,1.063172789489546,0.16630377296957227,1.1437860173949372,0.010000191358858813,1.1008705193782968,0.09730550692167428 -13321,0.4093305279215236,0.01570007973694024,0.17190259696641025,0.17445145487928765,0.44170456938842173,1.0772983785575114,0.01457282039896661,1.033628086068581,0.16630377296957227,1.090992339458642,0.010000191358858813,1.0601147827357944,0.09730550692167428 -15001,0.423744171581629,0.01650091960008352,0.18016046686551285,0.1805131521356118,0.44168545212518734,1.131698733406477,0.01457282039896661,1.0821143434932448,0.16630377296957227,1.1408375163528617,0.010000191358858813,1.114270379727184,0.09730550692167428 -15003,0.40864792998698407,0.015890829563275463,0.17385773270581326,0.17605289580008548,0.4416994597510342,1.089865115409601,0.01457282039896661,1.0443613062596029,0.16630377296957227,1.0930700842754395,0.010000191358858813,1.0532527654471133,0.09730550692167428 -15005,0.5835645981243336,0.042046218987469686,0.31333813751580436,0.3538497643476993,0.4414661251076507,2.8878876451004674,0.01457282039896661,1.8701893475521816,0.16630377296957227,3.005131598762662,0.010000191358858813,2.1264607644439923,0.09730550692167428 -15007,0.4236442438772555,0.016537307203426044,0.18068363980689517,0.18077194748516984,0.44168440937979203,1.1346199436036029,0.01457282039896661,1.0843678728410517,0.16630377296957227,1.140462041107579,0.010000191358858813,1.113236132938556,0.09730550692167428 -15009,0.41282558663534386,0.0147380660009929,0.17180449386483898,0.16854750632513144,0.4417011228496697,1.0107762279838686,0.01457282039896661,1.031820939195968,0.16630377296957227,1.0068470928439486,0.010000191358858813,1.037320742376409,0.09730550692167428 -16001,0.3810586646520288,0.01230560305229679,0.15323281232207842,0.1518777170492943,0.4417437329021462,0.8442257303398346,0.01457282039896661,0.9227888590753055,0.16630377296957227,0.8287316311546213,0.010000191358858813,0.8924193800058324,0.09730550692167428 -16003,0.4587455756996267,0.0190294906765308,0.1963602784888412,0.194246504055348,0.4416354102167929,1.3044772419062394,0.01457282039896661,1.1797269152814174,0.16630377296957227,1.3710643886627145,0.010000191358858813,1.2784123519717325,0.09730550692167428 -16005,0.3719675460625581,0.012528226898886592,0.1495777280369433,0.15232062855435186,0.4417569099157142,0.8596825810310726,0.01457282039896661,0.9009660997904768,0.16630377296957227,0.858583688239424,0.010000191358858813,0.8804982794118101,0.09730550692167428 -16007,0.42592717339342995,0.019125561904117537,0.18650230784686578,0.19611264111961202,0.4416818608305655,1.3119803079834176,0.01457282039896661,1.1191948456662693,0.16630377296957227,1.3576684420318568,0.010000191358858813,1.1932461139014463,0.09730550692167428 -16009,0.4386906379676759,0.01793305965044791,0.18870334743800632,0.1902142301765633,0.44166332292217836,1.230583284880724,0.01457282039896661,1.1333299601523041,0.16630377296957227,1.2537387276136767,0.010000191358858813,1.1969965701830287,0.09730550692167428 -16011,0.36631498815642827,0.012683140858620465,0.14729277803617416,0.1540008417005055,0.4417681584798233,0.8697348060420864,0.01457282039896661,0.8877464852792268,0.16630377296957227,0.8628353735385222,0.010000191358858813,0.8754064751044582,0.09730550692167428 -16013,0.41307839477044117,0.013534989725743424,0.1673498076063482,0.1587824467745691,0.4417067680218354,0.9279524117406714,0.01457282039896661,1.0099394541813027,0.16630377296957227,0.9337516398293203,0.010000191358858813,1.0106932318448438,0.09730550692167428 -16015,0.45004544489849957,0.016586431397371273,0.18841474692025229,0.17923064011659873,0.4416538713678761,1.1357866533393777,0.01457282039896661,1.1296203464554693,0.16630377296957227,1.1672060600379404,0.010000191358858813,1.1916798953367185,0.09730550692167428 -16017,0.4479093417721589,0.018243662995799555,0.19267439355070667,0.1916730245639946,0.4416503706669135,1.2516459810631124,0.01457282039896661,1.1566011047636091,0.16630377296957227,1.2825303520934561,0.010000191358858813,1.2245895850357302,0.09730550692167428 -16019,0.36801795656323233,0.012529690254364192,0.14817970414346812,0.15310607739510762,0.44176384338879954,0.8592671700352169,0.01457282039896661,0.8927154190654647,0.16630377296957227,0.8502522863449309,0.010000191358858813,0.8723231400274061,0.09730550692167428 -16021,0.42788307887507304,0.017094895228079166,0.18159018508985425,0.18297575267347682,0.44168585925353354,1.171915705146647,0.01457282039896661,1.0902666440125421,0.16630377296957227,1.2034734772404856,0.010000191358858813,1.1483536312575637,0.09730550692167428 -16023,0.45417522835075086,0.021018764588139928,0.20218804514802768,0.20981676589364323,0.4416323699085016,1.4434773940052468,0.01457282039896661,1.2135256848385305,0.16630377296957227,1.4932602864928322,0.010000191358858813,1.3177188504460138,0.09730550692167428 -16025,0.3896501041145962,0.013909246298847412,0.1600946666866211,0.161884837961014,0.4417241556953785,0.9548178050027512,0.01457282039896661,0.9645413108419962,0.16630377296957227,0.9565532083029358,0.010000191358858813,0.9636615176646023,0.09730550692167428 -16027,0.36173254991926806,0.012000245470559785,0.1444107784789059,0.14972044466370604,0.4417720498288993,0.8237259169647371,0.01457282039896661,0.8700079824944011,0.16630377296957227,0.8097704471046314,0.010000191358858813,0.8414099987399037,0.09730550692167428 -16029,0.40935097459845393,0.017188363576651523,0.17699115878791224,0.18616651892037084,0.4417014266190286,1.1784152503831105,0.01457282039896661,1.0615606536306919,0.16630377296957227,1.1793988776523217,0.010000191358858813,1.0978883760757894,0.09730550692167428 -16031,0.37141626365184954,0.013981770150027842,0.15281311770764733,0.16259493159386434,0.44175689662882905,0.9591625872836537,0.01457282039896661,0.9218208549554797,0.16630377296957227,0.9597782148676453,0.010000191358858813,0.9242585163511896,0.09730550692167428 -16033,0.43785656918613763,0.01871538100229734,0.18352738531998877,0.18562993562278846,0.4417039666207435,1.2828233605972676,0.01457282039896661,1.1004436005752876,0.16630377296957227,1.3955954888407622,0.010000191358858813,1.223803242317461,0.09730550692167428 -16035,0.4819593659421535,0.02270790093353947,0.21620077386954495,0.2191678579246917,0.4415898936131824,1.5594994425398676,0.01457282039896661,1.2969682850808373,0.16630377296957227,1.6373907784733124,0.010000191358858813,1.4236176631763149,0.09730550692167428 -16037,0.43789332172317175,0.018288373693531014,0.19079249088538347,0.194090390951347,0.4416653270850932,1.2541837721454017,0.01457282039896661,1.143988702416372,0.16630377296957227,1.2595256672511326,0.010000191358858813,1.194069750360836,0.09730550692167428 -16039,0.36095264115019127,0.011284334844053796,0.14209095270506478,0.14381006778671837,0.4417721405348602,0.7745396564199314,0.01457282039896661,0.8569336949268833,0.16630377296957227,0.7687031895525684,0.010000191358858813,0.8202288074327266,0.09730550692167428 -16041,0.36643759583630875,0.014015023916616368,0.15086092576662957,0.1625376865941423,0.4417649497721764,0.9621829979325753,0.01457282039896661,0.9108811141013992,0.16630377296957227,0.963997529536756,0.010000191358858813,0.9128459662234885,0.09730550692167428 -16043,0.38554520632815825,0.01534177364929832,0.1600907861628963,0.1690011319903502,0.44174221797761953,1.0533638928078992,0.01457282039896661,0.9635285006110147,0.16630377296957227,1.0898439425209503,0.010000191358858813,0.9933605049684382,0.09730550692167428 -16045,0.42775799323278313,0.01839410377175721,0.1862918358878524,0.19284831341318842,0.4416771997822674,1.2614534946904765,0.01457282039896661,1.1181532513216055,0.16630377296957227,1.2859812410343285,0.010000191358858813,1.176783022594534,0.09730550692167428 -16047,0.3980171192517771,0.01580013866674891,0.16709370333775111,0.17406412117989495,0.4417247187824983,1.084707109073677,0.01457282039896661,1.0047461283815844,0.16630377296957227,1.1082546314776234,0.010000191358858813,1.03782402891534,0.09730550692167428 -16049,0.46482066254305227,0.021511599254176967,0.2074093539931589,0.21335767597905256,0.4416176434946426,1.477048814332973,0.01457282039896661,1.244907323526454,0.16630377296957227,1.528954878757193,0.010000191358858813,1.3538277005865922,0.09730550692167428 -16051,0.3533655590643225,0.01106741074245698,0.1377691209098012,0.14211044700330866,0.4417899232463666,0.758721952514744,0.01457282039896661,0.8312030409047049,0.16630377296957227,0.7488937872129535,0.010000191358858813,0.8002237607943119,0.09730550692167428 -16053,0.36679016934176595,0.012372896467095924,0.14717142575507244,0.152033222611484,0.4417651010725633,0.8486088680205228,0.01457282039896661,0.8871344843151003,0.16630377296957227,0.8389616336858583,0.010000191358858813,0.867252820639071,0.09730550692167428 -16055,0.4107527690169279,0.015780423902143903,0.17300869801776136,0.17510116338929177,0.4417038874804888,1.0829492573888204,0.01457282039896661,1.038940721869376,0.16630377296957227,1.0932547251171967,0.010000191358858813,1.062880863462655,0.09730550692167428 -16057,0.361529031073077,0.011710373889635365,0.1448065128553234,0.14741911955025402,0.4417559932982351,0.8028810525478312,0.01457282039896661,0.8725588538084756,0.16630377296957227,0.7902097533375476,0.010000191358858813,0.828127473921854,0.09730550692167428 -16059,0.4662798401236177,0.021585971359758732,0.20833219837977168,0.21428669139068313,0.44161777079785824,1.4820573096662524,0.01457282039896661,1.2501985310515749,0.16630377296957227,1.5300374337135307,0.010000191358858813,1.36388004267631,0.09730550692167428 -16061,0.4591214477994988,0.022107406528577647,0.20703109080257892,0.2171624855179597,0.4416224246800561,1.517801850464491,0.01457282039896661,1.2435003967759304,0.16630377296957227,1.573234220286665,0.010000191358858813,1.3558395006428265,0.09730550692167428 -16063,0.38265127653529,0.013646845232602607,0.15827170825146117,0.1623657530171561,0.4417366237183651,0.9367580908150328,0.01457282039896661,0.951993874864925,0.16630377296957227,0.9152578170382908,0.010000191358858813,0.9403818509356641,0.09730550692167428 -16065,0.286328027701122,0.0069048299134323,0.10290701760417362,0.11408114381348353,0.4418606920130011,0.4742404404079362,0.01457282039896661,0.6204306486996731,0.16630377296957227,0.44567511598392107,0.010000191358858813,0.5125541583641104,0.09730550692167428 -16067,0.39289365475593974,0.01555512886126605,0.1671560934143575,0.17573598893746806,0.44172131606316045,1.0675287961382849,0.01457282039896661,1.0034210017263039,0.16630377296957227,1.0517665265920055,0.010000191358858813,1.0129566522996853,0.09730550692167428 -16069,0.42288093675279825,0.018482267138319637,0.1870494950345835,0.19515589946194173,0.44167098272861716,1.2678241540534922,0.01457282039896661,1.1233539510100088,0.16630377296957227,1.2702426145441488,0.010000191358858813,1.1585718956381883,0.09730550692167428 -16071,0.4119217046310103,0.017738528028330074,0.17717947966021036,0.1872821700732012,0.44170456905767363,1.2165898885689184,0.01457282039896661,1.062900739613407,0.16630377296957227,1.2480125254922718,0.010000191358858813,1.1275093805044447,0.09730550692167428 -16073,0.3885301808136006,0.014265367073189997,0.1608180353956462,0.16542990419579215,0.44173465030277875,0.978768515929582,0.01457282039896661,0.9669338228718525,0.16630377296957227,0.9730434383405542,0.010000191358858813,0.9670943351958019,0.09730550692167428 -16075,0.3981496663350713,0.015781239912695373,0.1680712977890682,0.1746792878260482,0.4417195055014508,1.0833780039907026,0.01457282039896661,1.009518245675983,0.16630377296957227,1.0964942206400217,0.010000191358858813,1.0363045752662412,0.09730550692167428 -16077,0.37945098031244084,0.013321833286711892,0.15390884294247484,0.15951474891344164,0.4417475785107212,0.9144809107317522,0.01457282039896661,0.9268073988521897,0.16630377296957227,0.9067307611504033,0.010000191358858813,0.9282492005286282,0.09730550692167428 -16079,0.4545800837521322,0.020101582862231286,0.20085025586862237,0.20428866650839217,0.4416325996417503,1.3799679285170439,0.01457282039896661,1.205615774729155,0.16630377296957227,1.4152377159563205,0.010000191358858813,1.287263888047304,0.09730550692167428 -16081,0.3661169133519306,0.009198650202808148,0.13912774933872118,0.12968010348746295,0.4417771604294849,0.6315276243776685,0.01457282039896661,0.8389709538762884,0.16630377296957227,0.6029151848370018,0.010000191358858813,0.7711367458386534,0.09730550692167428 -16083,0.39234502130338617,0.015306367600457772,0.16499028388273984,0.17169036988445074,0.4417261413743738,1.050891157370932,0.01457282039896661,0.9910470310508724,0.16630377296957227,1.0579359105009334,0.010000191358858813,1.0040632789133834,0.09730550692167428 -16085,0.45492473932079536,0.01777844613628242,0.1937990299085867,0.18895168484999697,0.44164232078025784,1.2188493450674445,0.01457282039896661,1.1619310643997651,0.16630377296957227,1.2487749166250048,0.010000191358858813,1.226413659026146,0.09730550692167428 -16087,0.44178374601212855,0.020262779203488457,0.19586638976142912,0.2053541136158375,0.44165477931458863,1.3908483626503356,0.01457282039896661,1.1751451989694939,0.16630377296957227,1.4296201862513462,0.010000191358858813,1.2614437932810754,0.09730550692167428 -17001,0.42049696753129107,0.018429864027038174,0.18594606308033723,0.19462862828837313,0.44167675033783804,1.2641684806295825,0.01457282039896661,1.1160151729392824,0.16630377296957227,1.2667775070411884,0.010000191358858813,1.1515684762999059,0.09730550692167428 -17003,0.4303878664282236,0.018579474555138115,0.18729635585923876,0.19242485009189159,0.44166997422954596,1.2742521942641836,0.01457282039896661,1.1245217731531971,0.16630377296957227,1.3143400504037988,0.010000191358858813,1.1848908495716401,0.09730550692167428 -17005,0.4154299395132645,0.016350487586888115,0.17792980613970794,0.17856148572922215,0.44168763829106716,1.1215093644416883,0.01457282039896661,1.0691178038329883,0.16630377296957227,1.12709524692036,0.010000191358858813,1.082588709328789,0.09730550692167428 -17007,0.3840019246188663,0.012980191260674111,0.15485287444248072,0.15535391744593954,0.4417424360779607,0.8908870821254515,0.01457282039896661,0.9333430603634775,0.16630377296957227,0.8907508609125738,0.010000191358858813,0.9249692671030325,0.09730550692167428 -17009,0.41276849035875235,0.01386881158640502,0.17077245862396961,0.1609798514811862,0.4416885572208633,0.952182327841898,0.01457282039896661,1.0264173848885754,0.16630377296957227,0.9530253771872477,0.010000191358858813,0.9992008803723584,0.09730550692167428 -17011,0.43067098325741415,0.018981010510222503,0.19046995247262788,0.19705284385498795,0.4416646218506697,1.3022995430256845,0.01457282039896661,1.1428286071599545,0.16630377296957227,1.3202187590085366,0.010000191358858813,1.1952922382268114,0.09730550692167428 -17013,0.44537579408715183,0.02032907971476438,0.1992873361100579,0.2063665746390807,0.4416404468601995,1.3943681988986012,0.01457282039896661,1.1964142652443703,0.16630377296957227,1.4198266260336916,0.010000191358858813,1.2672871156324879,0.09730550692167428 -17015,0.4567229739430033,0.021556290230034428,0.20632887118467275,0.21461650932373033,0.44162178340336,1.4795731782574013,0.01457282039896661,1.238147445857179,0.16630377296957227,1.5148289758367826,0.010000191358858813,1.3280563176918019,0.09730550692167428 -17017,0.4114772803934478,0.01642310519357583,0.17590473215570848,0.17960214562367618,0.4416999837445196,1.1260025103644598,0.01457282039896661,1.054800661109847,0.16630377296957227,1.132698654788872,0.010000191358858813,1.0805505203169248,0.09730550692167428 -17019,0.3622172251500174,0.011646976631811488,0.14474221006558224,0.14683758168535088,0.44175774108803323,0.7989275327426147,0.01457282039896661,0.8717117581229443,0.16630377296957227,0.7861298580949713,0.010000191358858813,0.8243372296134155,0.09730550692167428 -17021,0.42817615285835686,0.01841419184296423,0.1874321260401423,0.19262979653701828,0.4416708082137697,1.263354518733013,0.01457282039896661,1.1246235059261858,0.16630377296957227,1.2853721603561397,0.010000191358858813,1.172464338724044,0.09730550692167428 -17023,0.42456764352298615,0.01831303786823567,0.1876187387231721,0.19519035950646269,0.44166987708880745,1.2566980155375678,0.01457282039896661,1.1261021680406804,0.16630377296957227,1.2488418692783192,0.010000191358858813,1.159568362775099,0.09730550692167428 -17025,0.43015204823524344,0.018805699449625908,0.18916005496756655,0.1962025004368232,0.44166892293139687,1.2899287821967478,0.01457282039896661,1.1356037436537667,0.16630377296957227,1.3086832504205308,0.010000191358858813,1.1893478661016987,0.09730550692167428 -17027,0.41213754816935133,0.015886502725541332,0.1753928015984434,0.17623748305823722,0.4416933513349952,1.0896906773552066,0.01457282039896661,1.0545036837506079,0.16630377296957227,1.0895094508987684,0.010000191358858813,1.0635318379509031,0.09730550692167428 -17029,0.38181964215186376,0.014910512272648987,0.1611478649564369,0.16939629083071986,0.44172669611933274,1.0233280349171199,0.01457282039896661,0.969926047046719,0.16630377296957227,1.0234992929556883,0.010000191358858813,0.9656731165401369,0.09730550692167428 -17031,0.3914091019600813,0.013673190731841981,0.1612031782361208,0.16082041835064553,0.44172541160480105,0.9384877429858928,0.01457282039896661,0.9691773873584003,0.16630377296957227,0.9315971693316907,0.010000191358858813,0.9518719004357921,0.09730550692167428 -17033,0.4283478399962184,0.01823382296078104,0.187178144486024,0.19210037971478514,0.4416686012484531,1.2513312198755164,0.01457282039896661,1.1234871987003276,0.16630377296957227,1.2690481031985978,0.010000191358858813,1.1725263670179513,0.09730550692167428 -17035,0.4223929970253204,0.017528963247057015,0.1817855023304641,0.1851773374375711,0.44168767115179,1.2016342363837091,0.01457282039896661,1.0908663486790502,0.16630377296957227,1.2322081849049047,0.010000191358858813,1.1382365746499938,0.09730550692167428 -17037,0.3595784305366656,0.011414803574213404,0.1432589662243049,0.14517276932393974,0.44176348725182507,0.7832009243912541,0.01457282039896661,0.8621000764094162,0.16630377296957227,0.7686207832287564,0.010000191358858813,0.8136889272522325,0.09730550692167428 -17039,0.4247341770439076,0.01738587727680286,0.18378399053859118,0.18655540137323764,0.4416783249583025,1.192124548577213,0.01457282039896661,1.1027631630901547,0.16630377296957227,1.2009056361153996,0.010000191358858813,1.1388429104962,0.09730550692167428 -17041,0.4053745697662019,0.016839467018098613,0.17534654980190748,0.18261993833463463,0.4417015983857082,1.1552421842623706,0.01457282039896661,1.0516372764971784,0.16630377296957227,1.1596726447064274,0.010000191358858813,1.0742552544231043,0.09730550692167428 -17043,0.39608610975114367,0.013451378975950072,0.16252015493044172,0.16018889911956688,0.44171980323372306,0.9228305147709328,0.01457282039896661,0.9795593741978665,0.16630377296957227,0.9069577160572797,0.010000191358858813,0.9635994951194791,0.09730550692167428 -17045,0.43879181459047845,0.01952307753369754,0.19395469618106387,0.19933339002677603,0.4416574403415914,1.340014014269654,0.01457282039896661,1.1633043789263302,0.16630377296957227,1.3743341588704352,0.010000191358858813,1.2308040753408092,0.09730550692167428 -17047,0.4342190989816966,0.019494082155132902,0.1924263800404895,0.19949833854410506,0.4416601695120546,1.3376760162457324,0.01457282039896661,1.1543931492590778,0.16630377296957227,1.3692984375780999,0.010000191358858813,1.2191670633572143,0.09730550692167428 -17049,0.40568670868906576,0.015995220761135066,0.17293914835125543,0.17658405551357842,0.44170247095832516,1.0969631209333148,0.01457282039896661,1.0387313445782071,0.16630377296957227,1.0999676829321374,0.010000191358858813,1.0557841508975732,0.09730550692167428 -17051,0.4164510320875668,0.016785020077478327,0.17958721050525164,0.18258481108522984,0.44168674119897366,1.1512488602874729,0.01457282039896661,1.0781264524121226,0.16630377296957227,1.1536187163580403,0.010000191358858813,1.0989072719997333,0.09730550692167428 -17053,0.42497833937087026,0.01943042195281953,0.1916045451715048,0.20331590324797974,0.44166414414576993,1.3328284939533956,0.01457282039896661,1.1487644892031956,0.16630377296957227,1.3216828111501338,0.010000191358858813,1.1876232103928837,0.09730550692167428 -17055,0.43207397055054825,0.018944273768879177,0.18973488424698592,0.19627762325680675,0.4416669088156814,1.2994841653033529,0.01457282039896661,1.1385148813431067,0.16630377296957227,1.3268916767224992,0.010000191358858813,1.1971482367458475,0.09730550692167428 -17057,0.4355012816262739,0.018851748163769937,0.19193265673243154,0.19672168897110692,0.44165647590687585,1.2934105124100337,0.01457282039896661,1.1520968597180334,0.16630377296957227,1.3081058722351917,0.010000191358858813,1.199517723159602,0.09730550692167428 -17059,0.4473139219151148,0.020204711819689924,0.19718753262865882,0.20371437258597308,0.4416492592216827,1.3870771763153371,0.01457282039896661,1.1833860502722622,0.16630377296957227,1.4365350227328628,0.010000191358858813,1.2687976404170196,0.09730550692167428 -17061,0.4264339493313515,0.018172782898887414,0.1858449762750249,0.19118041863500107,0.44167382686283196,1.2464706506972822,0.01457282039896661,1.115724666296787,0.16630377296957227,1.2680296501677006,0.010000191358858813,1.1633276010953475,0.09730550692167428 -17063,0.38778570527332534,0.01297182676965285,0.1572912297748672,0.15626644118468702,0.44173466229088587,0.8902024259290802,0.01457282039896661,0.9478217781180006,0.16630377296957227,0.8798792280478615,0.010000191358858813,0.9299126537457776,0.09730550692167428 -17065,0.4406329824203111,0.02047519349520048,0.196870644284231,0.20535231396850315,0.4416542790862173,1.4046530007451468,0.01457282039896661,1.1810486719843265,0.16630377296957227,1.4494382905488523,0.010000191358858813,1.2611060180671685,0.09730550692167428 -17067,0.4439969788110417,0.020218112548207715,0.1982163794982675,0.20563609148247658,0.4416438995481699,1.3870956668858645,0.01457282039896661,1.1897815348985825,0.16630377296957227,1.4131344654746005,0.010000191358858813,1.2624826703987857,0.09730550692167428 -17069,0.450573737739124,0.020856595164541573,0.20129858655802302,0.2104524167201498,0.4416465777799076,1.4308120507162552,0.01457282039896661,1.2037148992511613,0.16630377296957227,1.463544308996497,0.010000191358858813,1.289688594073161,0.09730550692167428 -17071,0.46078872937866666,0.020979287211563936,0.20571936766410162,0.20951854871114584,0.4416185753838559,1.4405969866065864,0.01457282039896661,1.2345769256435917,0.16630377296957227,1.4833998165225046,0.010000191358858813,1.3268959291796811,0.09730550692167428 -17073,0.424850184759725,0.017909525146205547,0.18499363328802554,0.18982986848485248,0.4416788041985432,1.2281406428681718,0.01457282039896661,1.1096726829746308,0.16630377296957227,1.2421555929663293,0.010000191358858813,1.1549875707379165,0.09730550692167428 -17075,0.43098833629612643,0.01951905143085568,0.193410249671325,0.20328882141398663,0.4416571188817202,1.339029897707392,0.01457282039896661,1.160168252092844,0.16630377296957227,1.3389193526184562,0.010000191358858813,1.2086044569444763,0.09730550692167428 -17077,0.3705221216535336,0.01293316671635742,0.15150005324774957,0.15550472019599954,0.4417424333711342,0.8875530336717958,0.01457282039896661,0.9137258578324028,0.16630377296957227,0.8829397895080939,0.010000191358858813,0.8806033511268228,0.09730550692167428 -17079,0.4309098879544862,0.018066191318635967,0.186953569204508,0.18932299120601798,0.44167225586094117,1.2389491168655162,0.01457282039896661,1.1223291385845724,0.16630377296957227,1.2665885696870451,0.010000191358858813,1.1741488175916768,0.09730550692167428 -17081,0.4222102585638417,0.017333913400528818,0.1823650322830433,0.18572008135210288,0.44168227813108296,1.1887407575570963,0.01457282039896661,1.0947305675789396,0.16630377296957227,1.2016070929591394,0.010000191358858813,1.1287697947104154,0.09730550692167428 -17083,0.41329435667613107,0.01636713453279793,0.1760451263539466,0.17858605435770417,0.4416947109263038,1.1227509534082896,0.01457282039896661,1.0572340092108328,0.16630377296957227,1.1358640916158276,0.010000191358858813,1.082695833793852,0.09730550692167428 -17085,0.4639683162813129,0.021655136363132266,0.20741330630001129,0.21368807164885142,0.4416201307459594,1.487008651416619,0.01457282039896661,1.2444885245128448,0.16630377296957227,1.5429569777557173,0.010000191358858813,1.3511100559747837,0.09730550692167428 -17087,0.42935278513684383,0.017097993142129404,0.18382477647700857,0.1841513450392704,0.441668421817924,1.1733785123060074,0.01457282039896661,1.1040481968514917,0.16630377296957227,1.1930318567351632,0.010000191358858813,1.1383965743673605,0.09730550692167428 -17089,0.37286763551428614,0.01149590123229299,0.14765662449409256,0.14616975937120347,0.4417572711658892,0.7880085953621112,0.01457282039896661,0.8902672386865702,0.16630377296957227,0.7695073941873135,0.010000191358858813,0.8548146127480878,0.09730550692167428 -17091,0.3961379632447754,0.01472792408969937,0.16560392097374993,0.168384029514262,0.44171894047879556,1.0107765806967386,0.01457282039896661,0.9954477578726626,0.16630377296957227,1.0081927557636048,0.010000191358858813,0.9985591826886243,0.09730550692167428 -17093,0.35663692387970114,0.009324860208528282,0.13540344336753096,0.13048073542115757,0.4417849827894351,0.6400882378124662,0.01457282039896661,0.8162174318052446,0.16630377296957227,0.6158611223036465,0.010000191358858813,0.7554954991343867,0.09730550692167428 -17095,0.43226506474670523,0.019061390352861522,0.1910751902607767,0.19809933215107717,0.4416600763997532,1.3075753513141568,0.01457282039896661,1.1474388873403523,0.16630377296957227,1.3238492233751724,0.010000191358858813,1.1983419354102667,0.09730550692167428 -17097,0.38314159531546466,0.012325027220394476,0.15378946637052923,0.15187119877691102,0.4417408934148155,0.8451780528509644,0.01457282039896661,0.9280146927328057,0.16630377296957227,0.8303260233318853,0.010000191358858813,0.9045185668511301,0.09730550692167428 -17099,0.41940869918652596,0.017438209509064655,0.1822091695935672,0.18674434974001747,0.4416841180944652,1.1961525357867546,0.01457282039896661,1.093347510095053,0.16630377296957227,1.205063840329594,0.010000191358858813,1.1253892924199316,0.09730550692167428 -17101,0.42210816772319903,0.017799159874797556,0.18483811754472565,0.1892883608424505,0.4416743146592028,1.2211531903827106,0.01457282039896661,1.109394048221676,0.16630377296957227,1.2268599362809316,0.010000191358858813,1.1316179710698009,0.09730550692167428 -17103,0.42221953420220865,0.017111001843308424,0.18251904751452608,0.18490315331371904,0.44167838349614863,1.1737130890743686,0.01457282039896661,1.0957446042947363,0.16630377296957227,1.1772238499554946,0.010000191358858813,1.1217589105615644,0.09730550692167428 -17105,0.41899709571010746,0.016975048340615757,0.18183433246766287,0.18433777920594818,0.4416795245696882,1.1645989151945821,0.01457282039896661,1.0907058328314125,0.16630377296957227,1.1602241129008126,0.010000191358858813,1.1082693826883945,0.09730550692167428 -17107,0.4155699784121133,0.017074521444264076,0.18003618427864077,0.184010923473239,0.441684309806768,1.1712330759534968,0.01457282039896661,1.0811116535178886,0.16630377296957227,1.1786861342845452,0.010000191358858813,1.101953444408731,0.09730550692167428 -17109,0.38037753421716325,0.015153554945737328,0.1611690212101889,0.17106342791767082,0.4417245232182698,1.040303730722598,0.01457282039896661,0.9718442400012097,0.16630377296957227,1.0428723623353573,0.010000191358858813,0.9649912806438532,0.09730550692167428 -17111,0.38682384275036075,0.012093245491653432,0.1542299558319725,0.15016901306336042,0.4417377812645212,0.8296980170890355,0.01457282039896661,0.9327838569107425,0.16630377296957227,0.8145672897846776,0.010000191358858813,0.9087418240971348,0.09730550692167428 -17113,0.3726679000086419,0.012174885488350912,0.15057687681011714,0.15093738701138537,0.441747268437081,0.835098136312493,0.01457282039896661,0.9061997303683778,0.16630377296957227,0.8179055141804734,0.010000191358858813,0.8664494935546421,0.09730550692167428 -17115,0.42143927892539645,0.017547554715772858,0.18284144126148533,0.18717039700792115,0.4416835403876217,1.203462880422458,0.01457282039896661,1.0975572430342164,0.16630377296957227,1.2155151109330018,0.010000191358858813,1.1344585910216316,0.09730550692167428 -17117,0.42409749552195375,0.018320984472675467,0.18734695877634996,0.19386822733910375,0.4416712310766654,1.256832902243279,0.01457282039896661,1.1240149035090883,0.16630377296957227,1.257994446190664,0.010000191358858813,1.1594765100969688,0.09730550692167428 -17119,0.40850665384291374,0.015642787136779652,0.17284869176488699,0.17416991129912177,0.4417021663686249,1.0731846814239865,0.01457282039896661,1.0384381407400527,0.16630377296957227,1.0773090978934432,0.010000191358858813,1.049752222345965,0.09730550692167428 -17121,0.422600043284863,0.018329251403623306,0.18602491057592674,0.19426678897637556,0.4416768502607865,1.2575146826619943,0.01457282039896661,1.1168844788537284,0.16630377296957227,1.2607995661559843,0.010000191358858813,1.1570165767961629,0.09730550692167428 -17123,0.4398360946848354,0.02017029824318161,0.19809923777290223,0.20696119629240164,0.4416433827449464,1.3833922715800826,0.01457282039896661,1.1885009933895438,0.16630377296957227,1.3917975778465836,0.010000191358858813,1.2486564896149623,0.09730550692167428 -17125,0.44023504966435767,0.020134198270720424,0.19599048944323916,0.20444511419479489,0.441652264356867,1.3812064303136053,0.01457282039896661,1.1761026028680206,0.16630377296957227,1.4137133538277769,0.010000191358858813,1.2487525903070038,0.09730550692167428 -17127,0.43171601465355247,0.01868324781548337,0.18991917136850212,0.1953405824586827,0.44166316653111914,1.28173435126569,0.01457282039896661,1.1394786332136926,0.16630377296957227,1.2973657670501613,0.010000191358858813,1.1889828835651461,0.09730550692167428 -17129,0.4271566894088904,0.016849952696623902,0.18288729481064822,0.18330896414447206,0.4416740009359165,1.1552139519788898,0.01457282039896661,1.0997621717715962,0.16630377296957227,1.1602199614238324,0.010000191358858813,1.1340708873453869,0.09730550692167428 -17131,0.4319671984636337,0.018350133167579864,0.19043038259559453,0.1951425704921293,0.44166200188633215,1.2590591670144917,0.01457282039896661,1.142233663338208,0.16630377296957227,1.2543057748637514,0.010000191358858813,1.182180479189591,0.09730550692167428 -17133,0.4126179214707294,0.01574581796685673,0.17447032306925192,0.17444752201099473,0.44169573785692184,1.0800182203073838,0.01457282039896661,1.0503592185637323,0.16630377296957227,1.0856846463947565,0.010000191358858813,1.0661593096313973,0.09730550692167428 -17135,0.4287932038124572,0.018029117994517774,0.18819119862595934,0.1914390303205483,0.44166305061996647,1.236772188478624,0.01457282039896661,1.1294363644555667,0.16630377296957227,1.2397767496411656,0.010000191358858813,1.1598440803757133,0.09730550692167428 -17137,0.42252483045012856,0.017726695713564323,0.1836985816554821,0.18804636689545015,0.4416766327676668,1.2164784462929292,0.01457282039896661,1.1033091132966621,0.16630377296957227,1.233294541674471,0.010000191358858813,1.140138590378824,0.09730550692167428 -17139,0.4203650408224374,0.018422624365057726,0.18613332033967436,0.19449940343260663,0.44167861507027273,1.263472444968091,0.01457282039896661,1.1161674279907832,0.16630377296957227,1.265254933835581,0.010000191358858813,1.1551938738807586,0.09730550692167428 -17141,0.4124122607638312,0.016112791183339168,0.17532485777218382,0.17722485417828238,0.4416958458373197,1.1046823062747329,0.01457282039896661,1.05448393364823,0.16630377296957227,1.1112339769842077,0.010000191358858813,1.0773370935448332,0.09730550692167428 -17143,0.40213048569572113,0.015410125680531933,0.16968334014531739,0.17290073441264056,0.44171043120009035,1.0574576092898447,0.01457282039896661,1.0191164199847775,0.16630377296957227,1.0591603952120177,0.010000191358858813,1.0287153739506496,0.09730550692167428 -17145,0.4231590251663787,0.017239686938564494,0.18205006193233178,0.18329103481478082,0.4416794235958047,1.1829522738196214,0.01457282039896661,1.0927390624762428,0.16630377296957227,1.2094235722332822,0.010000191358858813,1.1239715175301779,0.09730550692167428 -17147,0.42799654463692527,0.01785221826205046,0.18615609741083783,0.18853160286321544,0.4416729214698633,1.2245295250322994,0.01457282039896661,1.1170997442528416,0.16630377296957227,1.2422799731867684,0.010000191358858813,1.1612686496883184,0.09730550692167428 -17149,0.4330924702546479,0.01953177119618224,0.1926761258076708,0.20082950426665241,0.4416602877120289,1.3402762666173618,0.01457282039896661,1.1562356685693498,0.16630377296957227,1.3615919801123808,0.010000191358858813,1.2138338771155572,0.09730550692167428 -17151,0.4555569310995885,0.01953079613579048,0.19826695923129523,0.19857857247437002,0.44163021347497106,1.3394996973748612,0.01457282039896661,1.1938150551330509,0.16630377296957227,1.3918680110186061,0.010000191358858813,1.2864550540382338,0.09730550692167428 -17153,0.42890301348553744,0.018899021617067965,0.18748761536398473,0.1953872199675301,0.4416748836148336,1.2966596871346572,0.01457282039896661,1.1259636154946215,0.16630377296957227,1.3333912091998075,0.010000191358858813,1.192438548066673,0.09730550692167428 -17155,0.44484842933739155,0.019061846099200926,0.19428989754933423,0.19717547756221449,0.4416497230561353,1.3085170630155367,0.01457282039896661,1.1660783558311953,0.16630377296957227,1.34128944827416,0.010000191358858813,1.2364508366892117,0.09730550692167428 -17157,0.4260110849010379,0.016945769134387195,0.18339017696669338,0.1829967690935243,0.4416726145901807,1.1622645553905544,0.01457282039896661,1.1010559451583155,0.16630377296957227,1.169604289253936,0.010000191358858813,1.1230925560359692,0.09730550692167428 -17159,0.43292964808587775,0.019896810773847487,0.19388057162427508,0.20289867491737168,0.44165734523166666,1.364776502485804,0.01457282039896661,1.1635426007194705,0.16630377296957227,1.3890192205353287,0.010000191358858813,1.2210148739497715,0.09730550692167428 -17161,0.4202865209151504,0.017245949210882593,0.1814573711070896,0.18526794160251486,0.44168550876354484,1.182696442549425,0.01457282039896661,1.089469353652254,0.16630377296957227,1.1927735148846312,0.010000191358858813,1.1211598935325373,0.09730550692167428 -17163,0.3948052979295641,0.014401811941002086,0.16460211388719553,0.16599733234706526,0.44171986670674135,0.9885103085547242,0.01457282039896661,0.9904867464688348,0.16630377296957227,0.9825808260635298,0.010000191358858813,0.985484507310961,0.09730550692167428 -17165,0.43089141514842966,0.019244418005415303,0.1902608283751448,0.199231556323195,0.4416667889728636,1.3200198535523096,0.01457282039896661,1.1427885062860554,0.16630377296957227,1.3427530080504684,0.010000191358858813,1.2028935252831718,0.09730550692167428 -17167,0.4113440853016049,0.015701272404909143,0.17430753559901574,0.17502561277002698,0.44169854245434426,1.0769166796954017,0.01457282039896661,1.047223389565961,0.16630377296957227,1.0752279568439451,0.010000191358858813,1.0585907188879948,0.09730550692167428 -17169,0.43547515426731487,0.019697544181920768,0.19392768444511968,0.20262420334422315,0.44165401016452915,1.3512792372767695,0.01457282039896661,1.1637222245528358,0.16630377296957227,1.3707229507551209,0.010000191358858813,1.2245652050849425,0.09730550692167428 -17171,0.4291059695536896,0.018692351148983023,0.1887145805799891,0.19437677655878569,0.4416698358546006,1.2822489694964632,0.01457282039896661,1.1317217510428046,0.16630377296957227,1.3044011777707438,0.010000191358858813,1.1839795596967195,0.09730550692167428 -17173,0.4379804388081423,0.01956120975841085,0.19375574696527587,0.20084741139093265,0.4416563878730042,1.3421974935806116,0.01457282039896661,1.1630102511471472,0.16630377296957227,1.3701240810325102,0.010000191358858813,1.2301084365979182,0.09730550692167428 -17175,0.43418908584175364,0.019773187560580885,0.19259017211086515,0.2002735994955337,0.44166546003768137,1.3562303919472622,0.01457282039896661,1.1536580014773148,0.16630377296957227,1.396919894834543,0.010000191358858813,1.2267056393563667,0.09730550692167428 -17177,0.43579729578682447,0.019472669955104965,0.193348145002028,0.19988118201328553,0.4416571749878955,1.3360700777925971,0.01457282039896661,1.159508959634691,0.16630377296957227,1.362234783745265,0.010000191358858813,1.2217046813590093,0.09730550692167428 -17179,0.4182958608749776,0.016888983910843175,0.17995793815521702,0.1828825367908838,0.4416878460025516,1.1584130524846952,0.01457282039896661,1.0796402864690537,0.16630377296957227,1.1658055808915058,0.010000191358858813,1.1066165010971591,0.09730550692167428 -17181,0.4359050760543294,0.018227999373950275,0.18964756881945188,0.19257915536220022,0.44166390122105526,1.2501700536754443,0.01457282039896661,1.138823921321738,0.16630377296957227,1.2643540239115554,0.010000191358858813,1.18965003036605,0.09730550692167428 -17183,0.41557206402682556,0.017349896104624913,0.1792678817126354,0.18526392240614659,0.44169329940788216,1.189781781152424,0.01457282039896661,1.0762526179057368,0.16630377296957227,1.2089021690545179,0.010000191358858813,1.1158702378802383,0.09730550692167428 -17185,0.4263430134388631,0.01861189662954444,0.187909859856385,0.19402615576360668,0.44166989561139647,1.27666473312636,0.01457282039896661,1.1270369936088451,0.16630377296957227,1.295417207302089,0.010000191358858813,1.175235887788245,0.09730550692167428 -17187,0.41836183205583444,0.01783294109416747,0.18191106690491973,0.1897392792585832,0.4416841100429523,1.2232600720401972,0.01457282039896661,1.0934633747469604,0.16630377296957227,1.2377785728654738,0.010000191358858813,1.1360561765082013,0.09730550692167428 -17189,0.4295129414049771,0.01839562624809951,0.1885139252062595,0.1924807701232885,0.4416664192654137,1.2619954662054642,0.01457282039896661,1.1305252984044167,0.16630377296957227,1.280564420251389,0.010000191358858813,1.1754359281715105,0.09730550692167428 -17191,0.4359954431959676,0.019870619050528986,0.19420200169743265,0.2029046060300635,0.4416559445089471,1.363170780071718,0.01457282039896661,1.1661410916641235,0.16630377296957227,1.391171851498313,0.010000191358858813,1.2312123577283702,0.09730550692167428 -17193,0.4446660101308497,0.020884415578948115,0.20243596413935477,0.21205959317468792,0.4416361585841716,1.4326046925036828,0.01457282039896661,1.214159027636954,0.16630377296957227,1.43780275849604,0.010000191358858813,1.2739408265743573,0.09730550692167428 -17195,0.42620330330445544,0.018237250680105607,0.18631353866253658,0.19197995239205007,0.44167529536812644,1.2506839483279446,0.01457282039896661,1.117974506691599,0.16630377296957227,1.2669191700439164,0.010000191358858813,1.1654237542898,0.09730550692167428 -17197,0.37272142972531525,0.011170055786958481,0.14649988550445664,0.14368016327136643,0.4417575240170647,0.7657237793654113,0.01457282039896661,0.8844206633164038,0.16630377296957227,0.7477045927705819,0.010000191358858813,0.8466161979071651,0.09730550692167428 -17199,0.42471827216864044,0.017366878059832898,0.18268356119738122,0.18497552363658798,0.4416820011139564,1.1909893660114395,0.01457282039896661,1.0964293904460711,0.16630377296957227,1.213894687435066,0.010000191358858813,1.1363765434626196,0.09730550692167428 -17201,0.4033991281879727,0.015166256863747316,0.1695786541898667,0.17140966942152308,0.4417098595530622,1.0406776711608183,0.01457282039896661,1.0189017297631753,0.16630377296957227,1.0390677154555712,0.010000191358858813,1.0264691511233375,0.09730550692167428 -17203,0.40681940214530676,0.01618381723246609,0.174466348208214,0.17904172356984463,0.44169996781640575,1.109906463493298,0.01457282039896661,1.0474192815571188,0.16630377296957227,1.1039381569381779,0.010000191358858813,1.0646854395088825,0.09730550692167428 -18001,0.3806020352447138,0.014941995090177818,0.1609873626932517,0.17051450719557315,0.4417371919612559,1.0267209236130272,0.01457282039896661,0.9673696280070009,0.16630377296957227,1.013679815773004,0.010000191358858813,0.9671262556531341,0.09730550692167428 -18003,0.38685635651915273,0.013661582366290607,0.15930692182726475,0.161136277854908,0.44173419060555225,0.9373647489166961,0.01457282039896661,0.9574321623280961,0.16630377296957227,0.9284740610433138,0.010000191358858813,0.9458154898161277,0.09730550692167428 -18005,0.40560780229410026,0.015112484406846913,0.1692362311658941,0.17009632100598882,0.44171264635752067,1.0372936386181744,0.01457282039896661,1.0170430923481626,0.16630377296957227,1.0455305116501763,0.010000191358858813,1.0308551278019642,0.09730550692167428 -18007,0.4104412211139622,0.016712189677874516,0.1767114656654085,0.18170511519992627,0.44170122579119153,1.1468520766483106,0.01457282039896661,1.059840211785492,0.16630377296957227,1.1520012886905109,0.010000191358858813,1.0883286752125956,0.09730550692167428 -18009,0.4317402917663151,0.018081419571466962,0.18616131303052716,0.18960804088326003,0.44167363756231426,1.240675740383371,0.01457282039896661,1.1168711630982575,0.16630377296957227,1.2773446341690358,0.010000191358858813,1.1786985187738175,0.09730550692167428 -18011,0.3923418634698248,0.013600024209415857,0.1611040504875108,0.16071111627657386,0.44172642604820617,0.9331721779550641,0.01457282039896661,0.9712876603896043,0.16630377296957227,0.9211969495947944,0.010000191358858813,0.9613897741963553,0.09730550692167428 -18013,0.4531806814595535,0.018225980318605037,0.19403763056585233,0.19056018943269004,0.4416453313929396,1.2500045973424245,0.01457282039896661,1.1633667760843196,0.16630377296957227,1.2897546787125105,0.010000191358858813,1.2375176811841317,0.09730550692167428 -18015,0.4186295176339808,0.016686133893382298,0.1791525331006653,0.18140452195864298,0.4416907666333242,1.1441484084437559,0.01457282039896661,1.0743191566089172,0.16630377296957227,1.1533429664187613,0.010000191358858813,1.1057047499769121,0.09730550692167428 -18017,0.40738552968375585,0.016175528905647267,0.17380984847204428,0.17841973333485397,0.44170417958963226,1.109624431205787,0.01457282039896661,1.0422586742390652,0.16630377296957227,1.110994653681952,0.010000191358858813,1.0623273675629603,0.09730550692167428 -18019,0.40566282253185293,0.01431502148410584,0.16777218315013198,0.16538616324621006,0.44171100481577374,0.9827467599450235,0.01457282039896661,1.0090094036952868,0.16630377296957227,0.9805079319846799,0.010000191358858813,1.0085942879143008,0.09730550692167428 -18021,0.41313568706328924,0.016456428591781598,0.17697200385297904,0.17987410494934478,0.44169396057088484,1.1285983246114273,0.01457282039896661,1.0626634276924447,0.16630377296957227,1.13289895991195,0.010000191358858813,1.0846885858920712,0.09730550692167428 -18023,0.4006437072799688,0.015762481564689394,0.16961901581966585,0.1742016251785592,0.44171524392219047,1.0815109559151348,0.01457282039896661,1.0177261815886762,0.16630377296957227,1.0914522597181329,0.010000191358858813,1.035420760625776,0.09730550692167428 -18025,0.42177600429165674,0.016585534081566815,0.17864468051531823,0.1793851150089525,0.4416913851678914,1.137759122959111,0.01457282039896661,1.0729281182716788,0.16630377296957227,1.162799233708375,0.010000191358858813,1.1132239036407883,0.09730550692167428 -18027,0.39261665671872936,0.015382105013130233,0.16557164167904553,0.17238892148629045,0.44172610050471456,1.056106591854985,0.01457282039896661,0.9945398177657885,0.16630377296957227,1.0599732459333442,0.010000191358858813,1.0090846793038963,0.09730550692167428 -18029,0.4076075458432229,0.014496820476045183,0.16888003434505272,0.16668680092915672,0.4417072476293018,0.9940610221342957,0.01457282039896661,1.0158892233453856,0.16630377296957227,0.9909957923478314,0.010000191358858813,1.0230524237378258,0.09730550692167428 -18031,0.404954693737478,0.015622990671301783,0.17168461780722383,0.17499489987419514,0.4417087836973541,1.071854315171961,0.01457282039896661,1.030037250094142,0.16630377296957227,1.0673317270675087,0.010000191358858813,1.0410461809034646,0.09730550692167428 -18033,0.39638422695420095,0.014403830640076856,0.16474277298950063,0.16603359758467526,0.4417203897894224,0.988332726113895,0.01457282039896661,0.9903445307722134,0.16630377296957227,0.9844917875234451,0.010000191358858813,0.9909277952125412,0.09730550692167428 -18035,0.39796798083622814,0.015513928494037443,0.1679431053262686,0.17296334237576674,0.4417119643765249,1.0648674509598057,0.01457282039896661,1.0100421580881975,0.16630377296957227,1.0768140476117316,0.010000191358858813,1.0207214046056654,0.09730550692167428 -18037,0.41025498070649524,0.01597322490562028,0.1734298434859907,0.17548069746918415,0.4417021656637036,1.0954721144259323,0.01457282039896661,1.0435965493712358,0.16630377296957227,1.1096634067097535,0.010000191358858813,1.0671045932780634,0.09730550692167428 -18039,0.38178857352068807,0.013348006535623961,0.15594848830717864,0.15844633676805983,0.4417428878090444,0.9154660546107776,0.01457282039896661,0.9379304326147029,0.16630377296957227,0.9112141824834403,0.010000191358858813,0.9267065798332452,0.09730550692167428 -18041,0.4240573495160318,0.017547591453689698,0.18299384884595077,0.18734603570317693,0.44168199859077495,1.203816366150632,0.01457282039896661,1.09815061877422,0.16630377296957227,1.2202760875280458,0.010000191358858813,1.1423464997311639,0.09730550692167428 -18043,0.4052042022199779,0.01462853368681619,0.1689599778990647,0.1678372004978157,0.4417080799254738,1.0036330060510932,0.01457282039896661,1.015904305733681,0.16630377296957227,0.9972218379703743,0.010000191358858813,1.0171050305249802,0.09730550692167428 -18045,0.4234243292276949,0.018100091083184444,0.18490349129015324,0.19032776612352906,0.44167882837649164,1.2416327465390176,0.01457282039896661,1.1092179093132608,0.16630377296957227,1.262097966313068,0.010000191358858813,1.1559948194384548,0.09730550692167428 -18047,0.40672417872572353,0.01543509253566545,0.17160980115202917,0.1723247277276258,0.4417045672634349,1.0586482418002463,0.01457282039896661,1.032082433873732,0.16630377296957227,1.0608128116055688,0.010000191358858813,1.0456058577166396,0.09730550692167428 -18049,0.4181341738781609,0.017033527293613737,0.18024386183968197,0.18472668017711424,0.4416874648317529,1.1677321481854714,0.01457282039896661,1.082108255391784,0.16630377296957227,1.1714479489824352,0.010000191358858813,1.1143074287308625,0.09730550692167428 -18051,0.41678308910595885,0.016653466485361958,0.17793136422020578,0.18026147683866794,0.441692409949779,1.1420274179897298,0.01457282039896661,1.0690430843793057,0.16630377296957227,1.1588940939687533,0.010000191358858813,1.1003935591457177,0.09730550692167428 -18053,0.41558030710596783,0.01706218169969518,0.17847806537648048,0.18307601106876753,0.4416894723079848,1.1703554111909111,0.01457282039896661,1.0723866244736882,0.16630377296957227,1.1923390804310858,0.010000191358858813,1.1088439087430424,0.09730550692167428 -18055,0.42240276419418576,0.017103238640768383,0.18145139904257535,0.18398747194643278,0.441684540229736,1.1725901926335234,0.01457282039896661,1.089863977930381,0.16630377296957227,1.1860579201281802,0.010000191358858813,1.1270332028349501,0.09730550692167428 -18057,0.37227877129341214,0.010803767461520165,0.1455975430637412,0.14125046040370892,0.44176001153076727,0.7408321574198937,0.01457282039896661,0.879344055657246,0.16630377296957227,0.71770662864922,0.010000191358858813,0.8358731268865318,0.09730550692167428 -18059,0.403557533179863,0.014254265493495155,0.16597420121578904,0.16435583471445153,0.44171485301906543,0.9785072823768353,0.01457282039896661,0.999457993692488,0.16630377296957227,0.9821250198187932,0.010000191358858813,1.0073339961522816,0.09730550692167428 -18061,0.4116094532737707,0.014906877252415652,0.17124487320820606,0.16881248529873427,0.4417030047580859,1.022571437018188,0.01457282039896661,1.0291550296336223,0.16630377296957227,1.0279065606971685,0.010000191358858813,1.041140168451031,0.09730550692167428 -18063,0.38708976901706116,0.012491599435308684,0.15546780633663013,0.1525573879443842,0.44173678992179233,0.8567941506883046,0.01457282039896661,0.9377017313843223,0.16630377296957227,0.8463480633104292,0.010000191358858813,0.9156922714248117,0.09730550692167428 -18065,0.42676389521694236,0.017367360068097044,0.1840473628305611,0.18548067831172757,0.4416758695535837,1.1911861427502206,0.01457282039896661,1.1045065072290379,0.16630377296957227,1.2069250235045914,0.010000191358858813,1.1415462127331217,0.09730550692167428 -18067,0.4203473624719689,0.016949970115984054,0.17967132730395247,0.1823405761226185,0.44168925103583156,1.162251250248088,0.01457282039896661,1.0782958370751985,0.16630377296957227,1.1827050525198048,0.010000191358858813,1.1168957709171603,0.09730550692167428 -18069,0.4085914046894723,0.01601028674437452,0.17340353406506392,0.17630089647513256,0.44170120261687096,1.0982609216443922,0.01457282039896661,1.0416108344729886,0.16630377296957227,1.1080708247240993,0.010000191358858813,1.0616649279245773,0.09730550692167428 -18071,0.4103490348166794,0.015407312327312876,0.17137084574544056,0.17104555760692963,0.4417061122455817,1.0571944396548818,0.01457282039896661,1.029809271830083,0.16630377296957227,1.0770603653409085,0.010000191358858813,1.0506162246022157,0.09730550692167428 -18073,0.401869216970835,0.01517212406168544,0.1679673801868439,0.17045791589442194,0.4417145315014166,1.040894620283977,0.01457282039896661,1.010277112195931,0.16630377296957227,1.0512122445055865,0.010000191358858813,1.0265059571563007,0.09730550692167428 -18075,0.40722057908968623,0.01642686745472238,0.17352538514621194,0.17947601104205357,0.44170382942811903,1.1262998011533716,0.01457282039896661,1.042085593315632,0.16630377296957227,1.1397772091089804,0.010000191358858813,1.074053218494387,0.09730550692167428 -18077,0.4118232191706105,0.015769318856798473,0.17363684241338784,0.17453142792643128,0.4416973661277372,1.0818310362200516,0.01457282039896661,1.0446921531895184,0.16630377296957227,1.0934697106702376,0.010000191358858813,1.0657943548567324,0.09730550692167428 -18079,0.3989660966613724,0.013870098094287483,0.16227262114303825,0.16109794129395588,0.4417232881800348,0.9522111789721607,0.01457282039896661,0.9792393761153342,0.16630377296957227,0.96320447921405306,0.010000191358858813,0.9882530324658151,0.09730550692167428 -18081,0.3924387302013036,0.013759577607962564,0.16104067134782157,0.16141111768570227,0.4417274644362107,0.9445332941299003,0.01457282039896661,0.9694418882052098,0.16630377296957227,0.9409472833094106,0.010000191358858813,0.9626916379299357,0.09730550692167428 -18083,0.4100741982078908,0.016891003358365124,0.17664848601804178,0.18325990718099439,0.4416952676898007,1.1583441892847797,0.01457282039896661,1.0622552491799198,0.16630377296957227,1.166132252038121,0.010000191358858813,1.089056615372543,0.09730550692167428 -18085,0.3998562036039971,0.014795189356010754,0.16646373751883842,0.16804633998393803,0.4417184626434756,1.0151044007346415,0.01457282039896661,1.0008289576319382,0.16630377296957227,1.020671224610024,0.010000191358858813,1.0097542171526914,0.09730550692167428 -18087,0.3613908648077697,0.012388579157752605,0.1443433451591178,0.15212063127997788,0.4417741165611146,0.8496461995847722,0.01457282039896661,0.8709606698761672,0.16630377296957227,0.8432554652633695,0.010000191358858813,0.8587785311412952,0.09730550692167428 -18089,0.39966186700533723,0.014932110936247646,0.16740544019371684,0.16956323947996896,0.441715532804184,1.0247247937565631,0.01457282039896661,1.00558853585643,0.16630377296957227,1.0240457114227963,0.010000191358858813,1.0121890143748824,0.09730550692167428 -18091,0.4156263214362847,0.01577215154111499,0.17544856394694652,0.17511743398541257,0.44169402437415833,1.0819838034052878,0.01457282039896661,1.0541850461091546,0.16630377296957227,1.0878325542653373,0.010000191358858813,1.0716200648608512,0.09730550692167428 -18093,0.4255200851831761,0.017514918199120832,0.18365625644902142,0.18684732717852517,0.4416789838366397,1.2014366636153186,0.01457282039896661,1.1020181655370855,0.16630377296957227,1.2184416924368926,0.010000191358858813,1.1451353691789161,0.09730550692167428 -18095,0.41582635209820085,0.01655048827961998,0.17772796907734273,0.18017140369227447,0.4416924464120715,1.135041956046949,0.01457282039896661,1.0666917559237543,0.16630377296957227,1.145863481344037,0.010000191358858813,1.0914707106200918,0.09730550692167428 -18097,0.3829890780970286,0.012750480412617744,0.15525578768816053,0.15445917794112107,0.4417396100135919,0.8748296297851368,0.01457282039896661,0.9346094975398267,0.16630377296957227,0.8646855293700972,0.010000191358858813,0.9069927219029953,0.09730550692167428 -18099,0.4027295692216418,0.015820851408797028,0.17104865646035372,0.17601293547838545,0.4417101120248681,1.0853348320588183,0.01457282039896661,1.0269433144751787,0.16630377296957227,1.0858023216306418,0.010000191358858813,1.0433989664038048,0.09730550692167428 -18101,0.4297699465390564,0.01734814113602751,0.1826625492615806,0.1830466467677455,0.4416836417460614,1.1904496104396483,0.01457282039896661,1.099666995628642,0.16630377296957227,1.233778884466037,0.010000191358858813,1.1567021325594287,0.09730550692167428 -18103,0.4150817289665799,0.015833386933862742,0.17498582352434947,0.17504843081342247,0.4416945950082042,1.086339164133602,0.01457282039896661,1.0534639330783642,0.16630377296957227,1.0960866806796956,0.010000191358858813,1.0730800716443722,0.09730550692167428 -18105,0.36120660894193907,0.011659930943957536,0.1443357787011797,0.1468158549916896,0.44175527705412987,0.7996381836415998,0.01457282039896661,0.8717757536025391,0.16630377296957227,0.7884874955937744,0.010000191358858813,0.8196378513154501,0.09730550692167428 -18107,0.41293461004392223,0.016454806002548502,0.17532802612227558,0.17864568906749212,0.44169810563549716,1.1284429890543803,0.01457282039896661,1.05308591935948,0.16630377296957227,1.150209836829103,0.010000191358858813,1.0861171837940646,0.09730550692167428 -18109,0.4061059726068721,0.014290294659888975,0.16721869980147563,0.16476239028549383,0.44171252219129575,0.9804329168746007,0.01457282039896661,1.0062372273735685,0.16630377296957227,0.9825985643681883,0.010000191358858813,1.0146346023244406,0.09730550692167428 -18111,0.4276521399017903,0.0170221131889454,0.18245722601316428,0.18334010585517058,0.44168033899795023,1.1676413820408502,0.01457282039896661,1.0965124844003227,0.16630377296957227,1.1868899838309641,0.010000191358858813,1.139648404054355,0.09730550692167428 -18113,0.39465369215156815,0.014255393853391304,0.16306002193516517,0.16476423875222312,0.4417250510311298,0.9785723060577698,0.01457282039896661,0.9802066403666565,0.16630377296957227,0.9791241501718664,0.010000191358858813,0.9829401458502922,0.09730550692167428 -18115,0.430285725999042,0.01667303300931179,0.18256815531148857,0.18065400336838877,0.4416752191867117,1.1436441297277473,0.01457282039896661,1.0979645767871133,0.16630377296957227,1.16204286872936,0.010000191358858813,1.1348406267942681,0.09730550692167428 -18117,0.4202500832256662,0.016891019057585315,0.17916043933381384,0.18300481796040344,0.44168923665105897,1.1588997525144742,0.01457282039896661,1.0755858425778966,0.16630377296957227,1.1768838916119935,0.010000191358858813,1.117033020469984,0.09730550692167428 -18119,0.42110370947639464,0.015595844468626396,0.17635232325617872,0.1743362207874276,0.4416888741332248,1.0691516598601822,0.01457282039896661,1.0598277480535203,0.16630377296957227,1.07639123981944,0.010000191358858813,1.0858749215810484,0.09730550692167428 -18121,0.4294748316637521,0.016961997349951748,0.18300182724946246,0.18177546471734585,0.4416751947051323,1.1635366482754104,0.01457282039896661,1.0999114240036927,0.16630377296957227,1.1885939243725359,0.010000191358858813,1.13832472403181,0.09730550692167428 -18123,0.42543946495195806,0.01671893692774873,0.18078404821389565,0.17970669047583043,0.4416816435151769,1.1466672175403825,0.01457282039896661,1.0858350171126072,0.16630377296957227,1.1737005257919706,0.010000191358858813,1.1191998008689588,0.09730550692167428 -18125,0.43309958010209754,0.017902408248312584,0.1870756541583371,0.18934410576051203,0.4416704243607327,1.228124346942041,0.01457282039896661,1.1235560032382639,0.16630377296957227,1.2509816911509275,0.010000191358858813,1.174909990951948,0.09730550692167428 -18127,0.4034339367306262,0.014377962148220486,0.16681956384542024,0.1654970332000056,0.44171260200922513,0.9866626876337288,0.01457282039896661,1.0037218632779152,0.16630377296957227,0.9880119136430621,0.010000191358858813,1.0076736571987286,0.09730550692167428 -18129,0.41485433480283923,0.015605042364598292,0.17542794916393528,0.17488255914816703,0.44169234565443194,1.0701442051408097,0.01457282039896661,1.0549430723177258,0.16630377296957227,1.065345414298923,0.010000191358858813,1.069242653157882,0.09730550692167428 -18131,0.4184137527379901,0.017336894258414164,0.18155449276768904,0.18621685449106423,0.44168291207406063,1.1890105115872356,0.01457282039896661,1.0905654057520713,0.16630377296957227,1.1968340067510284,0.010000191358858813,1.125425726377681,0.09730550692167428 -18133,0.40422649019793455,0.014969331404743465,0.16837193375017406,0.16852219329040397,0.4417069188130526,1.0272308423150482,0.01457282039896661,1.0131626446037763,0.16630377296957227,1.0415272280510992,0.010000191358858813,1.0217290460599888,0.09730550692167428 -18135,0.42117452936639,0.01776168707669092,0.18360972062388842,0.1895876805051625,0.4416827852011397,1.2184008984997008,0.01457282039896661,1.100944010585399,0.16630377296957227,1.225032751983405,0.010000191358858813,1.1389164546751376,0.09730550692167428 -18137,0.4073552209696587,0.015731238197612747,0.17206346090730174,0.17487807236100766,0.4417061970806576,1.079153688452755,0.01457282039896661,1.0340216089393026,0.16630377296957227,1.0842056142207825,0.010000191358858813,1.0535036055677625,0.09730550692167428 -18139,0.41445807996464973,0.016590536322243575,0.17774868942854682,0.1823204280287016,0.4416922861534149,1.1382170905793043,0.01457282039896661,1.066967691830203,0.16630377296957227,1.1362226533449507,0.010000191358858813,1.0937902476730803,0.09730550692167428 -18141,0.39351420293910605,0.014875810988642534,0.16590876997938003,0.16984095862542067,0.4417186204386109,1.0214368445479751,0.01457282039896661,0.9960573815235316,0.16630377296957227,1.0121749574801795,0.010000191358858813,0.9935409873188206,0.09730550692167428 -18143,0.4083445890711919,0.014643699626341294,0.16865351344484478,0.16656760791803485,0.4417091721016726,1.0047536296713728,0.01457282039896661,1.0139951081369136,0.16630377296957227,1.0149390642484346,0.010000191358858813,1.0253911597055254,0.09730550692167428 -18145,0.41241464554469176,0.015365385759781363,0.17260326014314759,0.1715546773400058,0.44170065594382146,1.0536307621474603,0.01457282039896661,1.0382480222482182,0.16630377296957227,1.0645922161128607,0.010000191358858813,1.0564911631511897,0.09730550692167428 -18147,0.4233451038346745,0.016462495632726448,0.1795865788688487,0.17894808605566842,0.441685166369992,1.1288793688232865,0.01457282039896661,1.0802404972065074,0.16630377296957227,1.1462337941300882,0.010000191358858813,1.1150269170564664,0.09730550692167428 -18149,0.41852740712690667,0.016455863448791387,0.17768556620738496,0.17962560388116838,0.4416919209875434,1.1290370051003344,0.01457282039896661,1.067387779834851,0.16630377296957227,1.1445108869418124,0.010000191358858813,1.1027049797921773,0.09730550692167428 -18151,0.41480993866278415,0.015925909060464764,0.17428382338995788,0.1748336919207308,0.4416977945659184,1.0926928622173921,0.01457282039896661,1.0468843960271423,0.16630377296957227,1.1161814899274605,0.010000191358858813,1.0775942950249235,0.09730550692167428 -18153,0.41832187914173796,0.01589588975579142,0.1770550430180919,0.1759643604427203,0.44168794104946957,1.0906266918210892,0.01457282039896661,1.0633568548685965,0.16630377296957227,1.096201103536178,0.010000191358858813,1.0791311879134045,0.09730550692167428 -18155,0.41286549305328235,0.015742655067482354,0.172712868202809,0.17286526165447558,0.44170178228715873,1.0801253564122186,0.01457282039896661,1.041756868784018,0.16630377296957227,1.1067485048996655,0.010000191358858813,1.0716860389711216,0.09730550692167428 -18157,0.355967993075797,0.011126185200761932,0.14098553696258243,0.14301160732321777,0.4417673659479955,0.7630308918641344,0.01457282039896661,0.8496505007846658,0.16630377296957227,0.7478739899770976,0.010000191358858813,0.7935184959996411,0.09730550692167428 -18159,0.42927299265078417,0.017636278607538462,0.18604068996012393,0.18940699263702876,0.4416687469595316,1.209786928281068,0.01457282039896661,1.1169328909538363,0.16630377296957227,1.2147671569360599,0.010000191358858813,1.157763105569631,0.09730550692167428 -18161,0.4124789352048641,0.01599415198102752,0.17517615409477982,0.17745958651650523,0.44169789626533174,1.0970535575638252,0.01457282039896661,1.0507529937485995,0.16630377296957227,1.0959235602417272,0.010000191358858813,1.070284789875295,0.09730550692167428 -18163,0.40627197378205393,0.01591873492263557,0.17335627563260614,0.17667886151546386,0.44170130538483343,1.0920115774596195,0.01457282039896661,1.0415129201626825,0.16630377296957227,1.0908329493962128,0.010000191358858813,1.0502329796037726,0.09730550692167428 -18165,0.4287874435847593,0.017904914202609687,0.18640563633204155,0.19008347377074095,0.44167281460500896,1.2277908576323502,0.01457282039896661,1.1182647641717298,0.16630377296957227,1.2399072850293895,0.010000191358858813,1.1619346067909293,0.09730550692167428 -18167,0.39865258326939057,0.015100629836875379,0.16824583606884552,0.17110271401069763,0.44170912769984266,1.0359841610155138,0.01457282039896661,1.0114584518472451,0.16630377296957227,1.0311587486430076,0.010000191358858813,1.0093564042148926,0.09730550692167428 -18169,0.42415737402741815,0.018743298724113247,0.18672698852315078,0.19499171977872154,0.4416766271164825,1.285703853290673,0.01457282039896661,1.1210523268322432,0.16630377296957227,1.3084409873762277,0.010000191358858813,1.1723808193476843,0.09730550692167428 -18171,0.4245563351307894,0.017133199236632937,0.182595332095961,0.18476153667336526,0.4416825722841363,1.1744338366483273,0.01457282039896661,1.0966433640091715,0.16630377296957227,1.1836154869569417,0.010000191358858813,1.1342226671463047,0.09730550692167428 -18173,0.41033288291359915,0.014906867390293527,0.17068588586771521,0.1697826209896858,0.4417054118268872,1.0227990736846642,0.01457282039896661,1.025612733491657,0.16630377296957227,1.0229609206305637,0.010000191358858813,1.0413560312006473,0.09730550692167428 -18175,0.4053717978267328,0.014897296809285285,0.16839948191871576,0.16831798501181536,0.4417112295834702,1.0223654261622956,0.01457282039896661,1.0126352493413973,0.16630377296957227,1.0331931801775807,0.010000191358858813,1.0263641328768518,0.09730550692167428 -18177,0.41849595490532726,0.017303937820157378,0.18146306723498978,0.18626149274151477,0.4416853405238761,1.1867190581206382,0.01457282039896661,1.0893221164698785,0.16630377296957227,1.1917341503445718,0.010000191358858813,1.1188716431527412,0.09730550692167428 -18179,0.41294210861566566,0.016667513671973472,0.17784607864388424,0.18203625098007137,0.4416923560463869,1.1426764257212065,0.01457282039896661,1.0673448824640275,0.16630377296957227,1.1429909990878246,0.010000191358858813,1.092116406938651,0.09730550692167428 -18181,0.42899357998452037,0.0181304153345444,0.18590406226720713,0.19084462746749814,0.4416776575941465,1.2429954515391346,0.01457282039896661,1.1155701151458313,0.16630377296957227,1.2694102547065937,0.010000191358858813,1.1718784497156838,0.09730550692167428 -18183,0.41209917325301493,0.01565105277550406,0.17384146757475083,0.17415883933711368,0.44170040231029084,1.0737058320183959,0.01457282039896661,1.0436579946571527,0.16630377296957227,1.079155105869438,0.010000191358858813,1.0620487383665016,0.09730550692167428 -19001,0.4460420903138419,0.022208908254524887,0.2047292173774019,0.21798391442321619,0.4416341835124506,1.5235206273595274,0.01457282039896661,1.2276928404485097,0.16630377296957227,1.5646926006748743,0.010000191358858813,1.3182005443521962,0.09730550692167428 -19003,0.45510191317465026,0.021657060111767233,0.2068154009384778,0.21385172675459,0.44161981713592113,1.485909730013418,0.01457282039896661,1.2398239948037368,0.16630377296957227,1.5258003854981048,0.010000191358858813,1.3253147625445978,0.09730550692167428 -19005,0.4373874745103237,0.019365506505418878,0.19267389408093488,0.19873307367935425,0.44165877987311303,1.329195669780494,0.01457282039896661,1.1561199094124797,0.16630377296957227,1.363622252980997,0.010000191358858813,1.2279172021737077,0.09730550692167428 -19007,0.4380977544043276,0.020457365118224026,0.1970303298710006,0.20746080920779514,0.44165127921243635,1.4036171191806803,0.01457282039896661,1.1825683519861174,0.16630377296957227,1.4279172808852594,0.010000191358858813,1.2526150006208414,0.09730550692167428 -19009,0.4546795155902328,0.023821253609380515,0.2140239768574655,0.2317313053685887,0.44160807969245397,1.6339930801493892,0.01457282039896661,1.283080128519491,0.16630377296957227,1.6565245893622946,0.010000191358858813,1.375809934671073,0.09730550692167428 -19011,0.41299623990700074,0.016603051052040445,0.17671418957634352,0.17995035352091535,0.4416952976121644,1.1385484575956524,0.01457282039896661,1.0620461748923047,0.16630377296957227,1.1515622051899341,0.010000191358858813,1.0901057826454525,0.09730550692167428 -19013,0.397960459040246,0.015455689129926153,0.16872931863480065,0.17336507086137815,0.44171111579509015,1.0602468701675871,0.01457282039896661,1.0143811895974704,0.16630377296957227,1.059065640512648,0.010000191358858813,1.0169709115622405,0.09730550692167428 -19015,0.41752887138838246,0.01743770499529362,0.18207060022425556,0.18749679489662877,0.4416845968350728,1.1959674922239878,0.01457282039896661,1.0921581865749248,0.16630377296957227,1.195906125874069,0.010000191358858813,1.1203191855558408,0.09730550692167428 -19017,0.41536053717490795,0.017859776370861943,0.18139714081079256,0.1899317278494264,0.4416856272019151,1.2250496510033044,0.01457282039896661,1.09009119659405,0.16630377296957227,1.2355383559376913,0.010000191358858813,1.1255819124526458,0.09730550692167428 -19019,0.4069523357973034,0.016678672853214734,0.17498038063647417,0.18177824325810038,0.4417030072833531,1.144093505457234,0.01457282039896661,1.0498030304121617,0.16630377296957227,1.1495091202181333,0.010000191358858813,1.0772771954130496,0.09730550692167428 -19021,0.3994257859393063,0.016868672447571703,0.17447685759662349,0.18380471834470327,0.4417011292327231,1.157335969416645,0.01457282039896661,1.047387438908666,0.16630377296957227,1.1489727812527477,0.010000191358858813,1.0603486699063285,0.09730550692167428 -19023,0.4423547101457297,0.02076097642436142,0.1995485208670922,0.2095043703324147,0.44164701039874665,1.4242893767017295,0.01457282039896661,1.197098505331331,0.16630377296957227,1.447933709355126,0.010000191358858813,1.2699195969163821,0.09730550692167428 -19025,0.4635917372710605,0.023703650377251882,0.2161998477244677,0.22972345246564946,0.4415990066891008,1.6260413452924154,0.01457282039896661,1.297485309993011,0.16630377296957227,1.6590674512955719,0.010000191358858813,1.3949786140223646,0.09730550692167428 -19027,0.4272036824650132,0.019755847040651135,0.19203790719077596,0.20231775869865906,0.441667064581886,1.3551273250726605,0.01457282039896661,1.1506286078792172,0.16630377296957227,1.3723096610381318,0.010000191358858813,1.2059734093135575,0.09730550692167428 -19029,0.4447679334136072,0.021695921454199227,0.20292549109248992,0.21467916845084456,0.4416356925974642,1.4885284817220081,0.01457282039896661,1.2174571656897006,0.16630377296957227,1.5253005150060277,0.010000191358858813,1.3004766999395012,0.09730550692167428 -19031,0.4260413223458316,0.018095020108454932,0.18658997823986961,0.19071636139971418,0.4416755074298364,1.2413129291826432,0.01457282039896661,1.1183686079597832,0.16630377296957227,1.2544510749037427,0.010000191358858813,1.160956700635603,0.09730550692167428 -19033,0.4330001318792428,0.019393697274359856,0.1929844331920717,0.2000536909123452,0.44165674068388916,1.3302635094610589,0.01457282039896661,1.1579540750133974,0.16630377296957227,1.345087920548342,0.010000191358858813,1.2096817192102374,0.09730550692167428 -19035,0.45569185278714214,0.022377245992185442,0.20922761453731903,0.22144256246262095,0.4416201710727366,1.5348197635002552,0.01457282039896661,1.255766328479069,0.16630377296957227,1.5583438898443442,0.010000191358858813,1.3445000712353894,0.09730550692167428 -19037,0.4363157986237136,0.019981175694980903,0.1951968942874872,0.20384056174792103,0.4416547212593829,1.3705405798523738,0.01457282039896661,1.1705545004014668,0.16630377296957227,1.3948248600951705,0.010000191358858813,1.2389901502195428,0.09730550692167428 -19039,0.42099406366936015,0.018717308657206444,0.18635799748590315,0.19500112403015205,0.4416793495686751,1.2837702474323582,0.01457282039896661,1.116968943553506,0.16630377296957227,1.3001839747380155,0.010000191358858813,1.162602609682523,0.09730550692167428 -19041,0.43100419854091365,0.019457571882791007,0.19265405042268482,0.20070637713578057,0.4416587237362539,1.3346033206375076,0.01457282039896661,1.155758580117972,0.16630377296957227,1.3467410663144745,0.010000191358858813,1.2066717794991622,0.09730550692167428 -19043,0.44062599351133147,0.020055312124600006,0.19653341436523314,0.2042408471723298,0.44165110404108665,1.3757519080657936,0.01457282039896661,1.1790130876375589,0.16630377296957227,1.4022503084017046,0.010000191358858813,1.2510989680905569,0.09730550692167428 -19045,0.4222589290514245,0.017758688482094543,0.18404879428125687,0.1893023779255307,0.44168084703164945,1.2179946762661613,0.01457282039896661,1.1042121495232355,0.16630377296957227,1.2259879280817736,0.010000191358858813,1.142956034272044,0.09730550692167428 -19047,0.41044571041239475,0.017670358462550904,0.17975108316104366,0.1889995408683687,0.4416955025271069,1.212205638363217,0.01457282039896661,1.0776256051891369,0.16630377296957227,1.2138186332118015,0.010000191358858813,1.110407737996388,0.09730550692167428 -19049,0.3779204852941489,0.011934694598800397,0.15068641858647766,0.14864227290640308,0.44175375695526514,0.818124646391176,0.01457282039896661,0.9067809725404277,0.16630377296957227,0.8041305690458687,0.010000191358858813,0.8724918043721098,0.09730550692167428 -19051,0.4071033071639108,0.01739584858548559,0.17720277822652863,0.18804626849199085,0.44170169502136325,1.1932928457495935,0.01457282039896661,1.0637277424002574,0.16630377296957227,1.1925444703185857,0.010000191358858813,1.10043116788454,0.09730550692167428 -19053,0.41445191174423285,0.01888018803410929,0.18307614088977708,0.19610764170477438,0.44168321365857754,1.295654297612571,0.01457282039896661,1.101015687637985,0.16630377296957227,1.3210967039264994,0.010000191358858813,1.152491086017928,0.09730550692167428 -19055,0.4216154368443529,0.01788198270621394,0.18336793255345024,0.18865695113729453,0.44167892641348216,1.2264231625236155,0.01457282039896661,1.1016757986850942,0.16630377296957227,1.2489495981700673,0.010000191358858813,1.1477830083687501,0.09730550692167428 -19057,0.42472503419121777,0.018363347737440548,0.18723633574616283,0.19370053639914228,0.4416726033447904,1.2597544703068086,0.01457282039896661,1.1236294819501782,0.16630377296957227,1.2660515686360478,0.010000191358858813,1.1648388723299146,0.09730550692167428 -19059,0.4689328036243755,0.02272513345597205,0.21393195169863383,0.2217348339389105,0.4416013444098642,1.5595100503123926,0.01457282039896661,1.2837487143762982,0.16630377296957227,1.6044432627518446,0.010000191358858813,1.387361415242485,0.09730550692167428 -19061,0.4088488054056468,0.016650894406373466,0.17548011865964608,0.18093810563648188,0.441699607179121,1.1420713362372599,0.01457282039896661,1.053502086373992,0.16630377296957227,1.1516444510589443,0.010000191358858813,1.078028820194111,0.09730550692167428 -19063,0.42782317061529374,0.020058246193717454,0.1921789447566004,0.20518800527569825,0.4416690035736308,1.3757700169460905,0.01457282039896661,1.1535577201296927,0.16630377296957227,1.392267476365571,0.010000191358858813,1.2142402309753133,0.09730550692167428 -19065,0.4330884094637302,0.020013128108710875,0.1936038087821506,0.20328027242502783,0.4416592635522839,1.3725823846122682,0.01457282039896661,1.1615517609515065,0.16630377296957227,1.4036607335376559,0.010000191358858813,1.2287669848234404,0.09730550692167428 -19067,0.432934789775402,0.020191862387663812,0.19496240197486886,0.20685039746776074,0.4416565566338897,1.3853689061444294,0.01457282039896661,1.170077826774805,0.16630377296957227,1.3986154503454138,0.010000191358858813,1.233024024650644,0.09730550692167428 -19069,0.4408990251126127,0.02112128712223011,0.19947033529768643,0.21222972409097896,0.44165126632234747,1.44891294386671,0.01457282039896661,1.1967621689264571,0.16630377296957227,1.4735087346411353,0.010000191358858813,1.2739457886202004,0.09730550692167428 -19071,0.4422019718942162,0.020524805692011622,0.19850566930051916,0.20739934933399512,0.44164453130869064,1.4081391650649429,0.01457282039896661,1.190473124115457,0.16630377296957227,1.4365503299616513,0.010000191358858813,1.2668317561326612,0.09730550692167428 -19073,0.44540389714691264,0.021609171207411418,0.20358046207157188,0.2160697854761816,0.44163434989697115,1.4822218011209851,0.01457282039896661,1.2215329762868299,0.16630377296957227,1.5037946297602445,0.010000191358858813,1.3006690053687424,0.09730550692167428 -19075,0.4361757079055332,0.02010197011007045,0.19484684553100312,0.20378404269820966,0.4416563207154236,1.3789028669083874,0.01457282039896661,1.1682013358481753,0.16630377296957227,1.4108124881592832,0.010000191358858813,1.2382994357217099,0.09730550692167428 -19077,0.4422313028672269,0.02012338242294971,0.19736322828567696,0.20554966024277643,0.44165023978455054,1.3805084129112482,0.01457282039896661,1.1834982608199547,0.16630377296957227,1.4018096130201112,0.010000191358858813,1.2546743385643366,0.09730550692167428 -19079,0.42530417717822744,0.018875401610324503,0.1884307232925867,0.19575243539213125,0.44167413434539604,1.2948081588263012,0.01457282039896661,1.1292509951963074,0.16630377296957227,1.3133843321458745,0.010000191358858813,1.1756445495293868,0.09730550692167428 -19081,0.437378557008564,0.020111632852750645,0.19677393935538617,0.20641792688051214,0.44165047254222867,1.3797195034010674,0.01457282039896661,1.1804779369805967,0.16630377296957227,1.3895668184696182,0.010000191358858813,1.240918644589395,0.09730550692167428 -19083,0.4338468981491945,0.02094119136055536,0.19814606510787452,0.21210536095060023,0.44164915627043455,1.4362586818437215,0.01457282039896661,1.1885349173630289,0.16630377296957227,1.447264500381895,0.010000191358858813,1.2546280604116362,0.09730550692167428 -19085,0.4296689058241148,0.018980963015859657,0.189986339113845,0.19722475166868375,0.441667636309269,1.3022143441026515,0.01457282039896661,1.1390501507582007,0.16630377296957227,1.3193232403210644,0.010000191358858813,1.191537755684024,0.09730550692167428 -19087,0.41253870185957453,0.016891377361118468,0.1786635561945693,0.18319989242465715,0.441693070792222,1.1589753253114208,0.01457282039896661,1.070534779488991,0.16630377296957227,1.15920071803786,0.010000191358858813,1.092397725580988,0.09730550692167428 -19089,0.420790104834165,0.01948096121223395,0.19087157048970005,0.2034750111388718,0.44166780791323845,1.335994727638857,0.01457282039896661,1.1437212019642697,0.16630377296957227,1.3211188700314005,0.010000191358858813,1.1774071296474293,0.09730550692167428 -19091,0.4361625271631056,0.02068839343684315,0.19826736811707274,0.21043540891478352,0.44164717597765235,1.4191983703271962,0.01457282039896661,1.1897928208753061,0.16630377296957227,1.4292153137251415,0.010000191358858813,1.2515718107953675,0.09730550692167428 -19093,0.4401096628566379,0.021466140392319033,0.20088896638429762,0.21399663713617673,0.44164268400640383,1.4728014340176983,0.01457282039896661,1.2046835910613867,0.16630377296957227,1.5016343064195619,0.010000191358858813,1.2849286110680742,0.09730550692167428 -19095,0.42380593667030125,0.0181319009385195,0.18690234946821974,0.19260366538612123,0.44167318620463775,1.2440400444033177,0.01457282039896661,1.1200434766157015,0.16630377296957227,1.2428709388855181,0.010000191358858813,1.1558608876127068,0.09730550692167428 -19097,0.4344246438549498,0.019199749005424482,0.19212576360626238,0.1980939068538053,0.44165734320895367,1.317472709904369,0.01457282039896661,1.1516395981402652,0.16630377296957227,1.3429768833237072,0.010000191358858813,1.213588324461798,0.09730550692167428 -19099,0.4261166381182009,0.017682122749049727,0.18555292409825994,0.188755691778481,0.44167273380253563,1.2129215307114924,0.01457282039896661,1.1133454661652737,0.16630377296957227,1.2197987271854371,0.010000191358858813,1.148331128165705,0.09730550692167428 -19101,0.44431622300977563,0.01842421013398885,0.19561972971861671,0.19612823957385692,0.4416381227351083,1.2642248003885905,0.01457282039896661,1.1749335661305658,0.16630377296957227,1.2544037105334556,0.010000191358858813,1.21564854969658,0.09730550692167428 -19103,0.3610130215595523,0.010558070373555196,0.1416177526060837,0.1396005697905071,0.44176292315491894,0.724366764026887,0.01457282039896661,0.8530881226850864,0.16630377296957227,0.7037469642674625,0.010000191358858813,0.7890285155783668,0.09730550692167428 -19105,0.4296935655832341,0.018076984125423145,0.1882937260755721,0.19149108485987854,0.44166405550242943,1.2399025172486497,0.01457282039896661,1.1298379591166392,0.16630377296957227,1.2467214693019075,0.010000191358858813,1.1687468209583107,0.09730550692167428 -19107,0.4308943941538431,0.019912324890189584,0.19390141026697094,0.20422249100952627,0.4416589710003478,1.3652462146708793,0.01457282039896661,1.1626964274553706,0.16630377296957227,1.378726545856113,0.010000191358858813,1.2194578633560251,0.09730550692167428 -19109,0.45020866314686125,0.02236777317907051,0.2064527523448456,0.21979799698954333,0.4416282955967626,1.5345543104796813,0.01457282039896661,1.238449849499657,0.16630377296957227,1.5723166273381142,0.010000191358858813,1.3334413766584183,0.09730550692167428 -19111,0.43005955241866906,0.018456484050183943,0.18915398159444666,0.19411044991446294,0.44166308256003795,1.2663125050235637,0.01457282039896661,1.135422493031113,0.16630377296957227,1.2767340404959269,0.010000191358858813,1.1806640830188528,0.09730550692167428 -19113,0.39704062406533214,0.014568488301771619,0.1656928346384141,0.16701473256632632,0.4417185835911158,0.9998822606054166,0.01457282039896661,0.9955287842528365,0.16630377296957227,0.9969305775917006,0.010000191358858813,0.9926974331288523,0.09730550692167428 -19115,0.40473594732928075,0.016010485987665066,0.1728209837477875,0.17733362821830057,0.44170335852730325,1.0981855510290561,0.01457282039896661,1.0370491308594372,0.16630377296957227,1.096005931869167,0.010000191358858813,1.0545143966930934,0.09730550692167428 -19117,0.43364223244421995,0.019872940734201816,0.19414227311064597,0.20399791792890487,0.44165746271934647,1.3635743724185891,0.01457282039896661,1.1644513969477739,0.16630377296957227,1.3821282556122658,0.010000191358858813,1.2294966200919395,0.09730550692167428 -19119,0.41101609166268294,0.018195038291933557,0.18213985266127963,0.19338507278634884,0.4416934557428439,1.2483001551929953,0.01457282039896661,1.0910386501253213,0.16630377296957227,1.242635227283193,0.010000191358858813,1.1242027463231066,0.09730550692167428 -19121,0.4100982232424698,0.015951203676148613,0.17364838710873506,0.17633769328287427,0.44170303750348117,1.094129131941163,0.01457282039896661,1.0431127188825058,0.16630377296957227,1.1007506215271188,0.010000191358858813,1.0669122787408707,0.09730550692167428 -19123,0.40974291855004596,0.01702015007113223,0.17807057526821843,0.18529783328364247,0.4416935388368739,1.1675571193145586,0.01457282039896661,1.0690199231127806,0.16630377296957227,1.160293943548115,0.010000191358858813,1.088425676854208,0.09730550692167428 -19125,0.4101638785631322,0.017252026386365867,0.17731522024756005,0.18437386337192413,0.44169646474815166,1.1827161502244554,0.01457282039896661,1.0641864577581828,0.16630377296957227,1.2019567747735156,0.010000191358858813,1.0997487644945032,0.09730550692167428 -19127,0.41517317174027496,0.017548101320398826,0.18036138271012242,0.1880508480379214,0.44169175218606765,1.2036928168857588,0.01457282039896661,1.0826727235417968,0.16630377296957227,1.2114310040811738,0.010000191358858813,1.1205607779923208,0.09730550692167428 -19129,0.41948735357165995,0.01613173242127389,0.17827202137123327,0.17911843426620577,0.4416888166955961,1.1065854271894704,0.01457282039896661,1.0715811838123201,0.16630377296957227,1.1038113033343038,0.010000191358858813,1.0958147618545668,0.09730550692167428 -19131,0.43279744404730236,0.02147694125312611,0.1987798928930543,0.2141262892832292,0.44165221912667063,1.4735916941419402,0.01457282039896661,1.1907967927833454,0.16630377296957227,1.4972391378069827,0.010000191358858813,1.2650065090888383,0.09730550692167428 -19133,0.45960296116723764,0.023811248004949635,0.21333523161784168,0.22923568082216728,0.44161365280752807,1.6335305922712644,0.01457282039896661,1.2794731404215889,0.16630377296957227,1.6814288765739773,0.010000191358858813,1.3903693641760873,0.09730550692167428 -19135,0.4348378657678076,0.019339583354996026,0.19303730232808755,0.19868261130809367,0.44165646176000883,1.326419519305654,0.01457282039896661,1.1575466979486104,0.16630377296957227,1.3497887397135728,0.010000191358858813,1.2142601711978158,0.09730550692167428 -19137,0.4387709258045238,0.02101858270683888,0.20017809692706418,0.21091429680381818,0.4416452275185779,1.4419475327465765,0.01457282039896661,1.1991135386431209,0.16630377296957227,1.4614951140408015,0.010000191358858813,1.2682981337811503,0.09730550692167428 -19139,0.40225296667176347,0.015029639352990825,0.16838497127275473,0.1700046943080158,0.4417133934671889,1.0311264319069509,0.01457282039896661,1.012071426707577,0.16630377296957227,1.0330681769423393,0.010000191358858813,1.0218878091086525,0.09730550692167428 -19141,0.4382766732054357,0.02161005842448739,0.20173984616140417,0.2158296594662314,0.4416424478388442,1.4819877153804626,0.01457282039896661,1.2088781155386346,0.16630377296957227,1.498812406778642,0.010000191358858813,1.2796450940765691,0.09730550692167428 -19143,0.4314597235622959,0.020462718606447827,0.1948842841285623,0.20577571177915324,0.44166056280607585,1.4038373702341094,0.01457282039896661,1.1672172151674172,0.16630377296957227,1.4347869594063458,0.010000191358858813,1.23320269216586,0.09730550692167428 -19145,0.44262465697132625,0.02041243013049493,0.1989952633501767,0.2073468228445508,0.44163963039750165,1.400669877845002,0.01457282039896661,1.1940688697392612,0.16630377296957227,1.4218255953002925,0.010000191358858813,1.258725748776325,0.09730550692167428 -19147,0.4351372164315028,0.021516997815580734,0.19972347429354825,0.2150732035608723,0.4416456418866085,1.4762303680420856,0.01457282039896661,1.1982469509493723,0.16630377296957227,1.4959828777013295,0.010000191358858813,1.2658387791814405,0.09730550692167428 -19149,0.4188163232851898,0.017755361120267883,0.18243725628093635,0.1887000268011666,0.44168387429753125,1.2178459589804134,0.01457282039896661,1.094872509407286,0.16630377296957227,1.2322014269960961,0.010000191358858813,1.138886516931633,0.09730550692167428 -19151,0.4527140370268527,0.022960584936205508,0.21169842886122364,0.22797261526111667,0.44161153166296624,1.5752803692843116,0.01457282039896661,1.2695010991667337,0.16630377296957227,1.57607383576651,0.010000191358858813,1.3483721323853528,0.09730550692167428 -19153,0.385927032497144,0.012926278061926182,0.1570000003885189,0.15596185418943875,0.4417362123730749,0.8870085334427178,0.01457282039896661,0.9448147887331665,0.16630377296957227,0.8742773483449693,0.010000191358858813,0.9191003053469667,0.09730550692167428 -19155,0.40841867732648673,0.0157366877161386,0.17263479563704967,0.17458314404022485,0.44170341114427136,1.0793276051735459,0.01457282039896661,1.0370626656816668,0.16630377296957227,1.0858915038150703,0.010000191358858813,1.05401732308197,0.09730550692167428 -19157,0.42498999323519393,0.019391881391035183,0.1890764539150266,0.2000965029188599,0.4416695188532712,1.3305086519490912,0.01457282039896661,1.1360515650323504,0.16630377296957227,1.3526427336890559,0.010000191358858813,1.1921531169070336,0.09730550692167428 -19159,0.44911408546973014,0.02366989631882055,0.21065136159879225,0.2309806902638462,0.4416261358990934,1.6233898724283695,0.01457282039896661,1.263074754700126,0.16630377296957227,1.6433707007853453,0.010000191358858813,1.3547402079704307,0.09730550692167428 -19161,0.45122854328782247,0.022796844068631753,0.20934749937582983,0.22411568312593297,0.4416238031675174,1.5640387368017579,0.01457282039896661,1.2553486812094108,0.16630377296957227,1.5870554997328283,0.010000191358858813,1.342881928623032,0.09730550692167428 -19163,0.40206160894913856,0.014818330099119498,0.16844581070634884,0.1693166961107067,0.44171150154775585,1.0167455746962348,0.01457282039896661,1.0116325400510489,0.16630377296957227,1.010539385914523,0.010000191358858813,1.0132328507132002,0.09730550692167428 -19165,0.44234310348673295,0.02123254490761227,0.2015463699273785,0.21227790455003356,0.44163950783761896,1.4564094565244303,0.01457282039896661,1.2078978193952987,0.16630377296957227,1.4829099685309286,0.010000191358858813,1.2847258888923339,0.09730550692167428 -19167,0.3803292107177131,0.015616040812445178,0.16318586467611096,0.1752186736389769,0.44173130149596185,1.0732237825949815,0.01457282039896661,0.9797876168114669,0.16630377296957227,1.0609231271832638,0.010000191358858813,0.9799052206494274,0.09730550692167428 -19169,0.35600893693924773,0.011624741577992518,0.14276168616365228,0.14678454456225212,0.44176029317215876,0.7973969209881896,0.01457282039896661,0.8632327889024343,0.16630377296957227,0.782773081530695,0.010000191358858813,0.8072798093751521,0.09730550692167428 -19171,0.4238586320055693,0.019196913832032966,0.1889212634948324,0.19947485094721887,0.4416745737553499,1.316732416877807,0.01457282039896661,1.1331655704849686,0.16630377296957227,1.3274391557251644,0.010000191358858813,1.184910966506135,0.09730550692167428 -19173,0.44046658900953894,0.021640571270650572,0.201927341301474,0.21548544125256663,0.4416406454076114,1.4848439104842295,0.01457282039896661,1.2105733810399155,0.16630377296957227,1.5105446311948465,0.010000191358858813,1.2898031149520826,0.09730550692167428 -19175,0.4233277632199476,0.018783985311620878,0.18715810570833094,0.19625374268915996,0.44167551492854534,1.2887182051818256,0.01457282039896661,1.123168687136173,0.16630377296957227,1.3030121126915386,0.010000191358858813,1.1727260550699399,0.09730550692167428 -19177,0.4432552369647622,0.02065449959342367,0.1981731854885963,0.20629850389281779,0.4416487255735195,1.4173960008106201,0.01457282039896661,1.1882273488941517,0.16630377296957227,1.4639063321253802,0.010000191358858813,1.273046103981153,0.09730550692167428 -19179,0.41791995610850463,0.017629629089460468,0.18218363407668453,0.18737398906127145,0.44168451653993696,1.2091650739890647,0.01457282039896661,1.0929468100184647,0.16630377296957227,1.221467704835492,0.010000191358858813,1.125343771362798,0.09730550692167428 -19181,0.39991547855520015,0.014801771044494951,0.16663761841436817,0.1683755757745724,0.44171577533956863,1.015576590384789,0.01457282039896661,1.0029905093501958,0.16630377296957227,1.0185116385188973,0.010000191358858813,1.0116401471601337,0.09730550692167428 -19183,0.42432325289706196,0.018767613188994673,0.1873132619856218,0.19519625489050757,0.4416761580293055,1.2872540287828682,0.01457282039896661,1.122859507953717,0.16630377296957227,1.3064992255509407,0.010000191358858813,1.1744860642641677,0.09730550692167428 -19185,0.45244913190742786,0.022971119650628792,0.20784594334435513,0.22282531150853435,0.4416302381020133,1.5753506189154767,0.01457282039896661,1.2467824556805138,0.16630377296957227,1.6259447158870748,0.010000191358858813,1.3526087602878731,0.09730550692167428 -19187,0.41621512880851447,0.017831093989569828,0.18145262231876558,0.1884802702381697,0.44168579399365593,1.222752159218927,0.01457282039896661,1.0896522793479624,0.16630377296957227,1.2437161854346885,0.010000191358858813,1.1296694302138572,0.09730550692167428 -19189,0.4372543211927047,0.020462351053745206,0.19696381671362867,0.2063985963473838,0.4416484354776734,1.4037185753769204,0.01457282039896661,1.1812864665953682,0.16630377296957227,1.4325943927202285,0.010000191358858813,1.249927276638334,0.09730550692167428 -19191,0.40935050339330636,0.017339757077312203,0.17912744177730427,0.18797116466262764,0.4416880847139736,1.1892866332419778,0.01457282039896661,1.0771672538259605,0.16630377296957227,1.181211218606371,0.010000191358858813,1.0983068623404106,0.09730550692167428 -19193,0.38983475272922263,0.014442847666644967,0.162982184381471,0.1668162760741127,0.4417272288905403,0.9917074091408222,0.01457282039896661,0.9789871920075626,0.16630377296957227,0.9816410292985451,0.010000191358858813,0.9728868038526154,0.09730550692167428 -19195,0.43319735476738097,0.01921173414345311,0.19402939076749826,0.20078165636715903,0.44165072675198047,1.3180066991620858,0.01457282039896661,1.1638403871914633,0.16630377296957227,1.3149397363019777,0.010000191358858813,1.208136380893611,0.09730550692167428 -19197,0.43933060268218727,0.021292151770781212,0.20151485219075999,0.21497252766208777,0.44164271975511993,1.4602193025946346,0.01457282039896661,1.2083841454974193,0.16630377296957227,1.4649552652009548,0.010000191358858813,1.271854623988394,0.09730550692167428 -20001,0.41965955349037426,0.018429949546998444,0.18428727053536942,0.1924490131980751,0.4416801555219303,1.264433054885552,0.01457282039896661,1.1057882164807178,0.16630377296957227,1.288860806576901,0.010000191358858813,1.156139670015567,0.09730550692167428 -20003,0.4233034266298933,0.01977495976182557,0.19200341572026677,0.2059393153177889,0.4416680878873848,1.3567501485103066,0.01457282039896661,1.1509432384439648,0.16630377296957227,1.3437093786987089,0.010000191358858813,1.1940440920976756,0.09730550692167428 -20005,0.3985806201899543,0.016502711564465852,0.17143467999083994,0.18056479804995415,0.44170939486991234,1.1326512538435196,0.01457282039896661,1.0303160897665593,0.16630377296957227,1.136828928613386,0.010000191358858813,1.0509490683216236,0.09730550692167428 -20007,0.44895573708820513,0.021191391869649835,0.20386092128751682,0.214037796368599,0.4416282699916346,1.4546798493338846,0.01457282039896661,1.224172821328779,0.16630377296957227,1.4689263551393992,0.010000191358858813,1.298090091580385,0.09730550692167428 -20009,0.4182254960092562,0.018307637177905678,0.18321056792723467,0.19145529694290048,0.44168439115415054,1.2555523139050075,0.01457282039896661,1.0996294997454303,0.16630377296957227,1.2812713821095936,0.010000191358858813,1.148930091324901,0.09730550692167428 -20011,0.4142772984335177,0.01878285507058864,0.18357210703382915,0.19617436596542315,0.44168705774461625,1.2886689483524592,0.01457282039896661,1.1016070202409116,0.16630377296957227,1.3013869398798954,0.010000191358858813,1.1480067039782893,0.09730550692167428 -20013,0.42582814685444165,0.019391841988638053,0.18927595159793664,0.20049597912199113,0.4416729500240878,1.3304023355424646,0.01457282039896661,1.1362370483114903,0.16630377296957227,1.3488568597013106,0.010000191358858813,1.1975921407839327,0.09730550692167428 -20015,0.3942882994041392,0.014736981199140818,0.16543669879469008,0.1687108374231724,0.44171936716333804,1.0115666969320132,0.01457282039896661,0.9944166140178321,0.16630377296957227,1.0028368914589443,0.010000191358858813,0.9953461122081892,0.09730550692167428 -20017,0.44406763272030325,0.02126940542924106,0.19977305047763666,0.21423517653914764,0.4416497072142783,1.4584405016983846,0.01457282039896661,1.198713960907544,0.16630377296957227,1.4850472644830288,0.010000191358858813,1.2932471973338688,0.09730550692167428 -20019,0.4635130954789747,0.02428742043105541,0.21606863869502396,0.2333331607427424,0.4416000800584685,1.6662427275367135,0.01457282039896661,1.2981103490820662,0.16630377296957227,1.7128907417141048,0.010000191358858813,1.4129970025134453,0.09730550692167428 -20021,0.418454618200148,0.01732579830092455,0.17990439309614703,0.18520872875228966,0.44169415976499415,1.1880037627937452,0.01457282039896661,1.078885544278557,0.16630377296957227,1.208026736532106,0.010000191358858813,1.121777707933369,0.09730550692167428 -20023,0.4672290513939724,0.026382016502947886,0.22665392638167303,0.2516119844513921,0.4415786514939142,1.8106671043361235,0.01457282039896661,1.3579734740248735,0.16630377296957227,1.8227590758788215,0.010000191358858813,1.4745365240275299,0.09730550692167428 -20025,0.4345158219393341,0.020980451027804794,0.19722307335017492,0.21025243284229062,0.4416572449547366,1.439575057886107,0.01457282039896661,1.1805906123101981,0.16630377296957227,1.4691611114597891,0.010000191358858813,1.2614461369251866,0.09730550692167428 -20027,0.4413423800610306,0.021785294720893324,0.20347064296628087,0.21887067351314238,0.44163806631073416,1.4940676959131014,0.01457282039896661,1.2205807902353305,0.16630377296957227,1.4992742567908461,0.010000191358858813,1.2883356083592856,0.09730550692167428 -20029,0.43355856008734794,0.02179751606389771,0.1988702298650869,0.21720282229055124,0.44165266580228724,1.495698957735403,0.01457282039896661,1.1941121783315451,0.16630377296957227,1.5200745018795916,0.010000191358858813,1.2719836572856797,0.09730550692167428 -20031,0.4264297599292801,0.01795789783849365,0.18750476761802712,0.19316560380581804,0.44166803281726164,1.2317339226694919,0.01457282039896661,1.1252779393263133,0.16630377296957227,1.219769813588031,0.010000191358858813,1.160898341213457,0.09730550692167428 -20033,0.4860702080581426,0.02647953528880593,0.23023124714766455,0.24945813268431244,0.4415719826964042,1.8167721637177845,0.01457282039896661,1.3809847141808682,0.16630377296957227,1.864546990927635,0.010000191358858813,1.529802101703897,0.09730550692167428 -20035,0.4079149824005447,0.016515037103312865,0.17485304534735854,0.18035109587584633,0.4416999726409102,1.1325603786293483,0.01457282039896661,1.050081420254098,0.16630377296957227,1.139537919574656,0.010000191358858813,1.075601927532678,0.09730550692167428 -20037,0.38692851711939,0.015079689542410702,0.1641033941962587,0.1711470592431188,0.4417243901199602,1.0349110481111898,0.01457282039896661,0.9865006020286964,0.16630377296957227,1.0270268625993024,0.010000191358858813,0.9775134175367703,0.09730550692167428 -20039,0.4925472769126805,0.027364498506978474,0.23768925908431748,0.2569837849600797,0.4415469791216599,1.8773037910026797,0.01457282039896661,1.4270296012527799,0.16630377296957227,1.9056243738746037,0.010000191358858813,1.559577704921869,0.09730550692167428 -20041,0.42392565574632324,0.01887537275808776,0.1882271785134888,0.1975700582386617,0.4416713331013933,1.2945079267829451,0.01457282039896661,1.129217070530225,0.16630377296957227,1.3030852924882175,0.010000191358858813,1.1751628061813892,0.09730550692167428 -20043,0.4140970329826369,0.0173459434433883,0.17933601918847214,0.18689028833583549,0.44168591960892845,1.190324061837523,0.01457282039896661,1.0785051696503527,0.16630377296957227,1.1979481694788419,0.010000191358858813,1.111765361211829,0.09730550692167428 -20045,0.35634340789694596,0.010682521469816745,0.14022314109542308,0.14066546671548483,0.4417656461214327,0.7324133085013638,0.01457282039896661,0.8459836709050088,0.16630377296957227,0.7103785534470788,0.010000191358858813,0.7808666461289383,0.09730550692167428 -20047,0.43924727426790666,0.02010990443143542,0.1975862546191946,0.2062980970530522,0.44164794505269245,1.3795019518294103,0.01457282039896661,1.1856747181383926,0.16630377296957227,1.3882180782513018,0.010000191358858813,1.237968125339553,0.09730550692167428 -20049,0.4699330984574433,0.024040041082639733,0.2194521616129654,0.23401872484086772,0.44159266513481926,1.6501379269008742,0.01457282039896661,1.317745993740819,0.16630377296957227,1.6721532071459513,0.010000191358858813,1.423715405736281,0.09730550692167428 -20051,0.38648243613502886,0.014907633397320208,0.16366862302958393,0.1695418444529504,0.4417216305108253,1.0235044779230176,0.01457282039896661,0.9858446660030358,0.16630377296957227,1.01851887852544,0.010000191358858813,0.9729451136398493,0.09730550692167428 -20053,0.4426516078065291,0.02021319854751409,0.19914641288702367,0.20592848269777136,0.4416358790274786,1.3867789709381806,0.01457282039896661,1.1958291444385136,0.16630377296957227,1.4046777145259517,0.010000191358858813,1.2509344106401898,0.09730550692167428 -20055,0.3527316317743433,0.010536835139800832,0.13696474229026917,0.13911425479193512,0.44178172113067793,0.7225071493052047,0.01457282039896661,0.827001680317413,0.16630377296957227,0.7062685529990105,0.010000191358858813,0.7835179006809165,0.09730550692167428 -20057,0.36016963170495747,0.011954700532764703,0.14460524387697932,0.14967029271459792,0.44177172489492367,0.8202128849224761,0.01457282039896661,0.8708293735759486,0.16630377296957227,0.7989313240536102,0.010000191358858813,0.8338621413484976,0.09730550692167428 -20059,0.39816080618752975,0.014952757073370786,0.16701572937255363,0.16938605247755556,0.4417181436078944,1.0262698743692007,0.01457282039896661,1.003848688348763,0.16630377296957227,1.0259921329426291,0.010000191358858813,1.010041474199789,0.09730550692167428 -20061,0.3453327827799975,0.010486756984054674,0.13389894290912274,0.1375095584813763,0.4417962288906821,0.7197609130848694,0.01457282039896661,0.8065584720435925,0.16630377296957227,0.7131670391066797,0.010000191358858813,0.7566729795462546,0.09730550692167428 -20063,0.4679632751148308,0.024267634263365007,0.2166336762250842,0.23226447727830335,0.4416035915080152,1.6649828941782459,0.01457282039896661,1.3008326282140779,0.16630377296957227,1.7216784853634142,0.010000191358858813,1.427032280730025,0.09730550692167428 -20065,0.46360186181236235,0.022978774363896677,0.21276668333698068,0.22484817074980845,0.44160723365063315,1.5766912321442534,0.01457282039896661,1.2769011869449927,0.16630377296957227,1.6138856193354187,0.010000191358858813,1.3865798690376692,0.09730550692167428 -20067,0.37979731882129014,0.013587547015309948,0.1554336980727775,0.16113165935046153,0.4417491119343784,0.9329959379555928,0.01457282039896661,0.9359010373555723,0.16630377296957227,0.9243196626415564,0.010000191358858813,0.9308571834811734,0.09730550692167428 -20069,0.38398924741792195,0.01445570423124955,0.16105956172328362,0.16750514441758135,0.44173286341840967,0.9930053361936984,0.01457282039896661,0.9696158889557496,0.16630377296957227,0.9765587042478279,0.010000191358858813,0.9636378199257672,0.09730550692167428 -20071,0.42436549012916736,0.019409578292322247,0.1904606853280413,0.2013638931356402,0.4416625115308486,1.331461252749291,0.01457282039896661,1.1436073462724416,0.16630377296957227,1.335872760006932,0.010000191358858813,1.1997330185600315,0.09730550692167428 -20073,0.4543693457144654,0.022729321416414226,0.2083548695838133,0.22068887352847016,0.4416252563928871,1.558617344441755,0.01457282039896661,1.2491130891091327,0.16630377296957227,1.610338295188031,0.010000191358858813,1.3539454315968646,0.09730550692167428 -20075,0.3789432352856315,0.014529538912248431,0.1605024836827515,0.16854656774267845,0.4417362047413873,0.9986438932586897,0.01457282039896661,0.9643683611002638,0.16630377296957227,0.9737965791415644,0.010000191358858813,0.945271078171152,0.09730550692167428 -20077,0.44791248173242537,0.022157505807162844,0.20477964496082995,0.21954805329273214,0.44163851441045887,1.5196405007734861,0.01457282039896661,1.2289094424172622,0.16630377296957227,1.5466319046673518,0.010000191358858813,1.317345056950193,0.09730550692167428 -20079,0.41172821688348277,0.018184172880056398,0.1817031751238724,0.1923412283556769,0.4416875608879517,1.2472445834071442,0.01457282039896661,1.0903162808280795,0.16630377296957227,1.2533406508100697,0.010000191358858813,1.1244760849392716,0.09730550692167428 -20081,0.37492586357794744,0.012974505456282166,0.15240988375265177,0.1571676071634461,0.4417521682661344,0.8901783491025685,0.01457282039896661,0.9169910683018576,0.16630377296957227,0.8718865912341451,0.010000191358858813,0.9006881951875696,0.09730550692167428 -20083,0.4318327892723979,0.0195355394919645,0.19139909920354067,0.20157365452257212,0.4416679760806723,1.3398657279492787,0.01457282039896661,1.147877147464265,0.16630377296957227,1.3624075088365943,0.010000191358858813,1.2189974489026054,0.09730550692167428 -20085,0.413276291836569,0.016330748615655217,0.17593549237638773,0.1797746640790696,0.4416980625917618,1.1203208963180273,0.01457282039896661,1.05779878891643,0.16630377296957227,1.1243795139479755,0.010000191358858813,1.0884077217265453,0.09730550692167428 -20087,0.4229218528931034,0.016865511630179554,0.18102960776652804,0.18284233593952662,0.44168238084740247,1.156828073916302,0.01457282039896661,1.0896578950196807,0.16630377296957227,1.1667111890433048,0.010000191358858813,1.1266941935924444,0.09730550692167428 -20089,0.49769786596973326,0.02660419984966164,0.23263025215452593,0.2470023384985407,0.4415588430339939,1.8260816502068034,0.01457282039896661,1.3959389622622034,0.16630377296957227,1.9101452561910603,0.010000191358858813,1.5630841409914926,0.09730550692167428 -20091,0.38973116251159123,0.012976306528947,0.1588317631823277,0.15676264400996248,0.4417311146877918,0.8907477787093714,0.01457282039896661,0.955894464974884,0.16630377296957227,0.8732534674211634,0.010000191358858813,0.9323981181818993,0.09730550692167428 -20093,0.3753788607183966,0.013582320732425695,0.15399241453018103,0.15910176103268886,0.4417498152364761,0.9329697284384344,0.01457282039896661,0.9278675321314394,0.16630377296957227,0.9340483521708938,0.010000191358858813,0.9193631378672742,0.09730550692167428 -20095,0.44366009874989876,0.021610340692038522,0.20276958884968743,0.216826745278139,0.44163862474046733,1.4822112770460016,0.01457282039896661,1.2172282685331013,0.16630377296957227,1.4971426344071803,0.010000191358858813,1.2899286689285532,0.09730550692167428 -20097,0.4243363071033738,0.020481643458522963,0.1918271109500939,0.20753179739821856,0.44166830274043933,1.4048856528636358,0.01457282039896661,1.1520990592708156,0.16630377296957227,1.4289877152061083,0.010000191358858813,1.216441320587897,0.09730550692167428 -20099,0.4186004694011661,0.01796879487881094,0.18257888678566447,0.1901464516239947,0.4416861061763789,1.2323202288915778,0.01457282039896661,1.0965445730809402,0.16630377296957227,1.2480156621591043,0.010000191358858813,1.1390069773685614,0.09730550692167428 -20101,0.45968801922581,0.024615120096452194,0.21675308833979404,0.23585372515026112,0.4416081731984618,1.6893116004071747,0.01457282039896661,1.2996163535774579,0.16630377296957227,1.7266898236976724,0.010000191358858813,1.4060053377590531,0.09730550692167428 -20103,0.3970305019017477,0.01308890042940395,0.16125778764294307,0.1571857766723875,0.4417234649180207,0.8984426984134033,0.01457282039896661,0.9711209327906323,0.16630377296957227,0.8867955135087402,0.010000191358858813,0.9553588402511486,0.09730550692167428 -20105,0.4464373427723731,0.022040946949248134,0.20731406149023318,0.22124307753974898,0.4416283496078142,1.51136093173219,0.01457282039896661,1.242351064662219,0.16630377296957227,1.5050036250331496,0.010000191358858813,1.3104411999782037,0.09730550692167428 -20107,0.4436943851111117,0.01954536727444186,0.1952545999194374,0.20042195117237027,0.44165147937898785,1.3408826946736305,0.01457282039896661,1.171721237361686,0.16630377296957227,1.37354509893084,0.010000191358858813,1.2447644304745258,0.09730550692167428 -20109,0.4437877012989321,0.021025815663935816,0.2019030692600733,0.21257249613504187,0.4416387540116859,1.4417886190461267,0.01457282039896661,1.210504192542586,0.16630377296957227,1.4549558544483134,0.010000191358858813,1.2824852210126039,0.09730550692167428 -20111,0.37918831302834943,0.013746018191793281,0.157489959754243,0.16232813425331083,0.4417364609547485,0.9444443720367548,0.01457282039896661,0.9497447907344607,0.16630377296957227,0.929386579798205,0.010000191358858813,0.9271995544492448,0.09730550692167428 -20113,0.42136517738648605,0.018982634435607534,0.18861520067453585,0.19913779506863824,0.44166970607695283,1.3021830479183791,0.01457282039896661,1.131489777125625,0.16630377296957227,1.2987458765923874,0.010000191358858813,1.169471088522281,0.09730550692167428 -20115,0.438383534321826,0.021691961494758393,0.20203291134325785,0.2183026431584557,0.4416369387836703,1.4879979201357596,0.01457282039896661,1.2120687346302215,0.16630377296957227,1.495480589450372,0.010000191358858813,1.2820593049070936,0.09730550692167428 -20117,0.44017349660716987,0.022014602904361406,0.2051597715491049,0.22009133355094554,0.44163247445234755,1.5103050863223926,0.01457282039896661,1.2286788412724785,0.16630377296957227,1.5095091697136702,0.010000191358858813,1.290082355272753,0.09730550692167428 -20119,0.4011297945663226,0.018298716559601316,0.17879142034164505,0.19217794013990225,0.44170107966780525,1.25513304760177,0.01457282039896661,1.070609129179005,0.16630377296957227,1.260596455835816,0.010000191358858813,1.1038320634785421,0.09730550692167428 -20121,0.403413090755144,0.014720027527416923,0.1682865287945175,0.16853002257351357,0.441710896628032,1.0101854886615311,0.01457282039896661,1.0137033553275958,0.16630377296957227,1.0035136562548153,0.010000191358858813,1.0185406684704026,0.09730550692167428 -20123,0.4468856272022886,0.021873055875645107,0.20574723114520255,0.21820392122553522,0.4416271631076052,1.5006504077272562,0.01457282039896661,1.2345269083914738,0.16630377296957227,1.5149798316210654,0.010000191358858813,1.307236312258138,0.09730550692167428 -20125,0.4176793903860148,0.01825960279329434,0.18410027412946722,0.19306991053124628,0.4416835204121734,1.2523470290860326,0.01457282039896661,1.1048793541060786,0.16630377296957227,1.2578115916495762,0.010000191358858813,1.141865966900317,0.09730550692167428 -20127,0.4494637223064002,0.021730801817220483,0.20647599965463737,0.21898024413063005,0.44162076668964534,1.4910662081147823,0.01457282039896661,1.2392169722111257,0.16630377296957227,1.4942545284517261,0.010000191358858813,1.3144378438268283,0.09730550692167428 -20129,0.40305672137222226,0.01742461934723846,0.17699658965560838,0.18681920184086312,0.44169993532031737,1.1955780044608009,0.01457282039896661,1.0610522758388614,0.16630377296957227,1.1965638835496641,0.010000191358858813,1.0815173698241856,0.09730550692167428 -20131,0.42231256715630705,0.021181118305931224,0.19776912136790598,0.21636270649552578,0.441654004887755,1.4520070551018036,0.01457282039896661,1.1841369230091603,0.16630377296957227,1.425480092828303,0.010000191358858813,1.222997907663568,0.09730550692167428 -20133,0.4138771779378838,0.018789944814074373,0.18395140143430383,0.19736607874494977,0.44168491817996813,1.2887064757787354,0.01457282039896661,1.1026293139819532,0.16630377296957227,1.2932185237630542,0.010000191358858813,1.1509281275651104,0.09730550692167428 -20135,0.46325623308947145,0.02479852481111745,0.21978477388965512,0.23785436432740603,0.441597006991415,1.7015469886706192,0.01457282039896661,1.3174373282003953,0.16630377296957227,1.7289926109562825,0.010000191358858813,1.4227706728238028,0.09730550692167428 -20137,0.4395564384353457,0.018662879348507536,0.1949657526261037,0.19751804940394488,0.4416420859240576,1.280618557205202,0.01457282039896661,1.1696502609632802,0.16630377296957227,1.2703107324946472,0.010000191358858813,1.199217826095569,0.09730550692167428 -20139,0.4238029418116434,0.017582595804707238,0.1832066714805795,0.18744539536885993,0.4416821727435021,1.205354435643243,0.01457282039896661,1.0994896194765955,0.16630377296957227,1.2215002214058008,0.010000191358858813,1.1463576023696205,0.09730550692167428 -20141,0.4606009193077258,0.02484643616310578,0.21980940487538136,0.24016559262731768,0.44159370446310575,1.7054872165850288,0.01457282039896661,1.3182695318940363,0.16630377296957227,1.7170224676259749,0.010000191358858813,1.4133907038927536,0.09730550692167428 -20143,0.43137487591467594,0.01868577940439115,0.1881909511513376,0.19455115694196978,0.4416712539912513,1.2818979079904738,0.01457282039896661,1.128399459012642,0.16630377296957227,1.3121856421081257,0.010000191358858813,1.1917651611058422,0.09730550692167428 -20145,0.43923091139696213,0.01910156744144417,0.19346319228763786,0.1973973282814973,0.4416450750370329,1.311653989652882,0.01457282039896661,1.1615996069624521,0.16630377296957227,1.3384541998408785,0.010000191358858813,1.223624497695837,0.09730550692167428 -20147,0.4453483199862604,0.0215854831593635,0.2036646789606005,0.21654633438168944,0.44163448263132055,1.4804900384971706,0.01457282039896661,1.222288354201818,0.16630377296957227,1.4958931851664352,0.010000191358858813,1.2992085206237542,0.09730550692167428 -20149,0.3895121362975826,0.014376457251244885,0.16142543642755244,0.16568671200399662,0.4417326230821016,0.9865524291770595,0.01457282039896661,0.9705818374188055,0.16630377296957227,0.9862568132413778,0.010000191358858813,0.9742638667917765,0.09730550692167428 -20151,0.42550938752991735,0.019627999447864596,0.19139648745522145,0.20205098393141258,0.4416643618859527,1.3460024533417425,0.01457282039896661,1.147897717769048,0.16630377296957227,1.356627837834845,0.010000191358858813,1.1991903866376448,0.09730550692167428 -20153,0.4881397479769325,0.026611880649473996,0.22994216955001556,0.24507883890396548,0.4415703434703451,1.8256933774256139,0.01457282039896661,1.3779966357615339,0.16630377296957227,1.9147782934860569,0.010000191358858813,1.5415180641541584,0.09730550692167428 -20155,0.41880030128086376,0.018093584222106336,0.18369413007439928,0.19165095333454546,0.4416833423458324,1.2406766131572287,0.01457282039896661,1.1027675566660942,0.16630377296957227,1.2494630475189406,0.010000191358858813,1.1395128846230667,0.09730550692167428 -20157,0.4879529084874188,0.027381429790554638,0.2361178446019236,0.25591976951035206,0.4415512155677733,1.8782051460391904,0.01457282039896661,1.416612517962347,0.16630377296957227,1.915892499923895,0.010000191358858813,1.5515616679135933,0.09730550692167428 -20159,0.42102856228475494,0.018560208596262066,0.1840896108212261,0.1928864726244424,0.44168376668068055,1.2730407423981807,0.01457282039896661,1.1054786010471478,0.16630377296957227,1.3043293184533167,0.010000191358858813,1.1610818585332243,0.09730550692167428 -20161,0.3251187107304456,0.008936031894226693,0.12383428643563116,0.12840669127262705,0.4418049276835174,0.6129067301130529,0.01457282039896661,0.7471793350075665,0.16630377296957227,0.5857253596839028,0.010000191358858813,0.654428360735452,0.09730550692167428 -20163,0.44097213903055843,0.020640477537084763,0.19871926214872684,0.20906604224844405,0.4416465248896575,1.4160292240328007,0.01457282039896661,1.1927913231260021,0.16630377296957227,1.4387827899958006,0.010000191358858813,1.266760374132471,0.09730550692167428 -20165,0.47515623218114866,0.025289195008409003,0.22358080935438826,0.23858353340990193,0.4415858990410432,1.7357282789558537,0.01457282039896661,1.340338242556077,0.16630377296957227,1.7924907061936564,0.010000191358858813,1.4644885689607343,0.09730550692167428 -20167,0.46078963121407124,0.023436790342759382,0.2134480825154913,0.22911994180505096,0.4416126366501668,1.6087352865030131,0.01457282039896661,1.2816982321120527,0.16630377296957227,1.6382262021485623,0.010000191358858813,1.3779240773064139,0.09730550692167428 -20169,0.404914461053961,0.015987736954989867,0.17263637101820178,0.1766570133513283,0.4417051062891884,1.0964540543731038,0.01457282039896661,1.0364578219684089,0.16630377296957227,1.0991804039806679,0.010000191358858813,1.0516732146741785,0.09730550692167428 -20171,0.43075634905820126,0.018075566089792803,0.1899034087722924,0.19244265032480623,0.44166669316271723,1.2394400363549674,0.01457282039896661,1.1380048157442832,0.16630377296957227,1.2319545121524658,0.010000191358858813,1.1686297225180904,0.09730550692167428 -20173,0.3839145945238175,0.01334893660904913,0.1573186461936636,0.15881923244802082,0.44173833152979647,0.9160058103309512,0.01457282039896661,0.9459494623445304,0.16630377296957227,0.9069983529264058,0.010000191358858813,0.9302429014504536,0.09730550692167428 -20175,0.34504952545350215,0.010446495168286534,0.1345827747507432,0.1390311439024971,0.44179230225673793,0.7165320597945275,0.01457282039896661,0.811445576252974,0.16630377296957227,0.6877723459265146,0.010000191358858813,0.7545563179297384,0.09730550692167428 -20177,0.40935385467079377,0.015967316385941562,0.1736561820419909,0.17623470884285017,0.44170331413058544,1.095271567539182,0.01457282039896661,1.0422675320299075,0.16630377296957227,1.1028810822728827,0.010000191358858813,1.0622018747702673,0.09730550692167428 -20179,0.44766147454982236,0.02196877266117047,0.2057275530482598,0.2193831880927415,0.4416295050702086,1.5065582611739698,0.01457282039896661,1.2343169036738462,0.16630377296957227,1.5210525917219433,0.010000191358858813,1.315975340593723,0.09730550692167428 -20181,0.4400059237070584,0.01985752567378149,0.19186426396087813,0.19990168500546102,0.4416647873920081,1.3619462406278293,0.01457282039896661,1.1527065966946453,0.16630377296957227,1.4293584570253448,0.010000191358858813,1.2464792333122563,0.09730550692167428 -20183,0.48772912471196095,0.027780962438109486,0.235901289303119,0.25733627785397845,0.4415551689418567,1.906596274323208,0.01457282039896661,1.4142234726997187,0.16630377296957227,1.9584401961510527,0.010000191358858813,1.5530454940453762,0.09730550692167428 -20185,0.44339446307710395,0.021818747921228447,0.2041123887158579,0.21642358968495695,0.44163420861397096,1.4967489329956476,0.01457282039896661,1.2226463762830502,0.16630377296957227,1.521717886035698,0.010000191358858813,1.3017944962168577,0.09730550692167428 -20187,0.40971550609368157,0.018031026400041474,0.17899578994766235,0.1889187347809113,0.4416982274859813,1.2366890705780444,0.01457282039896661,1.0744093111933597,0.16630377296957227,1.2644106453606563,0.010000191358858813,1.1154789642125147,0.09730550692167428 -20189,0.3878666880654726,0.014884486052801703,0.16225671158025456,0.16780473702058873,0.4417347976511947,1.0215950488741772,0.01457282039896661,0.9748576461383245,0.16630377296957227,1.0298558921429208,0.010000191358858813,0.9778498897155823,0.09730550692167428 -20191,0.4085480841728738,0.01656909567199492,0.17623877239930208,0.18230197601571357,0.44169654853241735,1.13630255924877,0.01457282039896661,1.0575342036548934,0.16630377296957227,1.1284443146515075,0.010000191358858813,1.079533247183345,0.09730550692167428 -20193,0.3978010385438957,0.016484542512520683,0.1727003410438026,0.18125015785842402,0.44170233045969265,1.130916806348536,0.01457282039896661,1.0376047372603547,0.16630377296957227,1.1217339484325177,0.010000191358858813,1.0516249378178917,0.09730550692167428 -20195,0.48045614342863263,0.025719734053307998,0.2285188365958709,0.24485807848469074,0.4415651979440379,1.764327620814508,0.01457282039896661,1.3720841546401923,0.16630377296957227,1.7956841091926896,0.010000191358858813,1.4919157502772489,0.09730550692167428 -20197,0.41840473184700194,0.016541190160484408,0.17906167403732143,0.18058310926486448,0.4416888019479284,1.1341067120676682,0.01457282039896661,1.0758427338622902,0.16630377296957227,1.138568052613688,0.010000191358858813,1.1057590075186514,0.09730550692167428 -20199,0.46181526695174047,0.022876488649065115,0.21223287837818317,0.22362525592675947,0.44161114286149894,1.5695888624689367,0.01457282039896661,1.2731261166552348,0.16630377296957227,1.6054283412278705,0.010000191358858813,1.3773891736303994,0.09730550692167428 -20201,0.45554262905553855,0.02332932980466533,0.21182163295426715,0.22821557035486112,0.4416138951348951,1.600745399124947,0.01457282039896661,1.2714193068424584,0.16630377296957227,1.6270904498295318,0.010000191358858813,1.3650974006394963,0.09730550692167428 -20203,0.41400467165076804,0.017733349521402916,0.1794306249706485,0.1856350916571211,0.44169481699607155,1.2162328784793262,0.01457282039896661,1.0753670717679,0.16630377296957227,1.2509565245188297,0.010000191358858813,1.127185959143513,0.09730550692167428 -20205,0.43402094097574934,0.020515456678801707,0.1972826260618034,0.20968937334988913,0.4416502688163966,1.4073792653465884,0.01457282039896661,1.184029013500266,0.16630377296957227,1.412647567099741,0.010000191358858813,1.2423577761183793,0.09730550692167428 -20207,0.46527074150554015,0.02379739164109694,0.21695675366026523,0.23062735757776645,0.4416016395067356,1.632510922560757,0.01457282039896661,1.3019252588067656,0.16630377296957227,1.6625805870129033,0.010000191358858813,1.4049323631498407,0.09730550692167428 -20209,0.37610284133790295,0.012779201432206858,0.1528669532627438,0.15522336845599355,0.4417492689023444,0.8766923958044893,0.01457282039896661,0.9194115084020572,0.16630377296957227,0.8633356206082567,0.010000191358858813,0.8955321951727093,0.09730550692167428 -21001,0.4141824435960424,0.016277746061119584,0.1749069314933971,0.17730833678215124,0.4416975349269219,1.1169790307281042,0.01457282039896661,1.0507360504180139,0.16630377296957227,1.1432603681210463,0.010000191358858813,1.0869070649469785,0.09730550692167428 -21003,0.4108243982855154,0.015863808881104006,0.17303375752808442,0.17501055904025087,0.4417021970697717,1.0883325905356274,0.01457282039896661,1.0387614685369364,0.16630377296957227,1.1046213938150258,0.010000191358858813,1.0633076957881888,0.09730550692167428 -21005,0.4040477776336192,0.013927368256955806,0.16519210808789908,0.16142704858298484,0.44171412921533026,0.9555398949135865,0.01457282039896661,0.9955823361622144,0.16630377296957227,0.962349580972755,0.010000191358858813,0.997674374316138,0.09730550692167428 -21007,0.4343328748677866,0.018118442337265124,0.18798098370544297,0.18954425403464104,0.4416673293815024,1.2437676303453253,0.01457282039896661,1.126709082782428,0.16630377296957227,1.275998762201324,0.010000191358858813,1.1827462121692858,0.09730550692167428 -21009,0.4179814522919964,0.01675388198242355,0.17898570852920603,0.18148914545862135,0.44168957323670344,1.1489636949386737,0.01457282039896661,1.0748812760545925,0.16630377296957227,1.1610435152404859,0.010000191358858813,1.105060509343296,0.09730550692167428 -21011,0.41531491666947373,0.016554598173333063,0.176047882518157,0.17854314322071846,0.4416966776549686,1.1354906865330892,0.01457282039896661,1.0556560036659324,0.16630377296957227,1.1652481818422675,0.010000191358858813,1.0962907840379867,0.09730550692167428 -21013,0.4226106473719594,0.016386301876962862,0.17907525175324734,0.1784962151292194,0.4416852821120586,1.1241333120581558,0.01457282039896661,1.0765320070120232,0.16630377296957227,1.1422538131260254,0.010000191358858813,1.1077062083003968,0.09730550692167428 -21015,0.3785148290589999,0.011465676629784018,0.14940379498538314,0.14563001722554697,0.4417520433564935,0.7863099990417597,0.01457282039896661,0.9008058265125343,0.16630377296957227,0.7699837193339962,0.010000191358858813,0.8673665269394741,0.09730550692167428 -21017,0.4191966356444161,0.01676340482542637,0.1799517209081072,0.1823374931714125,0.4416859992112835,1.1493059918222914,0.01457282039896661,1.0800966985615092,0.16630377296957227,1.1543056739075874,0.010000191358858813,1.1073854695972236,0.09730550692167428 -21019,0.433920603131679,0.01788045074951506,0.1872684634746007,0.18826546850151538,0.44166790320967536,1.227071073570841,0.01457282039896661,1.123719471715386,0.16630377296957227,1.2565150593793155,0.010000191358858813,1.1747953359286296,0.09730550692167428 -21021,0.4205681813235293,0.01714045296398481,0.18006325320078873,0.18316747667680622,0.4416874631842453,1.1753715467625296,0.01457282039896661,1.0807271623869772,0.16630377296957227,1.202552430999802,0.010000191358858813,1.1200940760844944,0.09730550692167428 -21023,0.40538790991418366,0.014918033598762936,0.1696735941938771,0.16876994902654796,0.4417049589878369,1.023444932574341,0.01457282039896661,1.0234134362358385,0.16630377296957227,1.0242537685860995,0.010000191358858813,1.0293467662375342,0.09730550692167428 -21025,0.4193750663828047,0.015008730993192533,0.17362134463637924,0.16844850366598296,0.44169463874359605,1.0288342613896209,0.01457282039896661,1.0442958344452555,0.16630377296957227,1.04443996918805,0.010000191358858813,1.0654673832878943,0.09730550692167428 -21027,0.4268519540398826,0.01703954625093022,0.18094219880053497,0.18272164511752656,0.4416874101750087,1.1688140337826467,0.01457282039896661,1.0880786713855057,0.16630377296957227,1.2002574245244002,0.010000191358858813,1.1401665412667292,0.09730550692167428 -21029,0.3968552760140328,0.012725206967905807,0.15907388103763304,0.15412770229294692,0.44172640869981306,0.8735304548732408,0.01457282039896661,0.9598677749776874,0.16630377296957227,0.869571251421144,0.010000191358858813,0.9496215409259674,0.09730550692167428 -21031,0.41795476964954154,0.01616650608748156,0.1767191340175241,0.17622758880759098,0.44169268076058604,1.10853495354158,0.01457282039896661,1.061993932498691,0.16630377296957227,1.1298639387229508,0.010000191358858813,1.0901407514188166,0.09730550692167428 -21033,0.4389417111629994,0.019376825131915736,0.19297430870454174,0.19903528089964462,0.44165426951638476,1.3302743896765503,0.01457282039896661,1.158445080153229,0.16630377296957227,1.3654651177087647,0.010000191358858813,1.2279730683301984,0.09730550692167428 -21035,0.39915630764949445,0.015938561544407703,0.1705903254108662,0.17681287714382982,0.44170340206518804,1.0939671646665687,0.01457282039896661,1.0249337054848477,0.16630377296957227,1.0986207488648794,0.010000191358858813,1.0316925458559978,0.09730550692167428 -21037,0.39981142818120996,0.014324950585035105,0.16595594554592635,0.1656065114986477,0.44171266989287966,0.9829793091095935,0.01457282039896661,0.999595706091529,0.16630377296957227,0.9788922147374473,0.010000191358858813,0.9950077069346508,0.09730550692167428 -21039,0.44249265801892435,0.020791859872829943,0.19924566337379246,0.2095985656515213,0.44164219221634915,1.426560426101447,0.01457282039896661,1.1967676677776327,0.16630377296957227,1.4561787068289176,0.010000191358858813,1.2726030177370196,0.09730550692167428 -21041,0.40177262637072275,0.014653324679958776,0.16674049344424957,0.16620790395655283,0.4417124514453342,1.0051277408787633,0.01457282039896661,1.0026197382928892,0.16630377296957227,1.0167195503388906,0.010000191358858813,1.0082568232806293,0.09730550692167428 -21043,0.41946361065468984,0.01690900914457863,0.17807770605084144,0.18132649603511594,0.44169292570106544,1.1600728258430226,0.01457282039896661,1.069523835637558,0.16630377296957227,1.1935127179298366,0.010000191358858813,1.114189774814228,0.09730550692167428 -21045,0.42401016889343185,0.01724664016598461,0.18142201403684394,0.1854479649806449,0.4416864908999929,1.1832204203855325,0.01457282039896661,1.0897059865036527,0.16630377296957227,1.201349059923026,0.010000191358858813,1.133798131891754,0.09730550692167428 -21047,0.35637841371002404,0.011660005387114876,0.14158488932615337,0.1458884595777324,0.4417779178253802,0.7999626881171984,0.01457282039896661,0.8511591170304715,0.16630377296957227,0.797964964255645,0.010000191358858813,0.8140122443644926,0.09730550692167428 -21049,0.4174942239011359,0.015271953408402775,0.17325496296459508,0.17071715723840936,0.4416997834310853,1.0482475168752161,0.01457282039896661,1.0400314391807641,0.16630377296957227,1.0662438725553094,0.010000191358858813,1.063971447197101,0.09730550692167428 -21051,0.40287576356679355,0.01379131278131122,0.16469985326098635,0.1610303886417102,0.4417135581689181,0.9462253631954586,0.01457282039896661,0.9920711512430187,0.16630377296957227,0.9489358699811195,0.010000191358858813,0.9867431183446043,0.09730550692167428 -21053,0.4280745743826425,0.01707676373492887,0.1819565506082579,0.18189264891988893,0.4416859352392305,1.1716548957255997,0.01457282039896661,1.092295005621564,0.16630377296957227,1.2064328663479522,0.010000191358858813,1.1405548328840052,0.09730550692167428 -21055,0.4337269574060004,0.018486597720206187,0.1880908738481277,0.19342967384977552,0.4416738778769722,1.2681611353247888,0.01457282039896661,1.1284739754653268,0.16630377296957227,1.297198330448283,0.010000191358858813,1.1947654020134844,0.09730550692167428 -21057,0.4389502295388994,0.019480734720497668,0.1918654513678293,0.19759959910884295,0.4416568023938724,1.3375136256739633,0.01457282039896661,1.151297672306326,0.16630377296957227,1.3962593922393005,0.010000191358858813,1.2377608254338495,0.09730550692167428 -21059,0.4102539371556611,0.016154584960653348,0.17436758312938605,0.17757008919474462,0.4417008527224418,1.1079736536926181,0.01457282039896661,1.0469849050547058,0.16630377296957227,1.1171001801478537,0.010000191358858813,1.069645958677413,0.09730550692167428 -21061,0.428024540460451,0.017576646509838898,0.18317772201233187,0.18590612541849572,0.4416786201401788,1.2062420288603022,0.01457282039896661,1.0999716890705544,0.16630377296957227,1.2437586761315125,0.010000191358858813,1.1549040621011808,0.09730550692167428 -21063,0.41979611015704565,0.014592699453591217,0.17249797242456105,0.16691875994706873,0.44169692751970424,1.0005823964453127,0.01457282039896661,1.037156134663609,0.16630377296957227,1.0104662391291266,0.010000191358858813,1.0520550082548574,0.09730550692167428 -21065,0.4228631532314253,0.016360569868650664,0.17895995010260668,0.17821912675371765,0.44168852271914305,1.1224780611898426,0.01457282039896661,1.0745612996110752,0.16630377296957227,1.1406215239181485,0.010000191358858813,1.1049192296243966,0.09730550692167428 -21067,0.3857628936788603,0.012457574477027084,0.15605036642353975,0.1523478620297538,0.4417330802631377,0.85427501395947,0.01457282039896661,0.9383545739673675,0.16630377296957227,0.8421353829077058,0.010000191358858813,0.9025224627168991,0.09730550692167428 -21069,0.4167234083544755,0.016007452859814017,0.17498226002449482,0.17411571922137248,0.4416999011011802,1.0979828801262954,0.01457282039896661,1.0519787911869298,0.16630377296957227,1.1274070458309449,0.010000191358858813,1.0851379953966034,0.09730550692167428 -21071,0.4185107184660751,0.015160951456121518,0.17377088634256566,0.1703310890825225,0.4416962721473211,1.039230418541237,0.01457282039896661,1.0436637239339852,0.16630377296957227,1.051499117534045,0.010000191358858813,1.0632104009960042,0.09730550692167428 -21073,0.41572724757916735,0.015435332850279081,0.17415683460725884,0.17224854429379657,0.44169669949492607,1.0589792576739094,0.01457282039896661,1.0463924990515854,0.16630377296957227,1.069111549082581,0.010000191358858813,1.063031572539721,0.09730550692167428 -21075,0.4357053920934949,0.019089084909040127,0.19237708236781692,0.1973371918424472,0.4416556948663476,1.3099711031362569,0.01457282039896661,1.1539377406298792,0.16630377296957227,1.333324165897959,0.010000191358858813,1.2061877330721917,0.09730550692167428 -21077,0.3976861347853241,0.013564321071482865,0.1621079443281664,0.1612184163662817,0.44172021838742964,0.9307032622096945,0.01457282039896661,0.9805248663968577,0.16630377296957227,0.9203707058469249,0.010000191358858813,0.976527834387671,0.09730550692167428 -21079,0.41968999250436073,0.015507415336956591,0.17569524728461952,0.17278026319118062,0.44169097664142976,1.0635886211185213,0.01457282039896661,1.0571843185513674,0.16630377296957227,1.0730872264026812,0.010000191358858813,1.0769068303369251,0.09730550692167428 -21081,0.38078428670968917,0.012399090386028128,0.15282425472460964,0.15248498833837162,0.4417448431555443,0.85083554422357,0.01457282039896661,0.9208751715299748,0.16630377296957227,0.8387168206313038,0.010000191358858813,0.8990098797620463,0.09730550692167428 -21083,0.4196101339745717,0.01731683377481198,0.18141789653323123,0.18620846900982785,0.4416870107750018,1.1873718649732243,0.01457282039896661,1.088617465879551,0.16630377296957227,1.1949694739622752,0.010000191358858813,1.1234667422020186,0.09730550692167428 -21085,0.41862350993356334,0.016387935348189296,0.17605640372272027,0.17712122958380117,0.44170025150122394,1.1249254899200518,0.01457282039896661,1.0567372212405635,0.16630377296957227,1.1597913771397426,0.010000191358858813,1.0997942580899085,0.09730550692167428 -21087,0.4359796161083237,0.018832205960998983,0.19096572570311748,0.1946090052583537,0.4416611449962141,1.292738306705737,0.01457282039896661,1.1450821011814163,0.16630377296957227,1.3251190840687466,0.010000191358858813,1.206386534398184,0.09730550692167428 -21089,0.4302095662663078,0.017736946762551588,0.18604924855368973,0.18790466004969608,0.4416709462694116,1.216894290704528,0.01457282039896661,1.1165275170316997,0.16630377296957227,1.2376905229813406,0.010000191358858813,1.1625865244452303,0.09730550692167428 -21091,0.4130007669692204,0.015755985431633042,0.17350367849911053,0.17577975221755526,0.4417005916547794,1.0806066588757348,0.01457282039896661,1.0424253975294488,0.16630377296957227,1.0882766853699795,0.010000191358858813,1.0690969650722104,0.09730550692167428 -21093,0.387623067861008,0.012980834474485952,0.1570609380901426,0.15615471861094143,0.4417354844555173,0.8910755347756047,0.01457282039896661,0.946432768470419,0.16630377296957227,0.8837712549528289,0.010000191358858813,0.9290877759345908,0.09730550692167428 -21095,0.42237854428808896,0.01648439159212975,0.17905782698403655,0.17897966411763067,0.44168762515599497,1.1306929332208149,0.01457282039896661,1.0760505349392548,0.16630377296957227,1.1512034493211922,0.010000191358858813,1.111563527127902,0.09730550692167428 -21097,0.41450468290358733,0.015960680612779415,0.17598599614063554,0.17701474173629206,0.4416922503774698,1.0945537549383726,0.01457282039896661,1.0588442503555182,0.16630377296957227,1.0943469541808724,0.010000191358858813,1.0768448359769431,0.09730550692167428 -21099,0.41112303681374707,0.01580750034379337,0.17431922169134434,0.17631752114184351,0.4416958268887187,1.0844043125683476,0.01457282039896661,1.048621554103704,0.16630377296957227,1.082590557432977,0.010000191358858813,1.0659944221431386,0.09730550692167428 -21101,0.41513521666520714,0.015802233453270184,0.1749658250583841,0.17476622692677396,0.4416986481829357,1.084065111018452,0.01457282039896661,1.050601522640459,0.16630377296957227,1.0946751867401856,0.010000191358858813,1.071357484490669,0.09730550692167428 -21103,0.4149971171568121,0.015143796270577752,0.17305324874031836,0.17151220510781542,0.44170103706950486,1.0389623657394202,0.01457282039896661,1.0395756311148072,0.16630377296957227,1.039551399927781,0.010000191358858813,1.0589065173405317,0.09730550692167428 -21105,0.4508231648166142,0.02086290165695933,0.20170017370768337,0.2091492068048397,0.44163572314152233,1.4315646162801012,0.01457282039896661,1.2100731106189921,0.16630377296957227,1.4715806004237015,0.010000191358858813,1.2955459973097785,0.09730550692167428 -21107,0.4219016060035475,0.01652581755999083,0.17963980441007787,0.17997867393016603,0.4416873834805718,1.1335132892355606,0.01457282039896661,1.0784028460557766,0.16630377296957227,1.1456943796117103,0.010000191358858813,1.1084566822228128,0.09730550692167428 -21109,0.41373516861628906,0.01548164362291488,0.171823588308543,0.16988864433103948,0.44170446954014075,1.0622008846023534,0.01457282039896661,1.0306914515301542,0.16630377296957227,1.0982380374275706,0.010000191358858813,1.0606215171055746,0.09730550692167428 -21111,0.4066005578701415,0.01518124936091121,0.17105984268086707,0.17126090320134477,0.4417052665872361,1.041944961321419,0.01457282039896661,1.0277138946119755,0.16630377296957227,1.041239809035254,0.010000191358858813,1.0317178704497718,0.09730550692167428 -21113,0.38710234132948296,0.013148173458989816,0.15742745032000494,0.15700047513869428,0.44173414083708173,0.9024837406216382,0.01457282039896661,0.9480302924842261,0.16630377296957227,0.8974392753911404,0.010000191358858813,0.9324046119777002,0.09730550692167428 -21115,0.4200453136204407,0.01583576998010708,0.1765182985681651,0.17515988484834538,0.44169237635387404,1.086677414180842,0.01457282039896661,1.0596506036282247,0.16630377296957227,1.0996820962440106,0.010000191358858813,1.0836741684233475,0.09730550692167428 -21117,0.3921789317738632,0.013219618143957047,0.15991994376459018,0.15764272762389334,0.44172793545517847,0.9068113007416383,0.01457282039896661,0.9628288319312654,0.16630377296957227,0.8986791070246478,0.010000191358858813,0.9449376414332499,0.09730550692167428 -21119,0.4190363988998411,0.015220812345026136,0.1741585725871999,0.1709809324879351,0.44169243459066676,1.0434353621606391,0.01457282039896661,1.0481732800394923,0.16630377296957227,1.0551125214962136,0.010000191358858813,1.0693623020011467,0.09730550692167428 -21121,0.40684092459585314,0.015685478098031436,0.1710400175079732,0.17344005572993554,0.44170761161499594,1.0758802120294835,0.01457282039896661,1.0288715594644557,0.16630377296957227,1.0925290842684974,0.010000191358858813,1.0505820670686163,0.09730550692167428 -21123,0.4177485970328909,0.016426387352407264,0.1777141936373909,0.17861302817351815,0.4416928369863248,1.1265750727930284,0.01457282039896661,1.066021433265906,0.16630377296957227,1.1422966070947789,0.010000191358858813,1.0949801307048483,0.09730550692167428 -21125,0.4057617389235412,0.014471325063935331,0.16702776879324205,0.16486640327047403,0.4417156704479329,0.9932048049039983,0.01457282039896661,1.0048385625532024,0.16630377296957227,1.0069745773422436,0.010000191358858813,1.015077245297113,0.09730550692167428 -21127,0.41648897870639734,0.015829902315251183,0.17441935669510322,0.17404348586922286,0.44169723826497065,1.0860360745928905,0.01457282039896661,1.0477262131421214,0.16630377296957227,1.1100805147260089,0.010000191358858813,1.077896055969087,0.09730550692167428 -21129,0.43052027173090635,0.01619124898909345,0.18044062986667486,0.1750203327295734,0.4416732941211221,1.1108553992116568,0.01457282039896661,1.0864872278690973,0.16630377296957227,1.1464913349473513,0.010000191358858813,1.1183792450364396,0.09730550692167428 -21131,0.4178676378021281,0.015657963724866657,0.17613985576161922,0.17380078988487008,0.44168930794227923,1.0741502731601658,0.01457282039896661,1.058856149212002,0.16630377296957227,1.0814446669973958,0.010000191358858813,1.0740593541593895,0.09730550692167428 -21133,0.4238805641396919,0.01577841522503545,0.17753444241954416,0.1744532939460965,0.44168841270025105,1.0817051422817612,0.01457282039896661,1.0660254180744384,0.16630377296957227,1.097470738199923,0.010000191358858813,1.0925433881065914,0.09730550692167428 -21135,0.41813805031967816,0.015816562039518964,0.1761675088309115,0.17574238842231465,0.4416977166148014,1.0853700945751235,0.01457282039896661,1.0577775900363944,0.16630377296957227,1.090217384102532,0.010000191358858813,1.0803158163911468,0.09730550692167428 -21137,0.4087467272740609,0.015640788827673106,0.1727499090196712,0.17451975689282323,0.4417033808585331,1.073198109881337,0.01457282039896661,1.0369248010778738,0.16630377296957227,1.0748681468931889,0.010000191358858813,1.052161753223714,0.09730550692167428 -21139,0.4454064374465415,0.018745478491288558,0.19458663624102485,0.19480719284200454,0.44164545263107063,1.2866047773679865,0.01457282039896661,1.1679860923146914,0.16630377296957227,1.3127813384104012,0.010000191358858813,1.2294883585319953,0.09730550692167428 -21141,0.4204101823929237,0.016425552289766467,0.17788820538063863,0.17863362370332886,0.4416919489363114,1.126913089321108,0.01457282039896661,1.0696405028813025,0.16630377296957227,1.1479923810295336,0.010000191358858813,1.1036680951115034,0.09730550692167428 -21143,0.47966575002743655,0.020957151273376034,0.2112991852968077,0.2077111576368656,0.44159376811456397,1.4389802933172833,0.01457282039896661,1.2684233123129363,0.16630377296957227,1.5034321813116427,0.010000191358858813,1.366841560283513,0.09730550692167428 -21145,0.42927555775061954,0.017890627347578958,0.18676227436422838,0.18932317985862132,0.44167098918434455,1.2272578322650889,0.01457282039896661,1.1205807877298706,0.16630377296957227,1.2420396517739873,0.010000191358858813,1.1628965823809687,0.09730550692167428 -21147,0.40172921594848854,0.01350130371537877,0.1617730183029587,0.15790596263382442,0.44172282363878806,0.9264452055880377,0.01457282039896661,0.9770839100214042,0.16630377296957227,0.9424588707694692,0.010000191358858813,0.9823923016762924,0.09730550692167428 -21149,0.4218933198378131,0.017449847095626074,0.18272821810234657,0.18677242295668509,0.4416831688334969,1.1963453678526625,0.01457282039896661,1.0967660805205905,0.16630377296957227,1.2071396510214119,0.010000191358858813,1.134659003125182,0.09730550692167428 -21151,0.38216737849199733,0.01290650783914207,0.15496980328187687,0.154631891785168,0.44173906358948095,0.885808597667574,0.01457282039896661,0.9314886483412272,0.16630377296957227,0.8872601106334427,0.010000191358858813,0.9101181437429409,0.09730550692167428 -21153,0.4028266048206408,0.014641402225955856,0.16648214924381727,0.16678009739024602,0.4417122816111386,1.004686671956667,0.01457282039896661,1.0020502560892188,0.16630377296957227,1.014085550070486,0.010000191358858813,1.0165578812940455,0.09730550692167428 -21155,0.40279624306152434,0.014467245189566555,0.16669258643918766,0.16594592197695085,0.4417136886463634,0.9931551092929235,0.01457282039896661,1.0026268025344152,0.16630377296957227,0.9963118656763162,0.010000191358858813,1.007409487457302,0.09730550692167428 -21157,0.4491478011150901,0.01961978145162394,0.19589980792624662,0.19868285734902913,0.44164869651547,1.3467028086334625,0.01457282039896661,1.1747735206690808,0.16630377296957227,1.404783353194674,0.010000191358858813,1.2611617071495484,0.09730550692167428 -21159,0.4015986104096564,0.013278028639037532,0.1642430894206527,0.15811346190520045,0.4417107735874768,0.9100829360802403,0.01457282039896661,0.9877905317524744,0.16630377296957227,0.9002478969816345,0.010000191358858813,0.9636206860722514,0.09730550692167428 -21161,0.41752057176918556,0.016434537364058588,0.17848374343138707,0.18052236212497813,0.44169145815762223,1.1271015877438963,0.01457282039896661,1.0713613542651923,0.16630377296957227,1.1276130879805835,0.010000191358858813,1.0951627880729966,0.09730550692167428 -21163,0.3826641377219843,0.012246862100772731,0.15232377450170853,0.1505131036381291,0.44174600936564634,0.8406686220461952,0.01457282039896661,0.9176735274079055,0.16630377296957227,0.8368576066534594,0.010000191358858813,0.8978609082282298,0.09730550692167428 -21165,0.4366044364360203,0.017346563930517526,0.18714517822569066,0.18653739962176163,0.4416613077134217,1.1902556854145154,0.01457282039896661,1.1248112619658046,0.16630377296957227,1.2042274018917714,0.010000191358858813,1.1682395358245716,0.09730550692167428 -21167,0.4247399288361947,0.01678611447482367,0.1813989772953385,0.1817320106141952,0.44168311876417654,1.1511153344536937,0.01457282039896661,1.0902293610447482,0.16630377296957227,1.1643962908141847,0.010000191358858813,1.125427467490907,0.09730550692167428 -21169,0.42467914320033484,0.01784200931576159,0.18360788224416674,0.18835748533706037,0.441678954275607,1.2238653076743495,0.01457282039896661,1.1025445715786586,0.16630377296957227,1.2517527820814238,0.010000191358858813,1.1520710372160607,0.09730550692167428 -21171,0.42661516788544673,0.01775247004376327,0.1845860068905028,0.18828656830545865,0.4416763323525132,1.2176680707496774,0.01457282039896661,1.1083727768994018,0.16630377296957227,1.238694981466678,0.010000191358858813,1.1558845051210844,0.09730550692167428 -21173,0.4044180191377761,0.014377286002998257,0.16707426974690137,0.16437663648201717,0.4417158187371776,0.9867328523061529,0.01457282039896661,1.0037299490763583,0.16630377296957227,0.9937447551663838,0.010000191358858813,1.007221933969861,0.09730550692167428 -21175,0.4174727353073421,0.014615809280571254,0.1714527699991284,0.16446301202441818,0.44169690391472793,1.0021550631634528,0.01457282039896661,1.0329803853705182,0.16630377296957227,1.028149801120897,0.010000191358858813,1.0457801637049404,0.09730550692167428 -21177,0.4294925813909491,0.017195298810040192,0.183377772041664,0.18415702116563012,0.4416777209460067,1.1801569407745782,0.01457282039896661,1.1008390022715835,0.16630377296957227,1.2042922401655654,0.010000191358858813,1.1435844646084559,0.09730550692167428 -21179,0.39627262975528166,0.013501444734004308,0.16135783914512852,0.1591051310836562,0.44172586128857383,0.9266534370428643,0.01457282039896661,0.971828871996222,0.16630377296957227,0.9268316890720897,0.010000191358858813,0.9672142363476153,0.09730550692167428 -21181,0.4240668872317863,0.016853504071013006,0.18026058994342287,0.1813462952757466,0.4416853966239729,1.1561592197647759,0.01457282039896661,1.0812360806822343,0.16630377296957227,1.1819738299772742,0.010000191358858813,1.1193343594362068,0.09730550692167428 -21183,0.4131138257597111,0.016405669071795706,0.17613588864790447,0.17965994196614396,0.44169912378720183,1.1248748873686276,0.01457282039896661,1.057112960351312,0.16630377296957227,1.1319504714595645,0.010000191358858813,1.082653289869313,0.09730550692167428 -21185,0.3905297668644882,0.011588099213123424,0.15432267892383517,0.147014742096311,0.44173379130656454,0.7950096717987173,0.01457282039896661,0.9337796768506138,0.16630377296957227,0.7748100224288277,0.010000191358858813,0.9062760758667915,0.09730550692167428 -21187,0.4166360961308845,0.015488199759463762,0.17290571278419686,0.17093452005564974,0.441701514344355,1.062575259618861,0.01457282039896661,1.0392023590676014,0.16630377296957227,1.0925845606153772,0.010000191358858813,1.0720260742776437,0.09730550692167428 -21189,0.44240833207013897,0.019185300767818,0.19075029177256825,0.1975166948788391,0.4416642558468251,1.3162005620263386,0.01457282039896661,1.1445888390269423,0.16630377296957227,1.3688424406805497,0.010000191358858813,1.2292381410710715,0.09730550692167428 -21191,0.40245151139281765,0.01408123733933797,0.16418868638774692,0.16161015120740904,0.44172120375243196,0.9662574949697003,0.01457282039896661,0.9907073179100618,0.16630377296957227,0.9827226494187549,0.010000191358858813,1.0016104410460118,0.09730550692167428 -21193,0.41585456004083476,0.015007635846504773,0.17367130620177207,0.17003282251272828,0.44169477671410945,1.0289740956869964,0.01457282039896661,1.0435259127390033,0.16630377296957227,1.02849799398211,0.010000191358858813,1.0521699861495108,0.09730550692167428 -21195,0.42116485670697446,0.015568391135594382,0.17620992644119382,0.17295749162343696,0.44169053157071614,1.0674807457626252,0.01457282039896661,1.058296012221405,0.16630377296957227,1.0811136648923947,0.010000191358858813,1.080259322579706,0.09730550692167428 -21197,0.4041931336529617,0.014235561998107825,0.1668170476958858,0.16441512045397844,0.441712610588205,0.9765188243285549,0.01457282039896661,1.0057123360178486,0.16630377296957227,0.9755560859264499,0.010000191358858813,1.0086722194915714,0.09730550692167428 -21199,0.42734161527244624,0.017378620337974087,0.18363579137396382,0.18499966752254138,0.4416789485043231,1.1917412136798564,0.01457282039896661,1.1021542496952068,0.16630377296957227,1.2146911511825436,0.010000191358858813,1.1448718648459164,0.09730550692167428 -21201,0.3884160547088259,0.013779477615637664,0.15961689921266492,0.16358203155273587,0.44172585638119716,0.9460220026921773,0.01457282039896661,0.9641457637294026,0.16630377296957227,0.936729668437428,0.010000191358858813,0.9620376395107714,0.09730550692167428 -21203,0.42136715041930545,0.016211689556609746,0.17678045536795664,0.1756237968315759,0.441691450389796,1.1126057852795466,0.01457282039896661,1.0632176233747175,0.16630377296957227,1.1478537855078956,0.010000191358858813,1.101275646096029,0.09730550692167428 -21205,0.3801718648596447,0.01327082311590726,0.15460260880451185,0.15675794471163348,0.4417391154331881,0.9108823111329338,0.01457282039896661,0.9305731307253673,0.16630377296957227,0.9215729181094086,0.010000191358858813,0.9219142568050158,0.09730550692167428 -21207,0.4342939953909538,0.0184903455629615,0.1888086651848915,0.1924804458950961,0.4416653605308185,1.269377415932773,0.01457282039896661,1.1334012483307467,0.16630377296957227,1.302601177040989,0.010000191358858813,1.1907130124760996,0.09730550692167428 -21209,0.37874465237447846,0.011512241506714054,0.1496402887473567,0.14558218232214576,0.4417507222220445,0.7895648851476083,0.01457282039896661,0.9018754829791964,0.16630377296957227,0.7765897792882861,0.010000191358858813,0.866014272210033,0.09730550692167428 -21211,0.40344199143429393,0.013885222042588446,0.16483227245129622,0.16151235421795032,0.4417170571704353,0.952867402364588,0.01457282039896661,0.9934303346425749,0.16630377296957227,0.9573133552627195,0.010000191358858813,0.9961983362652503,0.09730550692167428 -21213,0.4108787844833695,0.01568621973641446,0.17144506990730934,0.17222119812459957,0.44170654109506885,1.0767151571827807,0.01457282039896661,1.0298564995567498,0.16630377296957227,1.1079191039974803,0.010000191358858813,1.05988176211077,0.09730550692167428 -21215,0.3969866385382693,0.012378176542266306,0.15825893767215035,0.15163743288933296,0.4417270997000837,0.8494574093848402,0.01457282039896661,0.957529194307653,0.16630377296957227,0.8401815995177548,0.010000191358858813,0.9405834310168746,0.09730550692167428 -21217,0.4158060450196899,0.017143345269338972,0.17932078115958142,0.18430863484646026,0.44168971288711145,1.1754669433434168,0.01457282039896661,1.0777060833095362,0.16630377296957227,1.1898088825593796,0.010000191358858813,1.1127401193093553,0.09730550692167428 -21219,0.39765835989658604,0.015792916236436152,0.1682717698896464,0.1741277288887183,0.44171929944295013,1.0841087170780823,0.01457282039896661,1.0101888111239115,0.16630377296957227,1.09857172257882,0.010000191358858813,1.02969915046529,0.09730550692167428 -21221,0.443899916003532,0.018141772036458517,0.1916636671338009,0.19166700737129777,0.44165313729527866,1.2445909290964643,0.01457282039896661,1.1511553086175899,0.16630377296957227,1.2655126318939622,0.010000191358858813,1.211382024467909,0.09730550692167428 -21223,0.4094703919398307,0.0146776692259007,0.16893912072509698,0.16690951503476897,0.44170809815824863,1.0069898758109952,0.01457282039896661,1.015299912206555,0.16630377296957227,1.0179532516551482,0.010000191358858813,1.0310447993935266,0.09730550692167428 -21225,0.4034550473088597,0.015846421963521935,0.17048457248056853,0.1742420516283752,0.4417063898433724,1.0865038918956973,0.01457282039896661,1.026047183247281,0.16630377296957227,1.1057484347272934,0.010000191358858813,1.0487606229601987,0.09730550692167428 -21227,0.3790412647819367,0.012600410449085796,0.15321415197395338,0.15299426042597786,0.4417426477613908,0.864428934416858,0.01457282039896661,0.9213701238171808,0.16630377296957227,0.8597445298187656,0.010000191358858813,0.8952675220069081,0.09730550692167428 -21229,0.41274721489092836,0.0167107579326922,0.1778066427998728,0.18217144816999248,0.4416908127669483,1.1462789616419677,0.01457282039896661,1.0672918348805587,0.16630377296957227,1.1476626808778114,0.010000191358858813,1.0886224823756252,0.09730550692167428 -21231,0.42801562731830356,0.016797319647444745,0.18042046080372853,0.18001002430163926,0.44168508805148926,1.1525424116838638,0.01457282039896661,1.0832390970676555,0.16630377296957227,1.1923747630225767,0.010000191358858813,1.1325989668470817,0.09730550692167428 -21233,0.4180138805358965,0.016586698877612972,0.1793602121684413,0.18162548397105388,0.441687901460305,1.1371851253903211,0.01457282039896661,1.0766483905370934,0.16630377296957227,1.1365041779376561,0.010000191358858813,1.0996180859019318,0.09730550692167428 -21235,0.4034809112290998,0.01535240061286194,0.1686246730959986,0.17136894826291899,0.44171306727606885,1.053677688908289,0.01457282039896661,1.0130748263153604,0.16630377296957227,1.0697712289658798,0.010000191358858813,1.0354279625445724,0.09730550692167428 -21237,0.4225321518064279,0.016175731597228796,0.1767973832850907,0.17695001659717816,0.4416969313427618,1.1101080398152807,0.01457282039896661,1.0620541286273408,0.16630377296957227,1.1364107973612163,0.010000191358858813,1.1043512658072625,0.09730550692167428 -21239,0.41677019255482967,0.015059854595657873,0.17373412620309026,0.17065429800902676,0.44169744652074994,1.0328212652921542,0.01457282039896661,1.0443108216488928,0.16630377296957227,1.0330326560102296,0.010000191358858813,1.060657201200959,0.09730550692167428 -22001,0.390027483755475,0.014290459982301076,0.16098904597636943,0.16413024693554423,0.4417314003259726,0.9806130605934174,0.01457282039896661,0.9689795899556074,0.16630377296957227,0.9892193943531951,0.010000191358858813,0.9735463235545712,0.09730550692167428 -22003,0.4044693715959231,0.014454491638914206,0.16747999204399525,0.16497759457755656,0.4417108246309862,0.991731420955313,0.01457282039896661,1.0080193804123243,0.16630377296957227,0.9981903830005303,0.010000191358858813,1.006632376854788,0.09730550692167428 -22005,0.37191037829077767,0.010907557759597111,0.145389275279468,0.14195152723052157,0.4417604153813097,0.7480038170162593,0.01457282039896661,0.8774875453295783,0.16630377296957227,0.7286090484161797,0.010000191358858813,0.8370905015835327,0.09730550692167428 -22007,0.4046843408449129,0.014987926830953225,0.16884665933483814,0.16950249120531202,0.44171039858686717,1.028338753780461,0.01457282039896661,1.0161376768125423,0.16630377296957227,1.0340432184847799,0.010000191358858813,1.028258081355502,0.09730550692167428 -22009,0.4062087043676782,0.015401535842943927,0.17091017707797324,0.17261237721239142,0.4417069491736296,1.056707908571331,0.01457282039896661,1.0272336945425962,0.16630377296957227,1.060505294133449,0.010000191358858813,1.039420592812581,0.09730550692167428 -22011,0.3978379927594965,0.01438891408824422,0.16425096706932518,0.16502784676162108,0.4417223165282407,0.9876178305082071,0.01457282039896661,0.987589713284615,0.16630377296957227,0.9943048805748639,0.010000191358858813,0.9942627922780931,0.09730550692167428 -22013,0.42519394380300557,0.0186370531750132,0.18669205240576697,0.19453013324933788,0.44167414945489747,1.2783473728722492,0.01457282039896661,1.1213794796418568,0.16630377296957227,1.3013563785817817,0.010000191358858813,1.1746924150827354,0.09730550692167428 -22015,0.38879975282239404,0.013457198086583145,0.15775755944814707,0.15741671749578445,0.4417358017938069,0.9240653111403891,0.01457282039896661,0.9501196228797704,0.16630377296957227,0.9375302576828162,0.010000191358858813,0.9461235590524679,0.09730550692167428 -22017,0.3997482059175925,0.015238661239887933,0.1683787969582278,0.17156589863540872,0.44171397635144616,1.0457720143769365,0.01457282039896661,1.0112935016301576,0.16630377296957227,1.0469241637539328,0.010000191358858813,1.0186345730754094,0.09730550692167428 -22019,0.39597792265178,0.014489552411031118,0.1639341307266477,0.16540077395630393,0.44172320627901557,0.9944814480882348,0.01457282039896661,0.9862153219561874,0.16630377296957227,1.0042705114641792,0.010000191358858813,0.9914382323748332,0.09730550692167428 -22021,0.4158042688382648,0.0158085170482457,0.17431493906351508,0.1744612669207827,0.44169647506580767,1.0846697174901299,0.01457282039896661,1.048566967382492,0.16630377296957227,1.1029847552900527,0.010000191358858813,1.0761327853809743,0.09730550692167428 -22023,0.4171937699589684,0.015166614868044982,0.17330177201073604,0.17130852139586752,0.44169904239251534,1.0406013454713205,0.01457282039896661,1.0394653240369136,0.16630377296957227,1.0469322109753567,0.010000191358858813,1.062266640359388,0.09730550692167428 -22025,0.41257113397960576,0.01548411331766453,0.1719067259843219,0.17144095178744415,0.4417047893025108,1.0623699243504752,0.01457282039896661,1.0311572268769096,0.16630377296957227,1.0876826063238791,0.010000191358858813,1.0569257080370482,0.09730550692167428 -22027,0.4252435523884297,0.01690759450100415,0.18236132417907763,0.18222654994300092,0.4416760483387223,1.1602887991651831,0.01457282039896661,1.095316001554837,0.16630377296957227,1.1747534015911336,0.010000191358858813,1.1229076311804884,0.09730550692167428 -22029,0.40628651939268295,0.01582206110007418,0.17107596695295244,0.17491047844593266,0.4417100278153081,1.0857064121435456,0.01457282039896661,1.0272246348332885,0.16630377296957227,1.1014284475802034,0.010000191358858813,1.054147831040169,0.09730550692167428 -22031,0.4118808884161469,0.01608613968702922,0.17406675584586873,0.17661042380364056,0.44170121467105006,1.1036255833106616,0.01457282039896661,1.0464953623473798,0.16630377296957227,1.1203295656535341,0.010000191358858813,1.0767124970941278,0.09730550692167428 -22033,0.38078474401903656,0.012871005010910947,0.1549745377065871,0.1555783572947341,0.4417396772558586,0.883278440990521,0.01457282039896661,0.9322549362662196,0.16630377296957227,0.8735377236424722,0.010000191358858813,0.9077315724062054,0.09730550692167428 -22035,0.3847792879542874,0.01336380723873529,0.15717899194490262,0.1574093317458119,0.4417367721800295,0.9171533971856114,0.01457282039896661,0.9456413328784712,0.16630377296957227,0.9181188144349072,0.010000191358858813,0.9277678283406845,0.09730550692167428 -22037,0.41802490048830987,0.014727519373908397,0.17264971376586363,0.16756646915713846,0.4416980430694829,1.0094615915727636,0.01457282039896661,1.037717757488695,0.16630377296957227,1.0181082984190892,0.010000191358858813,1.0523571677148011,0.09730550692167428 -22039,0.3922239505014037,0.0145377407146274,0.16271867139906449,0.16627468734047168,0.4417253950609194,0.9983734219492307,0.01457282039896661,0.9798235827852464,0.16630377296957227,1.005600925684723,0.010000191358858813,0.9845356973500163,0.09730550692167428 -22041,0.4119382972292922,0.01715209071116312,0.1774404646544741,0.18385748535804528,0.44169913545270933,1.1756712094962634,0.01457282039896661,1.0645883244173127,0.16630377296957227,1.1934272552650023,0.010000191358858813,1.1027531650536575,0.09730550692167428 -22043,0.3996577680083272,0.013837942593659204,0.1631584014737668,0.16091647863546807,0.4417190413406963,0.9496569875723544,0.01457282039896661,0.982936651449005,0.16630377296957227,0.9572852902238851,0.010000191358858813,0.9815688453937013,0.09730550692167428 -22045,0.3875911956796011,0.013665359296311175,0.15892323128249525,0.16091806208807516,0.4417340850434313,0.9378756760877612,0.01457282039896661,0.9566738117083482,0.16630377296957227,0.9346814159051031,0.010000191358858813,0.9513588923034597,0.09730550692167428 -22047,0.39921060768892125,0.013467571905053037,0.16310180884217984,0.1593361439257756,0.4417174585928379,0.924344721152511,0.01457282039896661,0.9832476755759219,0.16630377296957227,0.9198094739674056,0.010000191358858813,0.9720222552932667,0.09730550692167428 -22049,0.4177510520287224,0.01661083002702614,0.17767573187423108,0.1804388251588236,0.44169236750862173,1.139870900260096,0.01457282039896661,1.0680693731176205,0.16630377296957227,1.1584212250182642,0.010000191358858813,1.1012900107677994,0.09730550692167428 -22051,0.4120948224205502,0.01540552859054229,0.17351737513887674,0.17290800283077928,0.4416984124192497,1.057225167260699,0.01457282039896661,1.042760106640142,0.16630377296957227,1.0577533818559055,0.010000191358858813,1.051521090925576,0.09730550692167428 -22053,0.39817982239662,0.015438265619401774,0.16757239368250623,0.17202897074909795,0.4417184502487156,1.0593335434222824,0.01457282039896661,1.006777545634508,0.16630377296957227,1.0697078509935423,0.010000191358858813,1.0235288091312849,0.09730550692167428 -22055,0.37963808307593383,0.01230479495377233,0.1525306196564299,0.15132910571445435,0.44174410712137313,0.8439739423440618,0.01457282039896661,0.9192901220931069,0.16630377296957227,0.8336168191261495,0.010000191358858813,0.8889187229106361,0.09730550692167428 -22057,0.3937072516871468,0.013875704635925587,0.1615399620721837,0.16167320995073953,0.4417244301440585,0.9524452162793551,0.01457282039896661,0.9735383463184173,0.16630377296957227,0.9558132600051146,0.010000191358858813,0.9695750023811261,0.09730550692167428 -22059,0.4100671030786284,0.015599753063075492,0.17233922015931993,0.17428271403025972,0.4417027620047245,1.0705475963532094,0.01457282039896661,1.0350221011673124,0.16630377296957227,1.0777709820431363,0.010000191358858813,1.0538211129222874,0.09730550692167428 -22061,0.36443015202535434,0.012934314799337739,0.14822103146527507,0.15450545863450488,0.44175556127285903,0.887877005153499,0.01457282039896661,0.893120851280333,0.16630377296957227,0.8925401799177173,0.010000191358858813,0.8702213871090707,0.09730550692167428 -22063,0.3776680014205867,0.01181531660883744,0.14963361096334976,0.14807875021985784,0.44175274752047433,0.8106431702436727,0.01457282039896661,0.9019631254585887,0.16630377296957227,0.7989737909286252,0.010000191358858813,0.8742845325075737,0.09730550692167428 -22065,0.38339980560916587,0.013573480706540686,0.15882358246878148,0.16148359665758832,0.4417324997176072,0.9320196844778045,0.01457282039896661,0.9545348645873701,0.16630377296957227,0.9112037234405195,0.010000191358858813,0.9331461890566863,0.09730550692167428 -22067,0.4118035886938707,0.0168511437684116,0.17718241944702673,0.18281497167050342,0.4416969654256875,1.156002101007395,0.01457282039896661,1.0630402587514478,0.16630377296957227,1.1620804267329103,0.010000191358858813,1.0903381653691362,0.09730550692167428 -22069,0.3846682841348829,0.014431675398444792,0.1594834488966607,0.16544530366122623,0.44173517017842845,0.991046384963006,0.01457282039896661,0.9604871354623785,0.16630377296957227,0.9994342732606344,0.010000191358858813,0.9628731052296646,0.09730550692167428 -22071,0.3973211818012502,0.013562466101849455,0.16331174645966778,0.16031725543957115,0.4417178390407023,0.9305796065066496,0.01457282039896661,0.9814834310187377,0.16630377296957227,0.9226895878272612,0.010000191358858813,0.9654798393624583,0.09730550692167428 -22073,0.38578860874737864,0.013882981218949356,0.15882300271820254,0.16181695694535164,0.4417352084653322,0.953227644293643,0.01457282039896661,0.9551242516760013,0.16630377296957227,0.9558619931167005,0.010000191358858813,0.9502084724029691,0.09730550692167428 -22075,0.38469745914957104,0.012845128422965944,0.15485512931027176,0.15405201622152234,0.4417409425275124,0.8814626439138493,0.01457282039896661,0.9342730587750194,0.16630377296957227,0.8835740532104546,0.010000191358858813,0.9209759950394514,0.09730550692167428 -22077,0.4238113712419591,0.016700601296589727,0.17962637677709467,0.18079178698881698,0.44168809363928524,1.1461054317690902,0.01457282039896661,1.079890086820937,0.16630377296957227,1.170458604026328,0.010000191358858813,1.1233034726396185,0.09730550692167428 -22079,0.40038267168558006,0.014976548544403352,0.16677923910200476,0.16895083861483928,0.4417177551033161,1.0276844559637037,0.01457282039896661,1.0026351255047894,0.16630377296957227,1.0385075186088137,0.010000191358858813,1.0162422053192057,0.09730550692167428 -22081,0.4033857348753875,0.0158729085610031,0.17019066253800047,0.17459781410684638,0.44171229897007513,1.0886490675560867,0.01457282039896661,1.0214103539532404,0.16630377296957227,1.1059246416465918,0.010000191358858813,1.0469973255380929,0.09730550692167428 -22083,0.4038625001694067,0.015304955122922669,0.169586763205823,0.17178143016114844,0.4417112987029026,1.0500884244015216,0.01457282039896661,1.0196267864930633,0.16630377296957227,1.055471799510049,0.010000191358858813,1.034350836397382,0.09730550692167428 -22085,0.4235620543130437,0.01763886503266657,0.1812788951562156,0.18622064608281802,0.44168893773296003,1.2098164418661672,0.01457282039896661,1.0886449901514694,0.16630377296957227,1.2502576410034396,0.010000191358858813,1.1494576010189452,0.09730550692167428 -22087,0.38696503910643143,0.012391968472272814,0.15504705716213185,0.1510713807661936,0.4417361838681222,0.8503473780066291,0.01457282039896661,0.9355898785696647,0.16630377296957227,0.8475330281557721,0.010000191358858813,0.9101343486810525,0.09730550692167428 -22089,0.3855980448268189,0.01225279350602941,0.1545855051524508,0.15178174985008486,0.44173634075847973,0.8407990700990858,0.01457282039896661,0.934468876141145,0.16630377296957227,0.8229599423801663,0.010000191358858813,0.909172524882041,0.09730550692167428 -22091,0.40303331095220485,0.016161610691857384,0.1713592913067904,0.1773986596386284,0.44170936517212284,1.10823969245816,0.01457282039896661,1.028393076950954,0.16630377296957227,1.1199362532897985,0.010000191358858813,1.0540444013132992,0.09730550692167428 -22093,0.4017644123563587,0.0145855307382032,0.16506870039399563,0.1648546452834161,0.4417186813657835,1.0009790994872456,0.01457282039896661,0.9953713697965165,0.16630377296957227,1.0246157546914338,0.010000191358858813,1.0133734998842092,0.09730550692167428 -22095,0.3795707587378242,0.011759619421028433,0.15046759863607856,0.14792898847603828,0.4417480907239161,0.8067127296631089,0.01457282039896661,0.9084249771927342,0.16630377296957227,0.7924213224770522,0.010000191358858813,0.8824912798759277,0.09730550692167428 -22097,0.39685592884300563,0.015132492978579179,0.16646177972381032,0.1706893602665861,0.4417213779000968,1.0389101697164485,0.01457282039896661,1.0005749064806981,0.16630377296957227,1.043460433882818,0.010000191358858813,1.0137202507147882,0.09730550692167428 -22099,0.39181157470427586,0.013465799048286056,0.15931603116000168,0.1588722095917778,0.44173224548300916,0.9247680356082358,0.01457282039896661,0.9603671809241145,0.16630377296957227,0.9267972504219761,0.010000191358858813,0.9557179147518146,0.09730550692167428 -22101,0.3975190186378409,0.01444760798245935,0.16474609137300478,0.16573657490311838,0.4417197932889072,0.9913198081808745,0.01457282039896661,0.9916718818238659,0.16630377296957227,0.99431536786429775,0.010000191358858813,0.9950207299016152,0.09730550692167428 -22103,0.40584945429383884,0.014451289037062666,0.16787388249618274,0.16654985414929396,0.4417110319390869,0.9919636318691649,0.01457282039896661,1.009376534039891,0.16630377296957227,0.9899091764720245,0.010000191358858813,1.0172766848285961,0.09730550692167428 -22105,0.38449423308270786,0.01319301657446192,0.15613280072819535,0.15749416789728699,0.4417394786220943,0.905886107480846,0.01457282039896661,0.940007376578659,0.16630377296957227,0.9040129804750907,0.010000191358858813,0.9295888802046621,0.09730550692167428 -22107,0.4285273469647767,0.017952804473096,0.18297728475615083,0.18684932328326131,0.4416898322997027,1.231110299444115,0.01457282039896661,1.096911034420294,0.16630377296957227,1.2844011680604153,0.010000191358858813,1.1667869797901682,0.09730550692167428 -22109,0.3855160723654504,0.012884123591189595,0.1557489587907062,0.15528240060429427,0.44173835811986556,0.8844655562247143,0.01457282039896661,0.9390377822202371,0.16630377296957227,0.8796376908034672,0.010000191358858813,0.9232325864723345,0.09730550692167428 -22111,0.4235944546511131,0.017270642977053392,0.18137367033832136,0.1837079711789696,0.4416858054982067,1.1842998842803043,0.01457282039896661,1.0888438872815898,0.16630377296957227,1.2143742367625008,0.010000191358858813,1.135911105272457,0.09730550692167428 -22113,0.3955850857978377,0.014670845242490568,0.16422171406738822,0.16629352409676704,0.4417242449596803,1.007014710015949,0.01457282039896661,0.9886249961872131,0.16630377296957227,1.0181161791479854,0.010000191358858813,0.9956208787004673,0.09730550692167428 -22115,0.36049562642039373,0.01105479107649927,0.14127992710277396,0.14206116835290644,0.4417757417123424,0.7588740197855728,0.01457282039896661,0.8496221488991559,0.16630377296957227,0.7526893374511763,0.010000191358858813,0.808457316624978,0.09730550692167428 -22117,0.4118356605135306,0.016156845429693444,0.1743807271020425,0.1776786774597811,0.44170248632940057,1.1085729104517794,0.01457282039896661,1.0472810174396896,0.16630377296957227,1.1209490944370346,0.010000191358858813,1.0761327241360301,0.09730550692167428 -22119,0.42128906528252896,0.017558450066721083,0.18180959816501835,0.18661981711197115,0.44168630574037526,1.204000347854846,0.01457282039896661,1.0916262741262182,0.16630377296957227,1.2259472165912775,0.010000191358858813,1.1350466106126962,0.09730550692167428 -22121,0.3894898672571032,0.012833138992701526,0.1569641181445263,0.15420451592600173,0.44173298515620485,0.8807645287495556,0.01457282039896661,0.9478778482445018,0.16630377296957227,0.8805938195717529,0.010000191358858813,0.9319457594722864,0.09730550692167428 -22123,0.4102435773726034,0.017081178538861437,0.17778507592259105,0.1849213937218595,0.4416937090854714,1.1720489635146791,0.01457282039896661,1.0679189822448674,0.16630377296957227,1.1753144512565723,0.010000191358858813,1.0918455928476858,0.09730550692167428 -22125,0.4255998246030599,0.01270254586775969,0.171021019392472,0.15318159261952932,0.4416808490328725,0.8695486910874974,0.01457282039896661,1.034627075501306,0.16630377296957227,0.8609145658406041,0.010000191358858813,1.0125307939430865,0.09730550692167428 -22127,0.415507494012339,0.01577658388543611,0.17551674902358688,0.17504329907567334,0.4416963886875823,1.082273772872826,0.01457282039896661,1.054417148649001,0.16630377296957227,1.0879514877313068,0.010000191358858813,1.0701297050592546,0.09730550692167428 -23001,0.4128909634864564,0.015652852007198268,0.17464465998044928,0.17462901168561662,0.4416958083574531,1.0737227079036,0.01457282039896661,1.0502070844779645,0.16630377296957227,1.073493534850921,0.010000191358858813,1.0610183459247415,0.09730550692167428 -23003,0.44754178366217123,0.019518534804096845,0.19732320658832986,0.20001437159418872,0.44163957397675296,1.3398833922330353,0.01457282039896661,1.1844031026946649,0.16630377296957227,1.3707425109603393,0.010000191358858813,1.253795006813443,0.09730550692167428 -23005,0.41960110826116404,0.01596003455794861,0.17805523425299113,0.17652463045701433,0.4416844529470298,1.0947999346745378,0.01457282039896661,1.0708792797636844,0.16630377296957227,1.0972297324794225,0.010000191358858813,1.0858422572674673,0.09730550692167428 -23007,0.4307163664615728,0.017659633706070876,0.18540599791841528,0.18758774544080173,0.4416704269779644,1.2119102501907257,0.01457282039896661,1.1138478221259973,0.16630377296957227,1.2371349284754203,0.010000191358858813,1.1643599282724302,0.09730550692167428 -23009,0.45184571164705833,0.01920345738069724,0.1993290840237964,0.2000334932889009,0.44162800786337203,1.3190927779437978,0.01457282039896661,1.197385268823039,0.16630377296957227,1.3297783679502895,0.010000191358858813,1.2552731669970947,0.09730550692167428 -23011,0.42848638508543135,0.01699789696783551,0.1840154989533584,0.18367518521032175,0.44167108973160596,1.1656394722072116,0.01457282039896661,1.1059242377015277,0.16630377296957227,1.174097206220687,0.010000191358858813,1.1383182496586346,0.09730550692167428 -23013,0.455135736540822,0.02021893345794799,0.2027507600008413,0.20603497454942604,0.4416243507953541,1.388056861147744,0.01457282039896661,1.2167056092049826,0.16630377296957227,1.4104773396522041,0.010000191358858813,1.2883760684764634,0.09730550692167428 -23015,0.46872207813905453,0.02194353533251535,0.21130736195807567,0.21769622023998186,0.44160447718360063,1.5064871636109505,0.01457282039896661,1.2690980392622153,0.16630377296957227,1.54345043051957,0.010000191358858813,1.368614111740457,0.09730550692167428 -23017,0.4375859531832822,0.018169337720071656,0.19028166547862674,0.19089286720085286,0.44165529927814196,1.2469144262007492,0.01457282039896661,1.1431676783292501,0.16630377296957227,1.2683122667629239,0.010000191358858813,1.1950670764784155,0.09730550692167428 -23019,0.41578064051219177,0.015831256286596852,0.17551425406428975,0.17465313804626903,0.4416915186426519,1.0862430371655278,0.01457282039896661,1.0559916458973988,0.16630377296957227,1.099202479079445,0.010000191358858813,1.0742724642981831,0.09730550692167428 -23021,0.46755375671314164,0.02101362917550343,0.20776569855788093,0.21033025545271058,0.44161170621926804,1.4432072624420846,0.01457282039896661,1.2469108375715092,0.16630377296957227,1.4858341066013105,0.010000191358858813,1.3446567934015414,0.09730550692167428 -23023,0.4335055127098676,0.01697668924826086,0.18574425214820883,0.18395308335957314,0.44166674335309086,1.1642399510104253,0.01457282039896661,1.116437999921342,0.16630377296957227,1.1699750702224385,0.010000191358858813,1.150119729522466,0.09730550692167428 -23025,0.4359935777978238,0.017600990039829414,0.18801251648878037,0.18788627994906326,0.4416624191248103,1.2073828904883062,0.01457282039896661,1.1298335259428236,0.16630377296957227,1.2212424343890858,0.010000191358858813,1.1744851761046162,0.09730550692167428 -23027,0.43978449137970643,0.017732237087128865,0.18882299401206581,0.18798831113929043,0.4416606358817168,1.2165272264879403,0.01457282039896661,1.1341423103605501,0.16630377296957227,1.2414237611384298,0.010000191358858813,1.1880848914670816,0.09730550692167428 -23029,0.45387033830563506,0.020065160559367717,0.2003005044150401,0.20345886542378194,0.4416337144055815,1.3776092412989192,0.01457282039896661,1.2018339869418417,0.16630377296957227,1.4179878428519679,0.010000191358858813,1.2853455131400637,0.09730550692167428 -23031,0.4297065642695864,0.016764148133364694,0.18347869389167792,0.18183729953264977,0.44167134554228427,1.1497237243209288,0.01457282039896661,1.1032817066855882,0.16630377296957227,1.1602243413909041,0.010000191358858813,1.1354426292998285,0.09730550692167428 -24001,0.4306077985516127,0.018625513494950188,0.18907910124416655,0.19419043960844207,0.4416597453634604,1.2786476348482627,0.01457282039896661,1.1363474144419674,0.16630377296957227,1.3018365925278221,0.010000191358858813,1.1811474398101538,0.09730550692167428 -24003,0.4039258751743928,0.013758472705838153,0.1653368797672176,0.16131780464264228,0.4417132226120437,0.944239307159509,0.01457282039896661,0.9969851546607109,0.16630377296957227,0.94185412384788,0.010000191358858813,0.9905089873550046,0.09730550692167428 -24005,0.4125508625350255,0.01627436052556539,0.17696389960748263,0.17909517597928226,0.4416914258109842,1.1165801996194316,0.01457282039896661,1.062596779583823,0.16630377296957227,1.1150608432761275,0.010000191358858813,1.0746302871838371,0.09730550692167428 -24009,0.3954067636974893,0.01277584387421377,0.1596639302650038,0.15557503655303706,0.44172286390587723,0.8765941320856755,0.01457282039896661,0.9666017645394234,0.16630377296957227,0.8589875578763111,0.010000191358858813,0.9496583100521225,0.09730550692167428 -24011,0.40385235320587043,0.014739351664030058,0.16763641398620843,0.16804890858361227,0.44171295907287444,1.011723185907866,0.01457282039896661,1.007894187662575,0.16630377296957227,1.0153204071144852,0.010000191358858813,1.0180216093600407,0.09730550692167428 -24013,0.40628104861381487,0.014708979989570966,0.16923821064806024,0.16820634722467945,0.44170472284518947,1.008936051091255,0.01457282039896661,1.0194473352716007,0.16630377296957227,1.0049728100986717,0.010000191358858813,1.0252150786708452,0.09730550692167428 -24015,0.39790598301865704,0.013511064857267904,0.16227104761635333,0.1596495047922819,0.44172069309889145,0.9272938094891404,0.01457282039896661,0.9791748544084595,0.16630377296957227,0.9225197305612738,0.010000191358858813,0.9728628433600898,0.09730550692167428 -24017,0.38309156763795926,0.011476400338759732,0.15107622331447423,0.14559423735447405,0.4417427738031984,0.7874049381825461,0.01457282039896661,0.9141074056136815,0.16630377296957227,0.772453776095626,0.010000191358858813,0.881109769874419,0.09730550692167428 -24019,0.4367325686222985,0.018496664131421557,0.1911756136268406,0.19469177817351174,0.4416574861857667,1.2693131128939714,0.01457282039896661,1.1479001977580663,0.16630377296957227,1.2813017366347599,0.010000191358858813,1.1984711463927118,0.09730550692167428 -24021,0.3946959188854663,0.013085397534662818,0.16033863537082405,0.15707229191433053,0.44172377932596074,0.897853189896519,0.01457282039896661,0.9681252447515963,0.16630377296957227,0.885628985040843,0.010000191358858813,0.9512042949027951,0.09730550692167428 -24023,0.4313874393614656,0.018062397124354652,0.1874498545983354,0.19081004117276748,0.4416674442606421,1.2392941250671425,0.01457282039896661,1.1251080770322521,0.16630377296957227,1.2581793459025992,0.010000191358858813,1.1744505626813573,0.09730550692167428 -24025,0.40325133135498076,0.01404106523689818,0.16570564951004402,0.1630677280915635,0.44171322300972815,0.9635465531744898,0.01457282039896661,0.9997187128446527,0.16630377296957227,0.963338466613565,0.010000191358858813,0.9998765448775544,0.09730550692167428 -24027,0.39370481575680355,0.012229078667936679,0.1572281609679474,0.151255559514,0.4417285492628546,0.839203516248208,0.01457282039896661,0.9505121280656998,0.16630377296957227,0.8230819366665982,0.010000191358858813,0.9277266332559981,0.09730550692167428 -24029,0.4502066566964883,0.021343582740628603,0.2031370249874611,0.21329018875226896,0.44162671169607864,1.4650540416499158,0.01457282039896661,1.2213061423065255,0.16630377296957227,1.5005072508391497,0.010000191358858813,1.305645101564168,0.09730550692167428 -24031,0.40474435814608267,0.014350358938354917,0.1682380393678617,0.16590638467650837,0.44170886946159016,0.9844876699792398,0.01457282039896661,1.0118874578372479,0.16630377296957227,0.9751808166390554,0.010000191358858813,1.0058682034919122,0.09730550692167428 -24033,0.381627713454909,0.011430872638984403,0.15031315097108183,0.14509982653794495,0.4417446931300447,0.7845883925513324,0.01457282039896661,0.9073228257045979,0.16630377296957227,0.7734354923695073,0.010000191358858813,0.8737521298298638,0.09730550692167428 -24035,0.4228126450566102,0.01588586569525552,0.17775351282649038,0.1755578986427547,0.4416881876873725,1.0894974597410092,0.01457282039896661,1.0699700519453805,0.16630377296957227,1.1003305234666763,0.010000191358858813,1.098056815482654,0.09730550692167428 -24037,0.3834227048486381,0.012264163613590614,0.15328127060560015,0.15073613234005923,0.44174110294357366,0.8411227285059535,0.01457282039896661,0.9264919173192162,0.16630377296957227,0.8330292563720545,0.010000191358858813,0.9020152826520988,0.09730550692167428 -24039,0.4021952135895741,0.014910338687528543,0.16846535245411814,0.1696190412898722,0.4417055043245552,1.0235275842133018,0.01457282039896661,1.012220538310942,0.16630377296957227,1.026257008327251,0.010000191358858813,1.0151749102559564,0.09730550692167428 -24041,0.46912319685947457,0.02311507056263685,0.2135572652749428,0.2240132492548444,0.4416055540032914,1.5862865371806767,0.01457282039896661,1.281964394545197,0.16630377296957227,1.6438949042640054,0.010000191358858813,1.3984617721990396,0.09730550692167428 -24043,0.4113538209428309,0.01564194127003566,0.17439603967285042,0.174400335379393,0.441696819177593,1.0730970638207933,0.01457282039896661,1.0482250128314272,0.16630377296957227,1.071926944252049,0.010000191358858813,1.055420648253709,0.09730550692167428 -24045,0.3954180011072127,0.014568837118239555,0.16470285495475664,0.16694961879094994,0.4417183499907773,1.0000312164492033,0.01457282039896661,0.9908318188209632,0.16630377296957227,1.0014643924999973,0.010000191358858813,0.9906968181801807,0.09730550692167428 -24047,0.474374063983907,0.022660958724003713,0.2138264809717359,0.22061254883011558,0.44159955214183044,1.5557915902641284,0.01457282039896661,1.283808100922828,0.16630377296957227,1.6180641038868948,0.010000191358858813,1.4028908047018687,0.09730550692167428 -24510,0.3911618344074165,0.013600124059702371,0.16102897616001083,0.16022847326632367,0.4417247922751054,0.9337577323808843,0.01457282039896661,0.9679933011217675,0.16630377296957227,0.9282554856498563,0.010000191358858813,0.9497027813260209,0.09730550692167428 -25001,0.4826191489692725,0.024453230056154247,0.22295786407820173,0.23283367936594396,0.4415779675046989,1.6780387240085883,0.01457282039896661,1.3377055037822436,0.16630377296957227,1.7389097909066926,0.010000191358858813,1.4681621514199628,0.09730550692167428 -25003,0.4422812171745645,0.019622809332131487,0.19681404822701315,0.20218551987614292,0.4416412670824783,1.346635845496982,0.01457282039896661,1.1815992205416543,0.16630377296957227,1.3638201671255341,0.010000191358858813,1.2403775782230988,0.09730550692167428 -25005,0.4113548641613961,0.015786113518287383,0.1748826087710013,0.17586366538549963,0.4416948396452465,1.0827641577428322,0.01457282039896661,1.0510793117610135,0.16630377296957227,1.0796183601896163,0.010000191358858813,1.0595773580520866,0.09730550692167428 -25007,0.44331750882583154,0.018128439727442294,0.1925074596494855,0.19294893193246848,0.44164687352448206,1.2443809284342309,0.01457282039896661,1.1567709118145764,0.16630377296957227,1.2523576069993845,0.010000191358858813,1.2069001499889875,0.09730550692167428 -25009,0.41315282116686114,0.015977049272578776,0.17605864488217676,0.177073452853387,0.4416924176822765,1.0956305016431638,0.01457282039896661,1.0585883779437133,0.16630377296957227,1.0923054550674758,0.010000191358858813,1.0710991184296443,0.09730550692167428 -25011,0.4375027127401566,0.017456304157399287,0.18926207399885536,0.18762635597153446,0.4416544844233249,1.1974862603026808,0.01457282039896661,1.136898513298933,0.16630377296957227,1.2000033687269047,0.010000191358858813,1.1723150343834041,0.09730550692167428 -25013,0.40424914560464126,0.01578692446557435,0.17257253922150964,0.1761324694334459,0.44170209742202227,1.0825628120388417,0.01457282039896661,1.036052335415972,0.16630377296957227,1.0755496758241647,0.010000191358858813,1.0437140112380945,0.09730550692167428 -25015,0.39706799318879993,0.014581332858959184,0.1668842768108571,0.16801687726703052,0.4417067524393615,1.000720817994258,0.01457282039896661,1.0035627109559169,0.16630377296957227,0.992184472409064,0.010000191358858813,0.9941009307648142,0.09730550692167428 -25017,0.4085055704004452,0.014952130199197989,0.17148340669029524,0.16973005916342848,0.4417000189432021,1.0258114902253213,0.01457282039896661,1.0315004447853577,0.16630377296957227,1.0210334631145992,0.010000191358858813,1.02786021756295,0.09730550692167428 -25019,0.41579116262131277,0.014006919282185462,0.17210565859123056,0.16347904880954217,0.44169446722281647,0.9597235347708055,0.01457282039896661,1.0341006932907977,0.16630377296957227,0.9414865242770694,0.010000191358858813,1.0144432083736117,0.09730550692167428 -25021,0.4164224524267739,0.016134327171720947,0.17794330852437318,0.1782809464119548,0.4416880211305817,1.1063597364021356,0.01457282039896661,1.0694347896263752,0.16630377296957227,1.1018037581440792,0.010000191358858813,1.0815336286314858,0.09730550692167428 -25023,0.4134623255866471,0.015441311502668168,0.17374070297265587,0.17325822456779166,0.44169698205735675,1.0591627385711604,0.01457282039896661,1.0460993848950437,0.16630377296957227,1.0600817606713129,0.010000191358858813,1.0614422894806157,0.09730550692167428 -25025,0.37784440978075984,0.012251582601467442,0.15297047341939346,0.15062826610888064,0.44173713623187466,0.8402858449993618,0.01457282039896661,0.9196662603977784,0.16630377296957227,0.8291051775894167,0.010000191358858813,0.871626528713594,0.09730550692167428 -25027,0.40274020636986035,0.014657689121347035,0.16882767483777866,0.16838725224997214,0.44170639807127826,1.005601876973011,0.01457282039896661,1.0159402590906503,0.16630377296957227,0.9936083078819682,0.010000191358858813,1.0106725760332052,0.09730550692167428 -26001,0.5243518506577193,0.028360259568910622,0.24507364435355422,0.25757093419825594,0.4415262164413322,1.947768602526347,0.01457282039896661,1.4711117794869302,0.16630377296957227,2.063171646946834,0.010000191358858813,1.6807766662909132,0.09730550692167428 -26003,0.4672052885236187,0.021171160485313638,0.21049321260317394,0.21387677920516754,0.4415995640122783,1.4538742784802348,0.01457282039896661,1.2642188197415798,0.16630377296957227,1.4704446511859013,0.010000191358858813,1.3402382633912615,0.09730550692167428 -26005,0.4011998729202354,0.014307064245079416,0.16558079854512306,0.16495231936265115,0.4417174951297692,0.9818295456094214,0.01457282039896661,0.9963519723268588,0.16630377296957227,0.9828570908663203,0.010000191358858813,1.002673155465481,0.09730550692167428 -26007,0.44598210725283643,0.019919932826219865,0.19839109792620985,0.20338730597044352,0.4416391318556129,1.3673525813731608,0.01457282039896661,1.1905235793348412,0.16630377296957227,1.3930705053104786,0.010000191358858813,1.2609908691183607,0.09730550692167428 -26009,0.4603949934777569,0.02142522920540984,0.2063232114840999,0.21269281878772722,0.4416213419415319,1.4705617064313459,0.01457282039896661,1.2384695763625047,0.16630377296957227,1.5169600723052314,0.010000191358858813,1.338904212471233,0.09730550692167428 -26011,0.45871023965864793,0.020815813847408784,0.20389768591126312,0.20879506950818152,0.44162371712142556,1.4290892110557807,0.01457282039896661,1.2243688929859453,0.16630377296957227,1.4737633728051487,0.010000191358858813,1.3151541353432616,0.09730550692167428 -26013,0.44170136778705543,0.01785835489778507,0.19099832500480557,0.1896134516294466,0.4416509872507681,1.225975142455889,0.01457282039896661,1.146643030664141,0.16630377296957227,1.2412760803825598,0.010000191358858813,1.1894762863040036,0.09730550692167428 -26015,0.41538736305180596,0.015575932956614191,0.17392942114519463,0.17325763508845923,0.44169980225752314,1.0683233745099432,0.01457282039896661,1.0450520979693063,0.16630377296957227,1.0809192561310772,0.010000191358858813,1.0707673289021125,0.09730550692167428 -26017,0.4236644370036392,0.017394863815087338,0.18405067652728357,0.18713505223806506,0.44167651778044115,1.192931767251012,0.01457282039896661,1.10493768051204,0.16630377296957227,1.1953059597512796,0.010000191358858813,1.1358473063968297,0.09730550692167428 -26019,0.45093697677468314,0.020339600132568546,0.19991120338167462,0.2054616545618553,0.44163913721594483,1.3960826255405918,0.01457282039896661,1.1994570074177073,0.16630377296957227,1.4372988084364224,0.010000191358858813,1.2835986349070116,0.09730550692167428 -26021,0.41999017756239737,0.017255886656913494,0.18128641443996552,0.18521734079200727,0.44168568602240094,1.1833703749844315,0.01457282039896661,1.0879121531533462,0.16630377296957227,1.1960647022967903,0.010000191358858813,1.124232866719518,0.09730550692167428 -26023,0.4144740670824746,0.015695365341694384,0.17429822009581314,0.17406898226688572,0.4416985788475506,1.0768699386095513,0.01457282039896661,1.0479247272353636,0.16630377296957227,1.0875385113394378,0.010000191358858813,1.0681984896153183,0.09730550692167428 -26025,0.40946321490403126,0.016079333173068755,0.17404403829717707,0.17696640603656283,0.44170064834782025,1.1028997865649233,0.01457282039896661,1.044909313634852,0.16630377296957227,1.1107750963656102,0.010000191358858813,1.0664892443820366,0.09730550692167428 -26027,0.42731990699224714,0.017236832180003155,0.183280712478554,0.18490807936550674,0.4416785735536545,1.1823314786881651,0.01457282039896661,1.1005384750452634,0.16630377296957227,1.200599652372477,0.010000191358858813,1.1457127599656156,0.09730550692167428 -26029,0.4432599934964649,0.018851493544440816,0.19341684571666984,0.19544078697804654,0.44165198034873476,1.2941752615195803,0.01457282039896661,1.161168402845774,0.16630377296957227,1.3244125084779,0.010000191358858813,1.229343499846887,0.09730550692167428 -26031,0.45837600508807624,0.02091797211615129,0.2036594607283872,0.2091205810761874,0.4416276002568077,1.4360652206568938,0.01457282039896661,1.222121003513509,0.16630377296957227,1.4851595848596095,0.010000191358858813,1.319111492021651,0.09730550692167428 -26033,0.417710597777441,0.015453178842092252,0.17531382228333783,0.17231676534369045,0.4416905570488253,1.0604844280853802,0.01457282039896661,1.053787649167874,0.16630377296957227,1.070905733839005,0.010000191358858813,1.0649189634251424,0.09730550692167428 -26035,0.4524576411069506,0.020210256999181404,0.19866633249372578,0.20370726347380638,0.44164111828197805,1.3873287878680671,0.01457282039896661,1.1923900851439595,0.16630377296957227,1.4425023221472868,0.010000191358858813,1.2871770988961175,0.09730550692167428 -26037,0.40116672378454676,0.014343980066527724,0.16539796392490663,0.16476069241125704,0.4417159159073265,0.9838714570051225,0.01457282039896661,0.9969203903369606,0.16630377296957227,0.9897903875028542,0.010000191358858813,1.0022856471654638,0.09730550692167428 -26039,0.45918737501211004,0.020394414962558352,0.20276556724040107,0.20559163386160623,0.4416260915392132,1.4004247333145736,0.01457282039896661,1.216795333826739,0.16630377296957227,1.446123082456194,0.010000191358858813,1.3100694926026952,0.09730550692167428 -26041,0.44354023644773916,0.019813970686162072,0.19772680948144666,0.20344765151476585,0.44164305477540666,1.3592448786157605,0.01457282039896661,1.1867236211832841,0.16630377296957227,1.375530040637685,0.010000191358858813,1.2509650225236362,0.09730550692167428 -26043,0.4435905519032066,0.020168412226996703,0.1991034329875509,0.20508369699592005,0.4416390514653161,1.3836738236146848,0.01457282039896661,1.193465679396315,0.16630377296957227,1.4057195255726178,0.010000191358858813,1.2610869227623682,0.09730550692167428 -26045,0.41184917608027394,0.015470005193124666,0.17332270016994844,0.17311088278118775,0.44169841704276325,1.0614721071655615,0.01457282039896661,1.0419545448184966,0.16630377296957227,1.0658805097077253,0.010000191358858813,1.0574061194564726,0.09730550692167428 -26047,0.43061148973152075,0.01770657684210427,0.18591157276868162,0.18791763866329814,0.44167095212071295,1.2147724155325095,0.01457282039896661,1.1161978466914542,0.16630377296957227,1.236464034267704,0.010000191358858813,1.1652549160631827,0.09730550692167428 -26049,0.40217923434677577,0.01484284991220285,0.16738883334311747,0.16830388944036387,0.4417140563769147,1.0183940924604917,0.01457282039896661,1.0064540494383665,0.16630377296957227,1.0250936079355006,0.010000191358858813,1.0165134626492427,0.09730550692167428 -26051,0.4656871454133069,0.021656236707803807,0.20742558274996067,0.21381089388182362,0.4416188092667882,1.486804702231192,0.01457282039896661,1.245124284078738,0.16630377296957227,1.5470920928137573,0.010000191358858813,1.3595246549311062,0.09730550692167428 -26053,0.4646449765760248,0.022384836873830728,0.21257581751593554,0.21998563448917946,0.4415999225839915,1.5363474325380053,0.01457282039896661,1.275485311035087,0.16630377296957227,1.5729673593884423,0.010000191358858813,1.3641745893901982,0.09730550692167428 -26055,0.419521724601931,0.01643794485234093,0.17996440011400183,0.1803886038409307,0.4416848588996808,1.1270738008355026,0.01457282039896661,1.0803553840212587,0.16630377296957227,1.1245739985365677,0.010000191358858813,1.0996695609834262,0.09730550692167428 -26057,0.4051287352223537,0.01580550567268133,0.1721116785548726,0.17545603233735735,0.44170290302303916,1.08408740778829,0.01457282039896661,1.0336847280041335,0.16630377296957227,1.0884163871025168,0.010000191358858813,1.0455729675907586,0.09730550692167428 -26059,0.41651940442853297,0.01654647283110919,0.17676953505480061,0.17976989775539262,0.4416948633668714,1.1352130342987605,0.01457282039896661,1.06185814813138,0.16630377296957227,1.156468718483176,0.010000191358858813,1.1000365879117768,0.09730550692167428 -26061,0.3931747836704942,0.015892277661339015,0.16767440885796936,0.1761165902742241,0.44171393268044,1.0902404624908049,0.01457282039896661,1.0080970193950036,0.16630377296957227,1.098332991680627,0.010000191358858813,1.0199439816428748,0.09730550692167428 -26063,0.45573125350046984,0.021664915208967465,0.20665043801433208,0.21528449701332555,0.4416210604921923,1.4864458608550133,0.01457282039896661,1.2397797884403077,0.16630377296957227,1.5197310014680765,0.010000191358858813,1.329690768715754,0.09730550692167428 -26065,0.3738649252659182,0.012231077793504297,0.1509615093518526,0.1511031004528835,0.44174482749367744,0.838734637001656,0.01457282039896661,0.9079778942869741,0.16630377296957227,0.8258398880432627,0.010000191358858813,0.8723605840070379,0.09730550692167428 -26067,0.39219217105646653,0.013061074731356991,0.15884004884568814,0.15631896222164898,0.44172824703388175,0.896491899390621,0.01457282039896661,0.957880501665324,0.16630377296957227,0.8926503915876762,0.010000191358858813,0.9416344229806818,0.09730550692167428 -26069,0.48853022170015803,0.024803809701447056,0.2246168808237582,0.2352535198380855,0.44157221725657936,1.7029607291169748,0.01457282039896661,1.349290985879815,0.16630377296957227,1.7763703609007968,0.010000191358858813,1.4972290937756845,0.09730550692167428 -26071,0.49228893611706503,0.02597742061437377,0.23181109819773835,0.24493925384224396,0.4415558085149023,1.7832793314917792,0.01457282039896661,1.391670741906791,0.16630377296957227,1.8355312853491519,0.010000191358858813,1.5320684195601562,0.09730550692167428 -26073,0.3501870480999636,0.010980143178521164,0.13841664117599436,0.14245131484018766,0.44176975388774953,0.7531569573742777,0.01457282039896661,0.835345765477866,0.16630377296957227,0.7382146720492148,0.010000191358858813,0.7800826077655123,0.09730550692167428 -26075,0.41013090096964333,0.015486803670157262,0.17294580269677895,0.1735600312870314,0.4416993092519663,1.0625804966684105,0.01457282039896661,1.0396875236210117,0.16630377296957227,1.0621980266205955,0.010000191358858813,1.0510561037502688,0.09730550692167428 -26077,0.388106090358018,0.013877611662338411,0.16053406993232827,0.1621554062324379,0.44172723318760454,0.9525094894350219,0.01457282039896661,0.9655713841471925,0.16630377296957227,0.948551617426399,0.010000191358858813,0.9524967923717298,0.09730550692167428 -26079,0.43413945865200837,0.017442997456442635,0.1852065160659121,0.1855172948412473,0.4416698602366418,1.19688882981266,0.01457282039896661,1.1140104222555842,0.16630377296957227,1.227903476376188,0.010000191358858813,1.167689650314386,0.09730550692167428 -26081,0.3799187220702748,0.01286017453080289,0.15485864146008557,0.15595213110487455,0.44174184136719274,0.8828219384899674,0.01457282039896661,0.9319297168182423,0.16630377296957227,0.866936982834249,0.010000191358858813,0.9057664460570876,0.09730550692167428 -26083,0.4935236416950503,0.02530651774682932,0.2248604151617638,0.2373486142519653,0.4415820899067158,1.736881610044099,0.01457282039896661,1.3483414382890584,0.16630377296957227,1.8376732929831192,0.010000191358858813,1.5284399164502225,0.09730550692167428 -26085,0.46972531791224126,0.02236853842922184,0.21020571764311577,0.21838725614008406,0.4416118016087952,1.5360474627382774,0.01457282039896661,1.261320292708982,0.16630377296957227,1.6058448570770696,0.010000191358858813,1.3922506850153993,0.09730550692167428 -26087,0.4101753011396344,0.014555358160161161,0.16984046384551604,0.16707418133195714,0.4417028072327803,0.9982177677960774,0.01457282039896661,1.0222603638158267,0.16630377296957227,0.9972998626495533,0.010000191358858813,1.0336032156689203,0.09730550692167428 -26089,0.47525194498970025,0.022773406937132486,0.21509526898415643,0.22261860259869187,0.4415985436548564,1.5626228428134588,0.01457282039896661,1.2909062970094212,0.16630377296957227,1.6129719249669634,0.010000191358858813,1.4129287222839773,0.09730550692167428 -26091,0.4110831567150659,0.015696647218231333,0.17427829092463132,0.17546579173506194,0.4416975892086268,1.0769596329476931,0.01457282039896661,1.0471992016010723,0.16630377296957227,1.0736179419771787,0.010000191358858813,1.0608863193484774,0.09730550692167428 -26093,0.40349320487223705,0.013489437678440278,0.1645980202709902,0.16010578739542772,0.44171369343482125,0.9252722911451219,0.01457282039896661,0.9947501048294478,0.16630377296957227,0.913768799815662,0.010000191358858813,0.9892221271573042,0.09730550692167428 -26095,0.4475917133959464,0.017819707565653757,0.1932015974947203,0.18990838676541616,0.44164349210289205,1.2228083447649356,0.01457282039896661,1.1588223167798364,0.16630377296957227,1.232012468887421,0.010000191358858813,1.1988745139586965,0.09730550692167428 -26097,0.4740533482637806,0.021906947430755837,0.21159234587614725,0.21550124875117432,0.44160263468533567,1.5047440416234137,0.01457282039896661,1.2695450784772806,0.16630377296957227,1.5639795205875267,0.010000191358858813,1.3858429746893566,0.09730550692167428 -26099,0.41220375577329754,0.015715062437489727,0.17471981771331996,0.17481933953775958,0.44169556666554055,1.0779522958007783,0.01457282039896661,1.0500432423887451,0.16630377296957227,1.0784831099422325,0.010000191358858813,1.0603598660511135,0.09730550692167428 -26101,0.46005523967512363,0.02094632486699946,0.20579280517100146,0.2102440472324819,0.4416178114796786,1.4376990012655688,0.01457282039896661,1.235650239907651,0.16630377296957227,1.472090966762826,0.010000191358858813,1.3217681429179067,0.09730550692167428 -26103,0.41771956452303804,0.01628604870802713,0.1784855418436228,0.1789956072923809,0.4416834206419705,1.11753732708309,0.01457282039896661,1.0723397129866763,0.16630377296957227,1.1225319074020552,0.010000191358858813,1.0909839117654228,0.09730550692167428 -26105,0.4438884481850183,0.019513651730602537,0.19541671885630932,0.2005154117248965,0.44164764555281755,1.338909795646474,0.01457282039896661,1.1731551632093127,0.16630377296957227,1.3685040006585942,0.010000191358858813,1.246196000575999,0.09730550692167428 -26107,0.3946554149351155,0.01576623134885899,0.16618700976082645,0.1741278223364453,0.44171745727685735,1.0818404621810331,0.01457282039896661,0.9994902370631816,0.16630377296957227,1.1058137047492438,0.010000191358858813,1.0246622320758527,0.09730550692167428 -26109,0.4492491105541506,0.01990199592956378,0.19974060708628827,0.20321674127796147,0.44163534845891583,1.3657418300367354,0.01457282039896661,1.1981606516304368,0.16630377296957227,1.3900594705151528,0.010000191358858813,1.269952432519052,0.09730550692167428 -26111,0.40866793353430886,0.01580536925244655,0.17361613842941753,0.17578122832617232,0.44169959968246975,1.083850036778991,0.01457282039896661,1.0435394779223284,0.16630377296957227,1.0824732482841704,0.010000191358858813,1.0577378029723201,0.09730550692167428 -26113,0.42712781961925805,0.017926489935356126,0.18483994893174915,0.18970053559699135,0.4416786259359649,1.22948411738147,0.01457282039896661,1.1097602370586235,0.16630377296957227,1.2524081750102316,0.010000191358858813,1.1635633476655145,0.09730550692167428 -26115,0.40778658513034055,0.014911508519245453,0.1703437630039174,0.16971299755464664,0.44170382778727496,1.0229519662951607,0.01457282039896661,1.0243746839581975,0.16630377296957227,1.0202416330787796,0.010000191358858813,1.0319718807428644,0.09730550692167428 -26117,0.40739878396630785,0.015362664434806082,0.17050390423182518,0.17154829444561168,0.44170568141591593,1.0541408490823312,0.01457282039896661,1.0257710598027727,0.16630377296957227,1.06674651247529,0.010000191358858813,1.0430492569186005,0.09730550692167428 -26119,0.5025777448768096,0.025920822300819955,0.23214007179111237,0.24173961957766282,0.4415540679016537,1.7794107651689575,0.01457282039896661,1.3934899367977227,0.16630377296957227,1.8669820008935472,0.010000191358858813,1.5591259255909904,0.09730550692167428 -26121,0.4019312449114425,0.014893427712050638,0.16797179102341203,0.16925221587498077,0.441712432181491,1.0220415122215125,0.01457282039896661,1.0101380594209899,0.16630377296957227,1.022322433493968,0.010000191358858813,1.0172612632246532,0.09730550692167428 -26123,0.4133258204180551,0.016060065595050188,0.1745667477273857,0.17694568623894916,0.441698943975453,1.1019984301704449,0.01457282039896661,1.0491982415532963,0.16630377296957227,1.1152108305799464,0.010000191358858813,1.0797443518562688,0.09730550692167428 -26125,0.41087432292950155,0.014945671996235359,0.17214039185692745,0.17017037549873562,0.44169926053033004,1.0252090280339914,0.01457282039896661,1.0349754304453178,0.16630377296957227,1.0180111033748922,0.010000191358858813,1.0384187966003802,0.09730550692167428 -26127,0.42104813107218275,0.01748196085140307,0.18137610421497524,0.18690460031334344,0.4416877721624044,1.198830533012021,0.01457282039896661,1.088761479086157,0.16630377296957227,1.2174115971762363,0.010000191358858813,1.1369638049294217,0.09730550692167428 -26129,0.4619976750446979,0.021222376326105945,0.20569340249064963,0.21115965145123383,0.44162194761843143,1.4569402419675246,0.01457282039896661,1.2344600288666043,0.16630377296957227,1.5085516923977385,0.010000191358858813,1.3393645441941038,0.09730550692167428 -26131,0.5129820018927915,0.025938325547804744,0.23491971961669922,0.2408003572698282,0.44154147384780706,1.7811870755070576,0.01457282039896661,1.4109496848169565,0.16630377296957227,1.884126538063515,0.010000191358858813,1.591992429732979,0.09730550692167428 -26133,0.4248979853093464,0.01766797960606995,0.18261883685533548,0.18684848553093564,0.4416841906779805,1.211620367495065,0.01457282039896661,1.0958686351943467,0.16630377296957227,1.2443841358141565,0.010000191358858813,1.1527606564965605,0.09730550692167428 -26135,0.47530449300305766,0.022671010301638685,0.21442144177063593,0.22144720279657637,0.44159951242437845,1.5560373103979404,0.01457282039896661,1.2872712830239972,0.16630377296957227,1.6127890132211402,0.010000191358858813,1.4122381623738545,0.09730550692167428 -26137,0.42976360992607765,0.01746099754478964,0.1841282698061617,0.185921961076352,0.4416753066615118,1.198030177209384,0.01457282039896661,1.1065591142904976,0.16630377296957227,1.2247081858733513,0.010000191358858813,1.15774166562838,0.09730550692167428 -26139,0.3788749948695176,0.013090951394340775,0.15466491632023924,0.15742080451665225,0.44174174845622693,0.8985184757454323,0.01457282039896661,0.9311769721168636,0.16630377296957227,0.8865925295555743,0.010000191358858813,0.9129735531041056,0.09730550692167428 -26141,0.49314396860405063,0.02544273027538474,0.22919419195658164,0.23891163410135852,0.4415629602887027,1.746166724504064,0.01457282039896661,1.3761646647121837,0.16630377296957227,1.816832811057504,0.010000191358858813,1.522896760752667,0.09730550692167428 -26143,0.5085268014771829,0.026804622070261096,0.2353656597428469,0.2467082088868402,0.4415481087535424,1.8406563867247456,0.01457282039896661,1.412476487771969,0.16630377296957227,1.9481898906543775,0.010000191358858813,1.599993747592798,0.09730550692167428 -26145,0.410521031637508,0.016343437194592834,0.17538599805797195,0.1791882618633946,0.4416974673926282,1.121020384332584,0.01457282039896661,1.0533834960143658,0.16630377296957227,1.1277888405182273,0.010000191358858813,1.0780675225794851,0.09730550692167428 -26147,0.41447733011234145,0.015746737224239644,0.17500033731626352,0.17524761377478373,0.4416946551846133,1.0802846664748942,0.01457282039896661,1.0528471820500442,0.16630377296957227,1.0835428073403626,0.010000191358858813,1.071606222305782,0.09730550692167428 -26149,0.4048513641774293,0.015904589109418884,0.17212560775119445,0.17625939708882407,0.44170741840586847,1.090917644924252,0.01457282039896661,1.0324030149535335,0.16630377296957227,1.0933552595032348,0.010000191358858813,1.0508352125081557,0.09730550692167428 -26151,0.4259355109121285,0.01808146377660246,0.1851815994821971,0.19030506366227826,0.44167686796369726,1.2403183271003821,0.01457282039896661,1.1110107719589548,0.16630377296957227,1.264055005745307,0.010000191358858813,1.1626008562538397,0.09730550692167428 -26153,0.46541085634320833,0.02163201408762122,0.20944339690253969,0.21428738898813737,0.4416073661254907,1.4846607400276335,0.01457282039896661,1.2577254584685464,0.16630377296957227,1.5260745406591796,0.010000191358858813,1.3558952077323432,0.09730550692167428 -26155,0.4103903476633408,0.015440144119570861,0.17218970763622943,0.17264079482538214,0.44170162396159474,1.0591419208862138,0.01457282039896661,1.0360831892062001,0.16630377296957227,1.0666557412496733,0.010000191358858813,1.054509426347235,0.09730550692167428 -26157,0.4204348341111339,0.01658747512500543,0.1791776145432097,0.18088683628793595,0.4416870107732837,1.138229108498665,0.01457282039896661,1.0766382284144351,0.16630377296957227,1.1500184539870832,0.010000191358858813,1.1105473297056387,0.09730550692167428 -26159,0.4088767250330064,0.015220184422729169,0.17086876273144302,0.17122368840437852,0.4417056317095861,1.0441333641254378,0.01457282039896661,1.0275601950481246,0.16630377296957227,1.0514312542065178,0.010000191358858813,1.0462429155397617,0.09730550692167428 -26161,0.37706319987511505,0.01198279190976772,0.1514041330682047,0.14968883808058614,0.4417419794764469,0.8217718761010622,0.01457282039896661,0.9117006371099374,0.16630377296957227,0.8054542911096303,0.010000191358858813,0.8744099859672336,0.09730550692167428 -26163,0.3934032246032235,0.014273291526587557,0.16370053298506215,0.16534323737732187,0.4417215913443189,0.9796444193865099,0.01457282039896661,0.9844554753611836,0.16630377296957227,0.9717234750142347,0.010000191358858813,0.9791304885785701,0.09730550692167428 -26165,0.41714403234449743,0.01665866716848894,0.17791661906745276,0.18059796731369532,0.4416939055677862,1.1425540107868803,0.01457282039896661,1.0680783763962425,0.16630377296957227,1.1594090728111457,0.010000191358858813,1.102888827597356,0.09730550692167428 -27001,0.49936287980027605,0.02545945852717921,0.2287470300524585,0.2384896079425807,0.44156532243879876,1.7485250470599731,0.01457282039896661,1.3724689759150048,0.16630377296957227,1.8426759956974847,0.010000191358858813,1.542898401370628,0.09730550692167428 -27003,0.38642415849762446,0.011661537818415006,0.15279275555493801,0.14694002813041168,0.4417391055550919,0.8003311678695384,0.01457282039896661,0.9240413405595367,0.16630377296957227,0.7859523237913331,0.010000191358858813,0.8940503998802658,0.09730550692167428 -27005,0.4292854528329763,0.01848691063882739,0.187563404269222,0.1941056073093047,0.44167547169275106,1.2675102284395823,0.01457282039896661,1.1257706796972604,0.16630377296957227,1.2855600968014955,0.010000191358858813,1.1813644864881894,0.09730550692167428 -27007,0.38626813501907026,0.0142395451446652,0.1599784419591445,0.1645871464925603,0.4417327439660513,0.9775626356205165,0.01457282039896661,0.9635521416756128,0.16630377296957227,0.979812395074619,0.010000191358858813,0.9624688514551255,0.09730550692167428 -27009,0.38041776637699487,0.013288336418479239,0.15732251540370226,0.15963288340151074,0.4417363204015796,0.9133255787955283,0.01457282039896661,0.9474262979677248,0.16630377296957227,0.8888139280674208,0.010000191358858813,0.9138001902737112,0.09730550692167428 -27011,0.4709908268463724,0.025030877140320425,0.22039357550794553,0.23628523470000043,0.4415927194978983,1.7173795795822904,0.01457282039896661,1.3222475994749123,0.16630377296957227,1.7817647575888036,0.010000191358858813,1.4547481430484959,0.09730550692167428 -27013,0.3726916748538335,0.013207497512525174,0.15378610104406393,0.1578153691245299,0.4417402217951162,0.9072304627265845,0.01457282039896661,0.9269903586240098,0.16630377296957227,0.8954723660503049,0.010000191358858813,0.8930519806185517,0.09730550692167428 -27015,0.4298452941169737,0.019909149448772343,0.19372189789748237,0.20435009536034096,0.4416578172522242,1.3651285979840466,0.01457282039896661,1.1623520543605537,0.16630377296957227,1.3766429957978765,0.010000191358858813,1.2158398203002116,0.09730550692167428 -27017,0.4180922424608088,0.016491136827544994,0.17928818571149288,0.1812214443524368,0.44168883070892806,1.1305440055499358,0.01457282039896661,1.0756728389533399,0.16630377296957227,1.1263669156815688,0.010000191358858813,1.0950519092267514,0.09730550692167428 -27019,0.3727442771772559,0.01079537476495029,0.14585139827601068,0.14143389120936467,0.44175736963530243,0.7404323191613764,0.01457282039896661,0.8826416568508368,0.16630377296957227,0.7153339395667333,0.010000191358858813,0.8385100417860436,0.09730550692167428 -27021,0.4573891277662448,0.02057434111009636,0.2009224801344226,0.20575558727503038,0.44163744887316964,1.4121446268062243,0.01457282039896661,1.2052877490801608,0.16630377296957227,1.4745067662637101,0.010000191358858813,1.3117168053137114,0.09730550692167428 -27023,0.4317679737052641,0.019978885938096262,0.1942124092615588,0.20435822050244296,0.44165874619574996,1.370341871153963,0.01457282039896661,1.1650586643903291,0.16630377296957227,1.3854849011191968,0.010000191358858813,1.2241255201905128,0.09730550692167428 -27025,0.39404509355199313,0.01293007729034826,0.1592159613617546,0.15539369308321707,0.44172669544363036,0.8869973028191123,0.01457282039896661,0.9619650974817227,0.16630377296957227,0.8793248131058695,0.010000191358858813,0.9444674524985686,0.09730550692167428 -27027,0.3753889894230349,0.013606840611329489,0.15552609481722834,0.16071556577566326,0.44173907333416,0.935054923255735,0.01457282039896661,0.9371913891266859,0.16630377296957227,0.9241566221412687,0.010000191358858813,0.9161399400261938,0.09730550692167428 -27029,0.42961114365662745,0.019298031644984726,0.19062964683619682,0.19899650093111557,0.4416693985863493,1.3237518892710778,0.01457282039896661,1.1433479611611832,0.16630377296957227,1.3445178550358547,0.010000191358858813,1.2009136506648912,0.09730550692167428 -27031,0.48767588425104336,0.02175871364843241,0.21673677267279734,0.21478983352254066,0.4415766004858092,1.4939227033089233,0.01457282039896661,1.303820461086742,0.16630377296957227,1.547755158063708,0.010000191358858813,1.415929524104898,0.09730550692167428 -27033,0.4357214127896102,0.021676712301187524,0.2011469048433137,0.21776297081494378,0.4416469157813648,1.486599503837057,0.01457282039896661,1.2059772682451428,0.16630377296957227,1.4914275121885934,0.010000191358858813,1.2730806194627968,0.09730550692167428 -27035,0.43208507688952824,0.018743608944940694,0.18883301957183385,0.19517129312996534,0.441669884358289,1.2858452741312525,0.01457282039896661,1.1339981094535294,0.16630377296957227,1.3139563458633163,0.010000191358858813,1.194434968197473,0.09730550692167428 -27037,0.385106170276285,0.01193141348645382,0.1534858478807522,0.14899547783126155,0.4417394879830727,0.8187349626799758,0.01457282039896661,0.9262905546139171,0.16630377296957227,0.802802663109911,0.010000191358858813,0.8962677152366054,0.09730550692167428 -27039,0.38554243639397523,0.013725932264408183,0.15942074526975314,0.16204295809840547,0.4417338575544987,0.9426419521849062,0.01457282039896661,0.9601062375471152,0.16630377296957227,0.9270231490569998,0.010000191358858813,0.9458384230531355,0.09730550692167428 -27041,0.43655468124959235,0.019750805952788244,0.19407925140885812,0.20224898326928234,0.44165484607144656,1.3550509596444278,0.01457282039896661,1.1660087160581938,0.16630377296957227,1.3809624498183508,0.010000191358858813,1.2298086788983063,0.09730550692167428 -27043,0.4466106521939917,0.022156253438411704,0.20624647188826611,0.2207303549913706,0.4416277852861006,1.5199445576449897,0.01457282039896661,1.2374190827362233,0.16630377296957227,1.5326113007551565,0.010000191358858813,1.3140336470823057,0.09730550692167428 -27045,0.42929924576037815,0.019991702362528632,0.19345055284983226,0.20492795832897792,0.44166267853324626,1.3707412356176194,0.01457282039896661,1.1600724482575575,0.16630377296957227,1.3833078448982625,0.010000191358858813,1.2167977147167792,0.09730550692167428 -27047,0.4420992363807026,0.02085378231782961,0.20030861523090854,0.21034775027933933,0.4416405107941429,1.4303421807860772,0.01457282039896661,1.2018714198905351,0.16630377296957227,1.4522558197039128,0.010000191358858813,1.2707332065547234,0.09730550692167428 -27049,0.4218526584162159,0.01749580093823121,0.1837435615755986,0.18812833601625978,0.4416793578051869,1.1999935614910133,0.01457282039896661,1.1022784532828909,0.16630377296957227,1.2009272732602443,0.010000191358858813,1.1341837003196251,0.09730550692167428 -27051,0.4514658172536691,0.02237631833403862,0.20800605317464482,0.22085655350368766,0.44162263727968704,1.5346120791704356,0.01457282039896661,1.2483786791256,0.16630377296957227,1.560030723490171,0.010000191358858813,1.3324286218412507,0.09730550692167428 -27053,0.3942877994186227,0.013406536537272203,0.16213443647942394,0.1596131559152855,0.44172066421811185,0.919950196784106,0.01457282039896661,0.9761578901479298,0.16630377296957227,0.9041102749337835,0.010000191358858813,0.9506449270292143,0.09730550692167428 -27055,0.4296396386823105,0.01839976424627187,0.18903531916337352,0.19436276992230073,0.44166469164581584,1.2621309707309822,0.01457282039896661,1.1341325084125646,0.16630377296957227,1.2687101288385638,0.010000191358858813,1.1807535009805137,0.09730550692167428 -27057,0.4576731591232878,0.02087199454351253,0.20275120850431605,0.20839219132395687,0.4416323766315694,1.4325819876874184,0.01457282039896661,1.2165282482747615,0.16630377296957227,1.4878430716799271,0.010000191358858813,1.3199435104234567,0.09730550692167428 -27059,0.39065948125411726,0.013550084467079199,0.16077291195769844,0.16098994575586906,0.4417266846491491,0.9300777143058163,0.01457282039896661,0.9685671834876627,0.16630377296957227,0.9134386770792513,0.010000191358858813,0.9516600799059847,0.09730550692167428 -27061,0.44588427515314255,0.019425389846778406,0.19595222670763804,0.20013160235434108,0.44164658934633144,1.3330818642080704,0.01457282039896661,1.1765432562151337,0.16630377296957227,1.3608541400357201,0.010000191358858813,1.2489072371831795,0.09730550692167428 -27063,0.43770829732617167,0.020665189990858965,0.19927972252542167,0.21001356838525725,0.4416422598242238,1.4176299545602284,0.01457282039896661,1.1948409420099873,0.16630377296957227,1.4263033215183656,0.010000191358858813,1.2551780584524446,0.09730550692167428 -27065,0.4261954404162426,0.01711329420038349,0.18189946311698296,0.18315098801115004,0.44168404055960236,1.1737058525889688,0.01457282039896661,1.0917035078639736,0.16630377296957227,1.1996689628182455,0.010000191358858813,1.1382895740356411,0.09730550692167428 -27067,0.4120856491175254,0.016967062014964285,0.17851327233113018,0.18456818453749768,0.44169255422463627,1.163812198871062,0.01457282039896661,1.0717500868649634,0.16630377296957227,1.160567095300173,0.010000191358858813,1.0949733993899753,0.09730550692167428 -27069,0.46043917485292696,0.023519247267847113,0.2157836534942737,0.23139869189741658,0.44159840590785016,1.613482230663235,0.01457282039896661,1.2946527233947165,0.16630377296957227,1.6199990702863987,0.010000191358858813,1.385008133205349,0.09730550692167428 -27071,0.45297627469423,0.020706880968721447,0.20212937079155274,0.20724313295928984,0.44163093262707565,1.4210239624242513,0.01457282039896661,1.2125146219445095,0.16630377296957227,1.4642819167262633,0.010000191358858813,1.3000610291522556,0.09730550692167428 -27073,0.46536254316026027,0.02437330899668374,0.2189947591604888,0.2348724891487103,0.4415944385774419,1.6722044906590576,0.01457282039896661,1.3135583742309471,0.16630377296957227,1.701511177216077,0.010000191358858813,1.420193068218381,0.09730550692167428 -27075,0.4696928236158271,0.022075515920271765,0.21260667867350264,0.21765764141768673,0.4416009354850648,1.515890982967616,0.01457282039896661,1.2760432673819946,0.16630377296957227,1.5555845764714002,0.010000191358858813,1.3745040677822793,0.09730550692167428 -27077,0.4585701668316015,0.019903974833156306,0.20331291928201195,0.20537690386403656,0.441617586451765,1.365769820784342,0.01457282039896661,1.2239031846096946,0.16630377296957227,1.3752722511895286,0.010000191358858813,1.298877604749769,0.09730550692167428 -27079,0.4115958102329397,0.015929690047808955,0.17362554592358886,0.17552077918129771,0.4417020603104399,1.0925956546684037,0.01457282039896661,1.0444742842851962,0.16630377296957227,1.1064835510176239,0.010000191358858813,1.0699178584597027,0.09730550692167428 -27081,0.458034706722137,0.02393419622561472,0.21391545791433741,0.23111993771822797,0.44161274817528007,1.6424438936995038,0.01457282039896661,1.2832827239344378,0.16630377296957227,1.679779796369516,0.010000191358858813,1.3848090962117734,0.09730550692167428 -27083,0.3911366488656811,0.015248669757799356,0.1661629642566554,0.17288699107983768,0.44171874273588896,1.0466805721464065,0.01457282039896661,0.9990709944940013,0.16630377296957227,1.0357553234864867,0.010000191358858813,0.9952622024824009,0.09730550692167428 -27085,0.4070699736437192,0.016155285843563343,0.1743655675469034,0.1786102535921852,0.4417022784335989,1.108600660243663,0.01457282039896661,1.04619449086841,0.16630377296957227,1.103975545518555,0.010000191358858813,1.0589400718636814,0.09730550692167428 -27087,0.4022769223142259,0.017117332612569813,0.17350421347911038,0.18493975595156958,0.441711275242089,1.1744301743546255,0.01457282039896661,1.0417163192102776,0.16630377296957227,1.1827449593693298,0.010000191358858813,1.07859919252998,0.09730550692167428 -27089,0.43781274426457983,0.020112860436472643,0.19684785852187608,0.2053237454428261,0.44164713947524425,1.37936640885775,0.01457282039896661,1.1804338909033651,0.16630377296957227,1.3972779529079902,0.010000191358858813,1.243368022367159,0.09730550692167428 -27091,0.4432187074997159,0.020984137441688738,0.20163161587051348,0.21151484920962604,0.4416379805106936,1.4395376214679128,0.01457282039896661,1.2092439369550505,0.16630377296957227,1.4559399590266646,0.010000191358858813,1.2797938284109698,0.09730550692167428 -27093,0.4181303646918496,0.017393538959496913,0.18155582168993056,0.1864715103745626,0.44168835759519554,1.1931787594662486,0.01457282039896661,1.0884468153038753,0.16630377296957227,1.2012526773791117,0.010000191358858813,1.1252891469053683,0.09730550692167428 -27095,0.4104260170383142,0.016648466383987218,0.17607396051373236,0.1813298314043014,0.44169766538690336,1.141700155885182,0.01457282039896661,1.0570521883608377,0.16630377296957227,1.1485951503458622,0.010000191358858813,1.0833701901070754,0.09730550692167428 -27097,0.41563575412235565,0.017142092185653494,0.17974394173627656,0.18467722153163652,0.4416903985689613,1.175597972576055,0.01457282039896661,1.0784795321667362,0.16630377296957227,1.1839964124303126,0.010000191358858813,1.1105094291210507,0.09730550692167428 -27099,0.41631533847320756,0.018761441021935037,0.18524523945456173,0.19620817289632986,0.44168202711875226,1.2866366858844294,0.01457282039896661,1.1110194112517253,0.16630377296957227,1.294047020945608,0.010000191358858813,1.1487877816537742,0.09730550692167428 -27101,0.4582860934666752,0.023263097673359486,0.21383956240653695,0.22900905793591625,0.441606815587511,1.596068769228793,0.01457282039896661,1.283009517382672,0.16630377296957227,1.6071483010898235,0.010000191358858813,1.3718746530891237,0.09730550692167428 -27103,0.38638181310041136,0.013750797277563015,0.15949234347052987,0.1609695942449091,0.44172956543698183,0.9443787807908154,0.01457282039896661,0.9594266267687963,0.16630377296957227,0.9416205262631985,0.010000191358858813,0.9463580816728909,0.09730550692167428 -27105,0.40450235380987076,0.017165920430685516,0.1759234917089783,0.18532561966571842,0.4417023462835762,1.1779999657265434,0.01457282039896661,1.0558341006694392,0.16630377296957227,1.1803443987439342,0.010000191358858813,1.0807455985449077,0.09730550692167428 -27107,0.4436606847445331,0.021786819625956178,0.2033166996074693,0.2163325429283764,0.4416376019585045,1.494919085920702,0.01457282039896661,1.218817275813847,0.16630377296957227,1.5232022430715149,0.010000191358858813,1.3018833511159866,0.09730550692167428 -27109,0.39484479307345105,0.013886842802427031,0.16281622219225608,0.1622255993782269,0.44172411214492535,0.9530118109176675,0.01457282039896661,0.9794762401038943,0.16630377296957227,0.9482670629142932,0.010000191358858813,0.9693392911446401,0.09730550692167428 -27111,0.4486551473501043,0.02106718434521845,0.20217717111045852,0.21120420600391526,0.44163543706465946,1.4452673444145017,0.01457282039896661,1.2135386496340739,0.16630377296957227,1.477038884525895,0.010000191358858813,1.2970660422609008,0.09730550692167428 -27113,0.41405594252800804,0.017029298580892423,0.17957401489492225,0.1852218926253139,0.4416912158804852,1.1680364940063748,0.01457282039896661,1.0779930683039192,0.16630377296957227,1.1627346898152862,0.010000191358858813,1.0991071017372969,0.09730550692167428 -27115,0.42709059855832915,0.016835663773067357,0.18187102890010065,0.181614813394345,0.44167937244104916,1.1548502205463889,0.01457282039896661,1.0936153753549465,0.16630377296957227,1.1754039091544166,0.010000191358858813,1.1316859145769547,0.09730550692167428 -27117,0.43012505159718284,0.02073015273320611,0.1959779626469272,0.20986416835185412,0.44165885920920905,1.421463479385268,0.01457282039896661,1.1750446727992148,0.16630377296957227,1.4354419655480108,0.010000191358858813,1.2358933842667277,0.09730550692167428 -27119,0.41605412691846727,0.017832886194762726,0.18234953076109117,0.1898323458197662,0.44168318630627945,1.2231157982816878,0.01457282039896661,1.0948188853737841,0.16630377296957227,1.230269111811921,0.010000191358858813,1.1292384420593298,0.09730550692167428 -27121,0.4507709949122534,0.021291710663261285,0.20474932995823963,0.21396405498889431,0.4416266454707931,1.461534165872905,0.01457282039896661,1.2290619724456726,0.16630377296957227,1.4813484666994792,0.010000191358858813,1.3055840211850636,0.09730550692167428 -27123,0.39017132841381,0.013879465023412453,0.16178755181663396,0.1627210820758973,0.4417248797448918,0.9529787446569271,0.01457282039896661,0.9726200544829584,0.16630377296957227,0.9419138116094862,0.010000191358858813,0.9559080267165829,0.09730550692167428 -27125,0.42836391445665356,0.018317343100972376,0.18876885014777384,0.19504651132602444,0.44166869031231365,1.2566537600364618,0.01457282039896661,1.13341177477889,0.16630377296957227,1.2518266559040547,0.010000191358858813,1.1736307908663792,0.09730550692167428 -27127,0.42972846459930625,0.02052456443801135,0.19524087143816682,0.20908117483843813,0.4416593979118418,1.407163538212575,0.01457282039896661,1.1711145632871363,0.16630377296957227,1.4163279582106192,0.010000191358858813,1.2296626511324045,0.09730550692167428 -27129,0.4351148022491459,0.02019954214848977,0.19615078935200145,0.20590602317603482,0.4416516163757419,1.385201364991587,0.01457282039896661,1.1761247036421034,0.16630377296957227,1.4017001919965044,0.010000191358858813,1.2371472178223133,0.09730550692167428 -27131,0.38521008805747814,0.013674332964655637,0.15820900492654422,0.16011837368466653,0.4417328146308789,0.9386879714025878,0.01457282039896661,0.9521724901625546,0.16630377296957227,0.9398657337680582,0.010000191358858813,0.9419207866325708,0.09730550692167428 -27133,0.42166681461931177,0.01956096834931139,0.1900611994710974,0.20302523848365472,0.44167326910782456,1.341629514106204,0.01457282039896661,1.1390432344310164,0.16630377296957227,1.3386858302578428,0.010000191358858813,1.184193840656753,0.09730550692167428 -27135,0.4045905909473059,0.015286499808393902,0.17138996809733745,0.17303860570380653,0.4417035288241554,1.0487067637060228,0.01457282039896661,1.0311128043759763,0.16630377296957227,1.0352605392135117,0.010000191358858813,1.03597802923982,0.09730550692167428 -27137,0.4234435660892496,0.01744612085258685,0.18382601607381047,0.18717448830220357,0.4416736884693606,1.1967943773884422,0.01457282039896661,1.1046270706069596,0.16630377296957227,1.202700801911577,0.010000191358858813,1.1355961217820791,0.09730550692167428 -27139,0.36404010988796975,0.009757145901481195,0.13969918066529796,0.13382037643748895,0.4417725256728017,0.6697194243816316,0.01457282039896661,0.8444290815960283,0.16630377296957227,0.6426243766223323,0.010000191358858813,0.7858094300030702,0.09730550692167428 -27141,0.36341315710634103,0.01034255699554029,0.1411582359351702,0.13821090689733517,0.4417697919753242,0.7091918398178132,0.01457282039896661,0.8527259109770474,0.16630377296957227,0.6828759718467761,0.010000191358858813,0.7983079905781614,0.09730550692167428 -27143,0.41507004289362337,0.017189320384944216,0.1797620015979783,0.1847450558626227,0.4416900828688552,1.1793853295505279,0.01457282039896661,1.0783988555864996,0.16630377296957227,1.1881052829076972,0.010000191358858813,1.1087655810957582,0.09730550692167428 -27145,0.38189091346337545,0.013500712392075197,0.15709594986912157,0.15945490567258702,0.44173521096442103,0.9267503856587824,0.01457282039896661,0.9455148429627007,0.16630377296957227,0.9215393423847795,0.010000191358858813,0.9275249668658537,0.09730550692167428 -27147,0.4028586784484247,0.015507998425546137,0.17071145762825485,0.17361414919096235,0.44170939253197783,1.0643314426143822,0.01457282039896661,1.0253487016284346,0.16630377296957227,1.0615677123852172,0.010000191358858813,1.0333369943961352,0.09730550692167428 -27149,0.397890286972213,0.01729681759705977,0.17618097730527155,0.18907357967412364,0.44169750650187883,1.186345031998117,0.01457282039896661,1.0571154490363535,0.16630377296957227,1.1606423190900066,0.010000191358858813,1.0615346422211402,0.09730550692167428 -27151,0.43964021047270596,0.020931281680410134,0.20122467675427327,0.21359547256809552,0.4416332779599845,1.436079884103794,0.01457282039896661,1.2070528253981112,0.16630377296957227,1.4339249618229988,0.010000191358858813,1.2662014736863967,0.09730550692167428 -27153,0.4217731748238482,0.017746206057339554,0.18330650339478927,0.18950143570366845,0.4416815519642924,1.216913173747908,0.01457282039896661,1.1006897441080379,0.16630377296957227,1.227225788265983,0.010000191358858813,1.144752974127824,0.09730550692167428 -27155,0.4626856731658755,0.025661649429572286,0.22156243067253922,0.2429125806438915,0.4415926729705622,1.7613696895179833,0.01457282039896661,1.328738609396669,0.16630377296957227,1.8013662743353411,0.010000191358858813,1.4379774252409803,0.09730550692167428 -27157,0.428419626931566,0.017739311081559794,0.18571479829173176,0.18844519140138916,0.44167194855174813,1.2163790379332347,0.01457282039896661,1.1159952838251128,0.16630377296957227,1.2319648200371733,0.010000191358858813,1.1608087854575366,0.09730550692167428 -27159,0.43798821926429643,0.02079856941511461,0.19795575806656068,0.20925015991773255,0.4416493281051477,1.4265260538279851,0.01457282039896661,1.1876297026528393,0.16630377296957227,1.4564167138401785,0.010000191358858813,1.2625795908811388,0.09730550692167428 -27161,0.4157369822991097,0.016197295938886445,0.1764288295252147,0.1773646462020234,0.4416929602957856,1.1111214962963805,0.01457282039896661,1.0601109532839352,0.16630377296957227,1.1238003538387629,0.010000191358858813,1.0833349831389651,0.09730550692167428 -27163,0.39172262309631284,0.012560881746732328,0.15742875409877388,0.15347608072207508,0.441730391827396,0.8618791567705383,0.01457282039896661,0.9511222354018765,0.16630377296957227,0.8487461887845127,0.010000191358858813,0.9328401460643995,0.09730550692167428 -27165,0.42644203701304756,0.019672254055206076,0.19141230086820066,0.20335917342456547,0.44166671824584736,1.3491346131191222,0.01457282039896661,1.1490816633715073,0.16630377296957227,1.356932256429132,0.010000191358858813,1.2038850791491522,0.09730550692167428 -27167,0.42560013493712673,0.01857554436213997,0.1899831372057339,0.1956487230409904,0.44166055783249814,1.2743453500056385,0.01457282039896661,1.138472737010215,0.16630377296957227,1.2683447418988087,0.010000191358858813,1.1719743302759533,0.09730550692167428 -27169,0.3870478315423637,0.014837621894695492,0.16320010575283783,0.16927171620450854,0.44172120180160346,1.018163139556246,0.01457282039896661,0.9832832605635748,0.16630377296957227,1.0148257352985195,0.010000191358858813,0.9763033824233289,0.09730550692167428 -27171,0.37140530211679224,0.011260063023856473,0.14632165404467318,0.1444101377847789,0.441760028184381,0.7721638560686288,0.01457282039896661,0.8831063550301366,0.16630377296957227,0.7530909698856129,0.010000191358858813,0.8445964296725933,0.09730550692167428 -27173,0.4331251211355347,0.020314294774103122,0.19563493794340475,0.20694149198049627,0.44165418605153894,1.3931939420083306,0.01457282039896661,1.173743702459533,0.16630377296957227,1.4085009585946235,0.010000191358858813,1.2355437077333358,0.09730550692167428 -28001,0.41690985141409664,0.017379768025501962,0.17983387883595356,0.18502640348997196,0.44168867459829597,1.1917228381700786,0.01457282039896661,1.079801404896972,0.16630377296957227,1.214635472690151,0.010000191358858813,1.1221948390865033,0.09730550692167428 -28003,0.4210533153995648,0.01704188770841987,0.17937207917406012,0.18265038761305039,0.4416895875984549,1.1689794342108042,0.01457282039896661,1.0765186521360741,0.16630377296957227,1.1979455994167143,0.010000191358858813,1.1216231397131495,0.09730550692167428 -28005,0.4330178383065544,0.018490373544559957,0.18777881718566414,0.19299216909585398,0.4416740030738456,1.268311907248174,0.01457282039896661,1.1268600696445645,0.16630377296957227,1.3015620433628676,0.010000191358858813,1.1931780221485742,0.09730550692167428 -28007,0.4120038390569596,0.017888343839332924,0.18084903291321264,0.19049454103099436,0.44169194779215293,1.227087642191489,0.01457282039896661,1.0846202303973138,0.16630377296957227,1.23009879174421,0.010000191358858813,1.1201432648773313,0.09730550692167428 -28009,0.41504040010178,0.016817091644439244,0.1777616202299681,0.18200037625089574,0.44169775992002974,1.1535833929264587,0.01457282039896661,1.0661151426631215,0.16630377296957227,1.1667072544387636,0.010000191358858813,1.0993707071230894,0.09730550692167428 -28011,0.3849218846462933,0.013808176539302983,0.15842277100859847,0.16268908110163247,0.4417352256873711,0.9483078918386203,0.01457282039896661,0.9539169263287216,0.16630377296957227,0.9407947382202584,0.010000191358858813,0.9471600690026274,0.09730550692167428 -28013,0.4167731470219788,0.017736940900636,0.1809046556596728,0.18822787045021339,0.4416903911831962,1.2166713366132704,0.01457282039896661,1.0854421303130888,0.16630377296957227,1.2338050156027704,0.010000191358858813,1.1255168142035572,0.09730550692167428 -28015,0.43357579162317683,0.017895168402878067,0.18580401922969508,0.18988466277845897,0.4416753381063762,1.2278237893526476,0.01457282039896661,1.1157290619946312,0.16630377296957227,1.2557255113573105,0.010000191358858813,1.1764135285339261,0.09730550692167428 -28017,0.40098415361740736,0.015393976663136135,0.1678078064349819,0.17137296623583964,0.4417197127163799,1.0565589810223734,0.01457282039896661,1.0080208334952072,0.16630377296957227,1.0739656146159868,0.010000191358858813,1.030070950823681,0.09730550692167428 -28019,0.42895294427678565,0.018312817898850527,0.18655593244915003,0.19260483693367456,0.4416737507481784,1.2559522350470957,0.01457282039896661,1.1195626509608614,0.16630377296957227,1.2798776725185568,0.010000191358858813,1.1768148543924415,0.09730550692167428 -28021,0.3823570795683282,0.014068760203639088,0.15816152181277582,0.16347143739801795,0.44173386837832074,0.9661468949549505,0.01457282039896661,0.9526934170259045,0.16630377296957227,0.9678285885375868,0.010000191358858813,0.951979150870341,0.09730550692167428 -28023,0.4154982747070737,0.017184591754197634,0.17876059199503702,0.18495792925440532,0.4416925219120851,1.1782743104289457,0.01457282039896661,1.0729972441859505,0.16630377296957227,1.192150338689912,0.010000191358858813,1.1134952374234057,0.09730550692167428 -28025,0.4041701970235573,0.015627355172746986,0.17126262555122002,0.17542916840875672,0.4417082725931894,1.0722498617268337,0.01457282039896661,1.02847452049116,0.16630377296957227,1.0662976467881495,0.010000191358858813,1.0406338712619143,0.09730550692167428 -28027,0.37637564564772885,0.01365729733845799,0.15420190643743148,0.1603798172623539,0.44174862545908733,0.9368872613381498,0.01457282039896661,0.9287517097387331,0.16630377296957227,0.938300206113336,0.010000191358858813,0.925776708122377,0.09730550692167428 -28029,0.3962697966977192,0.014836498644313332,0.16500539447896734,0.16821269959414412,0.4417206892233934,1.0178849850699208,0.01457282039896661,0.9927670631590435,0.16630377296957227,1.0260077496259976,0.010000191358858813,1.005711221262784,0.09730550692167428 -28031,0.4036677243106884,0.016092211975992726,0.1714593893752145,0.17700224072835638,0.4417096813677989,1.1035542421675304,0.01457282039896661,1.0299866295172413,0.16630377296957227,1.114893455500515,0.010000191358858813,1.053099259754061,0.09730550692167428 -28033,0.37954132053863737,0.011837301074864765,0.15005454052866912,0.14728174019571932,0.44175124691013046,0.8122743703168778,0.01457282039896661,0.9048810454360194,0.16630377296957227,0.8079923771299613,0.010000191358858813,0.8808226587003603,0.09730550692167428 -28035,0.3719333450204966,0.012831915912377784,0.15205455574670618,0.15557442617494655,0.44174780590182006,0.8808769856155647,0.01457282039896661,0.9147543427870073,0.16630377296957227,0.8670239383521475,0.010000191358858813,0.88269649865925,0.09730550692167428 -28037,0.41637626339644296,0.017287814431101087,0.18077223003087084,0.18713423898903706,0.44168571632486026,1.185745649385475,0.01457282039896661,1.0853915656957316,0.16630377296957227,1.1862063099393594,0.010000191358858813,1.1198799687771657,0.09730550692167428 -28039,0.39134660418171396,0.013569562359194511,0.1588261842864206,0.15964752128296644,0.44173404495966895,0.9312918138734192,0.01457282039896661,0.9576608844714465,0.16630377296957227,0.9364896666925594,0.010000191358858813,0.9584860811849283,0.09730550692167428 -28041,0.3969196954322062,0.013105028221465177,0.1610346502598171,0.1558790909895272,0.4417210035008048,0.899164780620523,0.01457282039896661,0.9698248821157928,0.16630377296957227,0.8996659223087984,0.010000191358858813,0.9468996200212554,0.09730550692167428 -28043,0.4097507728156031,0.01583225300468064,0.17312046536862163,0.17506043633758578,0.44170253661793973,1.0859775298324594,0.01457282039896661,1.0398333248735916,0.16630377296957227,1.0963147873764127,0.010000191358858813,1.0611784368330461,0.09730550692167428 -28045,0.4211859447855081,0.016024816168234323,0.17690585960845104,0.17606138361016135,0.4416915432160369,1.0988510052639837,0.01457282039896661,1.0642140288464748,0.16630377296957227,1.1183695998913312,0.010000191358858813,1.0979411998137072,0.09730550692167428 -28047,0.39240807311874987,0.01340660809896949,0.1600316058161536,0.15851610012009051,0.44172743556171423,0.920156160053502,0.01457282039896661,0.9639889977044842,0.16630377296957227,0.919166599785513,0.010000191358858813,0.952757728165271,0.09730550692167428 -28049,0.3763438762057665,0.012651084847747667,0.15255510931684083,0.15428415451294986,0.44174690048555704,0.8679754918654996,0.01457282039896661,0.9180791385244862,0.16630377296957227,0.8548963444900874,0.010000191358858813,0.8933609209603006,0.09730550692167428 -28051,0.3754609982616298,0.013949231364331745,0.15564733140852632,0.1631838798698254,0.44174666767977067,0.9571537297232237,0.01457282039896661,0.93800755955582,0.16630377296957227,0.9494936432516314,0.010000191358858813,0.9296527240452153,0.09730550692167428 -28053,0.3822428557328309,0.013593928474717926,0.1574484039468706,0.16149226122151425,0.44174050999609815,0.9327846241153122,0.01457282039896661,0.9473662373468967,0.16630377296957227,0.9166727010112912,0.010000191358858813,0.9387246946047727,0.09730550692167428 -28055,0.38665927048763893,0.013173362431415392,0.1558783832970286,0.15485295426681567,0.44173888945164863,0.9044533233823611,0.01457282039896661,0.9403402559826768,0.16630377296957227,0.9202024601076151,0.010000191358858813,0.9349288181038737,0.09730550692167428 -28057,0.4089463891607287,0.01627779575357382,0.17346885691674802,0.17802446498533603,0.44170161600534186,1.116506195068879,0.01457282039896661,1.042868927972505,0.16630377296957227,1.1341070870462744,0.010000191358858813,1.0732427038206702,0.09730550692167428 -28059,0.39962850424057295,0.013770937897562143,0.16252200781261028,0.16030217692884113,0.4417222736606828,0.9451728872570764,0.01457282039896661,0.9803789910643271,0.16630377296957227,0.9548005489196465,0.010000191358858813,0.9848330171946977,0.09730550692167428 -28061,0.4143854028056518,0.016464500020288084,0.17606233092277457,0.17915814403661615,0.4416983873310988,1.1294111124548176,0.01457282039896661,1.0567642325329047,0.16630377296957227,1.148095229117812,0.010000191358858813,1.0937205544789395,0.09730550692167428 -28063,0.41365532007036016,0.01613050403237526,0.1761370844939062,0.1784555779300306,0.44169069383151316,1.1062113728774023,0.01457282039896661,1.0613904049846994,0.16630377296957227,1.1064682937776036,0.010000191358858813,1.0800258099474722,0.09730550692167428 -28065,0.42159202294088216,0.0171795997442331,0.18015113906619576,0.18473860118449975,0.4416863760737375,1.178666076536698,0.01457282039896661,1.081646506114002,0.16630377296957227,1.1992922081786963,0.010000191358858813,1.128784782476519,0.09730550692167428 -28067,0.40175688254333364,0.015555557000552445,0.16909765244276645,0.1729690151066059,0.44171503247233945,1.0675487653036386,0.01457282039896661,1.0155004281901705,0.16630377296957227,1.0799052611538407,0.010000191358858813,1.03479455536529,0.09730550692167428 -28069,0.412155772368955,0.016353197576404677,0.17426753913591192,0.17955572091121375,0.4417030209345216,1.122033321396759,0.01457282039896661,1.0471081715746595,0.16630377296957227,1.1370870036509113,0.010000191358858813,1.08326779894776,0.09730550692167428 -28071,0.35808174628818523,0.011414907597295566,0.14268797989672843,0.1450109135751982,0.4417640744346012,0.7829329677859582,0.01457282039896661,0.8591798057126223,0.16630377296957227,0.7712438593883016,0.010000191358858813,0.8100696435756459,0.09730550692167428 -28073,0.37990245853229543,0.012352116422181057,0.15228753468497233,0.15148494805896495,0.44174643884558407,0.8481429214290068,0.01457282039896661,0.9177395412234589,0.16630377296957227,0.8423804026803674,0.010000191358858813,0.8918878917436948,0.09730550692167428 -28075,0.3983840242406752,0.015445061696868254,0.16865571390637346,0.17308836309548103,0.44171394883604376,1.0596747762527792,0.01457282039896661,1.0127153707265495,0.16630377296957227,1.0596953919478,0.010000191358858813,1.0210091578415195,0.09730550692167428 -28077,0.41269673232539406,0.01622578397863951,0.17351328751907796,0.1764617510015567,0.4417069185777602,1.113431367926668,0.01457282039896661,1.0420293047044993,0.16630377296957227,1.1443757831475394,0.010000191358858813,1.0812765664810264,0.09730550692167428 -28079,0.3784351805257378,0.014500788587857676,0.15751107274440895,0.1666759074114443,0.4417436903893458,0.9959913564165993,0.01457282039896661,0.9479408689410203,0.16630377296957227,0.9954053415373207,0.010000191358858813,0.9506294456108688,0.09730550692167428 -28081,0.39261795858653264,0.014151546206892969,0.16212028682843688,0.1638973247160586,0.4417280025108081,0.9713401622039296,0.01457282039896661,0.9746263619670698,0.16630377296957227,0.9713546371165653,0.010000191358858813,0.9731405420493643,0.09730550692167428 -28083,0.37468311372956276,0.013114430384751056,0.15301259356206334,0.1574761888886034,0.44175041166394124,0.8997260020897849,0.01457282039896661,0.9204826726720945,0.16630377296957227,0.888852792300331,0.010000191358858813,0.9028875009980347,0.09730550692167428 -28085,0.4050352164621845,0.015573598771460261,0.17065323069139937,0.17341216169139104,0.4417116502525733,1.0688908388477016,0.01457282039896661,1.0240650497189137,0.16630377296957227,1.0771333700114485,0.010000191358858813,1.0416347300382167,0.09730550692167428 -28087,0.3941085547018497,0.01444307525308925,0.16348931342825204,0.16608662873854116,0.4417247209897145,0.991261375758731,0.01457282039896661,0.9832840152470191,0.16630377296957227,0.9928214763532437,0.010000191358858813,0.9851573524852083,0.09730550692167428 -28089,0.3834259876144327,0.012580706594722236,0.15508615386270355,0.15411791622462284,0.4417391221734753,0.8633265732330908,0.01457282039896661,0.9350131976939311,0.16630377296957227,0.8453007293963071,0.010000191358858813,0.9100957370971424,0.09730550692167428 -28091,0.40668842680569683,0.01608383390410695,0.17168781025625449,0.17567979073060824,0.44171196631359044,1.1036187401377864,0.01457282039896661,1.0305528659199892,0.16630377296957227,1.1278053868407172,0.010000191358858813,1.0611099723521134,0.09730550692167428 -28093,0.4048215644542926,0.014245206064937135,0.1656403055909655,0.16345303516167464,0.4417151772864217,0.9775355304453306,0.01457282039896661,0.9992611502793904,0.16630377296957227,0.9921110089133285,0.010000191358858813,1.0100844353223253,0.09730550692167428 -28095,0.4148216004019489,0.01669578813342179,0.17663771481347226,0.18003682533935453,0.4416979267622536,1.1446873248618032,0.01457282039896661,1.059577466024833,0.16630377296957227,1.1695626949893105,0.010000191358858813,1.096816502749505,0.09730550692167428 -28097,0.4183274465518778,0.01807139691504043,0.18184564226427283,0.18888450804720391,0.44168881115473735,1.2391314174820063,0.01457282039896661,1.0897732842990635,0.16630377296957227,1.2728278554203638,0.010000191358858813,1.1451593926110815,0.09730550692167428 -28099,0.3913048313019437,0.015058269499504865,0.16424666793866674,0.17074970195260222,0.4417288336159563,1.0341354296797425,0.01457282039896661,0.9866589846252247,0.16630377296957227,1.0322906964978595,0.010000191358858813,0.9960164679310027,0.09730550692167428 -28101,0.40283247492575164,0.01639495421460562,0.170873688503627,0.1778553055306324,0.4417097789917989,1.124521356690719,0.01457282039896661,1.0262376159908633,0.16630377296957227,1.1520256912483453,0.010000191358858813,1.0640651613923584,0.09730550692167428 -28103,0.39124541239754845,0.014654624339087086,0.16458293499202148,0.16965319269056758,0.4417198287964758,1.0060016935534533,0.01457282039896661,0.9889724405880391,0.16630377296957227,0.9877704023587359,0.010000191358858813,0.987081868900247,0.09730550692167428 -28105,0.3497263469469197,0.01070444406265044,0.1371455106326185,0.13994450393617097,0.4417732156872921,0.7345984077799237,0.01457282039896661,0.829429388163252,0.16630377296957227,0.7243010975661726,0.010000191358858813,0.76631755132999,0.09730550692167428 -28107,0.3933614640194145,0.014305857582553606,0.1621934991532996,0.1649812469514928,0.44172904739976065,0.9820436962046922,0.01457282039896661,0.975370359086503,0.16630377296957227,0.9862774023711534,0.010000191358858813,0.981778965053822,0.09730550692167428 -28109,0.4129339519950844,0.01571589218326616,0.17256989489459473,0.1733943260256153,0.4417034035986187,1.0787127035389923,0.01457282039896661,1.0367373270306564,0.16630377296957227,1.103141788037342,0.010000191358858813,1.0675733791402333,0.09730550692167428 -28111,0.40634314540875627,0.0153642227362616,0.16892203003106235,0.17069250885231302,0.44171341434568767,1.0547017551586402,0.01457282039896661,1.01580810051089,0.16630377296957227,1.0788821415174974,0.010000191358858813,1.0412936602248142,0.09730550692167428 -28113,0.4000110984826031,0.015503186556229835,0.1681066739128582,0.172590961902077,0.4417187463708658,1.0640567094107265,0.01457282039896661,1.0095675414527796,0.16630377296957227,1.0762457535591374,0.010000191358858813,1.0322731727109795,0.09730550692167428 -28115,0.39352359907420276,0.014316951288018775,0.1628226368243847,0.16478298457438195,0.44172545542743236,0.9825491281174216,0.01457282039896661,0.9799473373291826,0.16630377296957227,0.9854396347829902,0.010000191358858813,0.9810310087230619,0.09730550692167428 -28117,0.4090003692083075,0.01609706038232151,0.17230662027500934,0.17580540107852904,0.4417049658621125,1.1046806033691547,0.01457282039896661,1.0348487635625898,0.16630377296957227,1.1321660397774675,0.010000191358858813,1.0678019203336337,0.09730550692167428 -28119,0.40016950363096426,0.01540428168003289,0.1671623571075773,0.17141748439986085,0.4417167329545827,1.0575970020390764,0.01457282039896661,1.0066056201985853,0.16630377296957227,1.0782295731180955,0.010000191358858813,1.0314428329089873,0.09730550692167428 -28121,0.3930623552436459,0.012973015405988178,0.15895392288349042,0.1558835840522539,0.4417305991738993,0.8906987387933816,0.01457282039896661,0.9568819202206691,0.16630377296957227,0.8856855331725416,0.010000191358858813,0.94118698255767,0.09730550692167428 -28123,0.38752990787808317,0.014062899770354784,0.16027778578599933,0.16336499860693796,0.44173286043785986,0.9654974803283011,0.01457282039896661,0.9654174824306057,0.16630377296957227,0.9630725727329359,0.010000191358858813,0.959796353259361,0.09730550692167428 -28125,0.40972434079637,0.016678554705548347,0.17641513674197729,0.1844713605203478,0.4416969667199328,1.1438927688982887,0.01457282039896661,1.0582144839321812,0.16630377296957227,1.1314016930961375,0.010000191358858813,1.0818280649368288,0.09730550692167428 -28127,0.4038441745498891,0.015206183320279974,0.16814781771754828,0.1702261289867632,0.44171432325763194,1.0437095477105416,0.01457282039896661,1.010520671422718,0.16630377296957227,1.0610240590408653,0.010000191358858813,1.0327030074222872,0.09730550692167428 -28129,0.4100127363724215,0.016356943444090662,0.17338015843427473,0.17814689767204048,0.44170640320549703,1.12218498449559,0.01457282039896661,1.0404822342522073,0.16630377296957227,1.1461375805293235,0.010000191358858813,1.0793673025029817,0.09730550692167428 -28131,0.3988593347270315,0.014245396040833613,0.16432900412887314,0.16433186886408713,0.44171838119352375,0.9776907295006636,0.01457282039896661,0.9904532577695768,0.16630377296957227,0.9839643929936721,0.010000191358858813,0.9923522107444455,0.09730550692167428 -28133,0.3763600070903267,0.012314575596450423,0.15140779992323533,0.15082300849599467,0.44174890294172847,0.8447323394484172,0.01457282039896661,0.9105324605998466,0.16630377296957227,0.8378182386335445,0.010000191358858813,0.8787383097076102,0.09730550692167428 -28135,0.39006377261437736,0.013085632619628832,0.1592396861458083,0.15724698676002852,0.441725770292525,0.8977432224091543,0.01457282039896661,0.9592993648930457,0.16630377296957227,0.8835074970476728,0.010000191358858813,0.9332180872359862,0.09730550692167428 -28137,0.38943609418548675,0.013676731626982627,0.15908109076828264,0.16083564658894406,0.4417322051421822,0.9388088340268412,0.01457282039896661,0.9586827674513461,0.16630377296957227,0.9392388201774137,0.010000191358858813,0.9593918675213156,0.09730550692167428 -28139,0.40717974324646306,0.01576912443933079,0.17126582008334948,0.17396949173364237,0.4417066436498844,1.0817405116282275,0.01457282039896661,1.030372152178143,0.16630377296957227,1.0997894418321397,0.010000191358858813,1.0538627336749233,0.09730550692167428 -28141,0.43373644155859925,0.0186665862630417,0.1893284433132781,0.194373513886673,0.4416673320030504,1.2805159635775656,0.01457282039896661,1.135918471614638,0.16630377296957227,1.3097190030774726,0.010000191358858813,1.1955876901515952,0.09730550692167428 -28143,0.3628327471480367,0.011063261048518777,0.14199489585024144,0.14268008425367526,0.4417756957907428,0.7589855520245655,0.01457282039896661,0.8562080985045019,0.16630377296957227,0.7445713314855804,0.010000191358858813,0.8192645916066096,0.09730550692167428 -28145,0.40636406998114083,0.015537369349906058,0.1701524054713029,0.17234125862020952,0.4417105798572799,1.0661965259910549,0.01457282039896661,1.0216249508274928,0.16630377296957227,1.0853260431248473,0.010000191358858813,1.0450801100410954,0.09730550692167428 -28147,0.40793864501418997,0.016895073126746082,0.17459253303442807,0.18159895453680128,0.4417057140072192,1.1583291100082787,0.01457282039896661,1.0471608705150333,0.16630377296957227,1.1803022802676426,0.010000191358858813,1.0857791147790423,0.09730550692167428 -28149,0.39930812002387067,0.014297372380461547,0.16521559062699304,0.1658599057449332,0.44171861247425237,0.9814556694623316,0.01457282039896661,0.9923434861398212,0.16630377296957227,0.9766990179163793,0.010000191358858813,0.9968637263090798,0.09730550692167428 -28151,0.3866317741285585,0.013972224979456098,0.15926522412897648,0.16305319555242115,0.4417356838487718,0.9589501220828913,0.01457282039896661,0.9577856497873756,0.16630377296957227,0.9576562310544683,0.010000191358858813,0.957946160085184,0.09730550692167428 -28153,0.4010899528929882,0.014772269918625167,0.16684429653481248,0.16877105602727288,0.4417169793781978,1.0145508706913584,0.01457282039896661,1.0018447416171488,0.16630377296957227,1.016506499253345,0.010000191358858813,1.0113606478442843,0.09730550692167428 -28155,0.41248721680524936,0.017068970064625988,0.17806347089920543,0.18355339361554357,0.4416962677550502,1.1708365313963955,0.01457282039896661,1.068041792256269,0.16630377296957227,1.1838488636876412,0.010000191358858813,1.0974655211763151,0.09730550692167428 -28157,0.4044463501466927,0.015187205087664711,0.17119905054075052,0.1730441298960938,0.44170571365448474,1.0418262598970291,0.01457282039896661,1.0285598540796268,0.16630377296957227,1.0267356244699153,0.010000191358858813,1.0243184830875687,0.09730550692167428 -28159,0.41867430680443474,0.017721502143651258,0.1811906662932345,0.18742762398383805,0.44169127050480395,1.2152631683995807,0.01457282039896661,1.0871876798281195,0.16630377296957227,1.239810286178325,0.010000191358858813,1.1320434744593335,0.09730550692167428 -28161,0.4196006644711494,0.017275003436851812,0.18050924034460275,0.18422074149291975,0.44168819991825814,1.1843878990597427,0.01457282039896661,1.0833743760020398,0.16630377296957227,1.2080473913692047,0.010000191358858813,1.1262624690191423,0.09730550692167428 -28163,0.38836875658349046,0.013626043610500516,0.15908497796923587,0.15972868068439044,0.44173087906659814,0.9354930788866281,0.01457282039896661,0.9567247558472822,0.16630377296957227,0.9374650412194812,0.010000191358858813,0.9457842169346826,0.09730550692167428 -29001,0.3704234730769796,0.013687486874134654,0.15413983466045306,0.1610742522344557,0.44174067872407996,0.9400527217034788,0.01457282039896661,0.9300533472026784,0.16630377296957227,0.9314573879569934,0.010000191358858813,0.90369680019509,0.09730550692167428 -29003,0.42162717310438463,0.01680433451925442,0.1798216566879099,0.1812667293115802,0.4416867659822147,1.1526962844762614,0.01457282039896661,1.0805332178519569,0.16630377296957227,1.173436879006727,0.010000191358858813,1.1200743236999045,0.09730550692167428 -29005,0.45317488561556596,0.0221532424645586,0.20821422435208037,0.2205703811961695,0.44162071616807363,1.519624866684179,0.01457282039896661,1.2500484813614772,0.16630377296957227,1.535952789141516,0.010000191358858813,1.3308348299505721,0.09730550692167428 -29007,0.41164092882973224,0.017125655135600534,0.1783691386257032,0.18482652261405727,0.44169253539011005,1.1749570263125362,0.01457282039896661,1.0703245403895292,0.16630377296957227,1.1813475616460525,0.010000191358858813,1.0949909569446084,0.09730550692167428 -29009,0.4227887677456618,0.017562918454024735,0.18123153861560892,0.18564742292327263,0.4416902929830303,1.2040234851416542,0.01457282039896661,1.087068043467026,0.16630377296957227,1.239632183002725,0.010000191358858813,1.1432442576039925,0.09730550692167428 -29011,0.4139678305331798,0.01801363254600467,0.181653546835515,0.1909999793783872,0.44169021174219014,1.2357882665478233,0.01457282039896661,1.0901014898953343,0.16630377296957227,1.2438737375815982,0.010000191358858813,1.1266316079765408,0.09730550692167428 -29013,0.4221476638847287,0.01806992193792953,0.18388908659042386,0.19017235956026107,0.4416820414010993,1.2390210705334659,0.01457282039896661,1.1035273214726131,0.16630377296957227,1.2609123896193006,0.010000191358858813,1.1522271135532463,0.09730550692167428 -29015,0.49521673819289524,0.024293016442476,0.22343956117380737,0.22972024624060883,0.44157382316771343,1.6677029446104563,0.01457282039896661,1.3397060150197624,0.16630377296957227,1.767652606927863,0.010000191358858813,1.5057875080114433,0.09730550692167428 -29017,0.4252859125646621,0.017738815467629176,0.18356275087929558,0.18787526427947743,0.4416801585726122,1.2163194865909974,0.01457282039896661,1.1036299033821966,0.16630377296957227,1.2412901857163519,0.010000191358858813,1.153660705263333,0.09730550692167428 -29019,0.36354126990438124,0.011232510001503451,0.144472098437026,0.14407133648836862,0.4417586447547225,0.7702771871833131,0.01457282039896661,0.8692371185147612,0.16630377296957227,0.7531256757839135,0.010000191358858813,0.8163403462547254,0.09730550692167428 -29021,0.402074540599185,0.015623527337175095,0.17096128804988203,0.17428601726706697,0.44170780496492923,1.0718656835354536,0.01457282039896661,1.0263185713428553,0.16630377296957227,1.0716766672027567,0.010000191358858813,1.0319177697320008,0.09730550692167428 -29023,0.42225158177424205,0.017481964860795264,0.18246484400798885,0.18684039991274382,0.44168430440379014,1.1987884132148763,0.01457282039896661,1.095296384239934,0.16630377296957227,1.2127051877964108,0.010000191358858813,1.1345284475859414,0.09730550692167428 -29025,0.420976429635063,0.017918539544081603,0.18396820960854576,0.19158130396622897,0.4416826134528513,1.2292952150763097,0.01457282039896661,1.1041301631655993,0.16630377296957227,1.2316196362606204,0.010000191358858813,1.1462573702204781,0.09730550692167428 -29027,0.3980417964755656,0.013683998044290374,0.16340283037301756,0.16102341311687549,0.4417173650083955,0.9387647298892985,0.01457282039896661,0.9853909495495998,0.16630377296957227,0.9321879561029746,0.010000191358858813,0.974420102267352,0.09730550692167428 -29029,0.4720620765740029,0.021322334499094334,0.20858038499142506,0.2112351027670392,0.4416114710139704,1.4637148194285996,0.01457282039896661,1.2517140242646463,0.16630377296957227,1.526991512982792,0.010000191358858813,1.3675017310459396,0.09730550692167428 -29031,0.4002365905145008,0.01546493484993901,0.16970994788919527,0.17380188646417571,0.4417077928445847,1.0608025873129212,0.01457282039896661,1.0204822522817742,0.16630377296957227,1.057506444614795,0.010000191358858813,1.0240383182826849,0.09730550692167428 -29033,0.43296188510213285,0.019989635583253017,0.1938265906104459,0.2043627618042086,0.4416572265454407,1.3712011824226473,0.01457282039896661,1.1636685270108962,0.16630377296957227,1.3932089570832937,0.010000191358858813,1.2259722362434617,0.09730550692167428 -29035,0.42505328483165317,0.01767796634237371,0.18183315941305483,0.18506846514099556,0.44169040087764233,1.212564401990532,0.01457282039896661,1.0911753877593742,0.16630377296957227,1.2591286973843263,0.010000191358858813,1.1541929918697833,0.09730550692167428 -29037,0.40018802745584137,0.014635217178829325,0.1658255720519711,0.16645833358457116,0.44171838812629904,1.0043623246500013,0.01457282039896661,0.9973897269916021,0.16630377296957227,1.0139768138773633,0.010000191358858813,1.0074478679589414,0.09730550692167428 -29039,0.4511462103234596,0.02177702687796535,0.2026998735699103,0.21378499651018923,0.4416371101734916,1.4944618099243026,0.01457282039896661,1.217173033022649,0.16630377296957227,1.557507509865539,0.010000191358858813,1.3244506873413342,0.09730550692167428 -29041,0.4466703082162139,0.021857835991696363,0.20466878845935102,0.21650509370150445,0.44163070334448024,1.4996779167962502,0.01457282039896661,1.2273257239156645,0.16630377296957227,1.529642538795434,0.010000191358858813,1.3095275900039187,0.09730550692167428 -29043,0.3913149505005305,0.013295136677528702,0.1583904717000672,0.15707842760260812,0.4417348327850168,0.912609625295937,0.01457282039896661,0.9538663595088315,0.16630377296957227,0.9182277317047949,0.010000191358858813,0.9496111679508907,0.09730550692167428 -29045,0.4301936586346934,0.01835482914864554,0.18740799278319648,0.1931138631534868,0.44167465764979985,1.2587303308700621,0.01457282039896661,1.1245300841161066,0.16630377296957227,1.2791801298195962,0.010000191358858813,1.180169650003636,0.09730550692167428 -29047,0.3912764828643827,0.013199504882570826,0.15935616530582547,0.1576425929202894,0.4417312586168588,0.9058376682252468,0.01457282039896661,0.9592339552168658,0.16630377296957227,0.8973295111904134,0.010000191358858813,0.9421558786803719,0.09730550692167428 -29049,0.4185027318751176,0.016648829226202325,0.17822055496977224,0.18107942010719405,0.44169200131291825,1.1419997456120572,0.01457282039896661,1.071897891550508,0.16630377296957227,1.1560214398398507,0.010000191358858813,1.1073472317104058,0.09730550692167428 -29051,0.39726765989245083,0.014159060583713396,0.1648033263830852,0.16479363232368072,0.4417175811778855,0.9721065464917049,0.01457282039896661,0.9912180000760417,0.16630377296957227,0.9632950372097426,0.010000191358858813,0.984153011727655,0.09730550692167428 -29053,0.4115413639138511,0.01650351015379733,0.17603642820644372,0.1795563074725514,0.44169475123164664,1.1325520114541479,0.01457282039896661,1.0576268949026009,0.16630377296957227,1.1457735791111354,0.010000191358858813,1.0774306694503066,0.09730550692167428 -29055,0.4203130533874889,0.0171469626759679,0.17918945444421858,0.1832196052413289,0.4416917325799835,1.17588759456823,0.01457282039896661,1.0753994049788504,0.16630377296957227,1.2070437391012496,0.010000191358858813,1.124153466932848,0.09730550692167428 -29057,0.4537563698628225,0.021678353043482416,0.20383173819102168,0.21418652108085937,0.44163023801271295,1.4883774773192195,0.01457282039896661,1.2238018393580568,0.16630377296957227,1.5423940274811945,0.010000191358858813,1.3279561978996113,0.09730550692167428 -29059,0.42451466477002675,0.01758702033059243,0.1831036760406357,0.18804029318680926,0.4416858206628582,1.2059343755258092,0.01457282039896661,1.0987327817924764,0.16630377296957227,1.2201161690074083,0.010000191358858813,1.1445389064343992,0.09730550692167428 -29061,0.42234834110413333,0.018449103906997916,0.182922585004759,0.19130901285899604,0.4416896808712607,1.2651916833229637,0.01457282039896661,1.0973335150342458,0.16630377296957227,1.3102786193600036,0.010000191358858813,1.1665511603805139,0.09730550692167428 -29063,0.4192904399737116,0.014890550331676973,0.17598668307418597,0.16886996915671873,0.44167858875701893,1.02194498680594,0.01457282039896661,1.0602648944307957,0.16630377296957227,1.0150563733652607,0.010000191358858813,1.0475237895361604,0.09730550692167428 -29065,0.4343935631637862,0.019127200549908067,0.19124192167128423,0.19829444908639987,0.44166138584703996,1.3125048021114976,0.01457282039896661,1.148491047171059,0.16630377296957227,1.336732622416725,0.010000191358858813,1.210012241566433,0.09730550692167428 -29067,0.440755882744337,0.019456335300393677,0.1929913389231967,0.19922270364694752,0.4416574157797214,1.3350463054931225,0.01457282039896661,1.1574847227284155,0.16630377296957227,1.3765683051582362,0.010000191358858813,1.2411245826103172,0.09730550692167428 -29069,0.41757554730461055,0.01760718918324587,0.18005473545141357,0.1864064238308752,0.44169493113546754,1.206948563378928,0.01457282039896661,1.0798804566060984,0.16630377296957227,1.2346177661957967,0.010000191358858813,1.127650319964994,0.09730550692167428 -29071,0.405996723113442,0.014985669523504748,0.1694231843966101,0.16989173320455953,0.4417087759225588,1.0286744386091735,0.01457282039896661,1.0191182359673008,0.16630377296957227,1.031018942636937,0.010000191358858813,1.0289400574099066,0.09730550692167428 -29073,0.4448117068650048,0.01999710588284579,0.19720538520663983,0.2038299606077074,0.4416443409304593,1.3722056153230986,0.01457282039896661,1.1839036358006387,0.16630377296957227,1.4043674873640204,0.010000191358858813,1.2599763134028472,0.09730550692167428 -29075,0.4285962447280767,0.02068767208508452,0.19487866413052848,0.2099816822695199,0.4416574577865785,1.4187134315730396,0.01457282039896661,1.168968503787877,0.16630377296957227,1.4348509652464068,0.010000191358858813,1.2342073421941855,0.09730550692167428 -29077,0.40027765033258444,0.015228484174999422,0.1688800105201304,0.17172927124495432,0.4417094805301587,1.0448542253925384,0.01457282039896661,1.01463363857029,0.16630377296957227,1.0445386312113762,0.010000191358858813,1.014541857626522,0.09730550692167428 -29079,0.43239156579373894,0.020234065907495644,0.1940428804558419,0.20739175970872098,0.44165789690811347,1.3884925258403555,0.01457282039896661,1.166656983570483,0.16630377296957227,1.40370537760993,0.010000191358858813,1.2335757735954296,0.09730550692167428 -29081,0.4401643071597661,0.02082261607410923,0.19697398053820442,0.20867467752445457,0.4416586114257679,1.428636128570016,0.01457282039896661,1.1814046013134347,0.16630377296957227,1.4697693475625897,0.010000191358858813,1.2672824917917702,0.09730550692167428 -29083,0.44008944022831864,0.01990007608812375,0.19553497427835675,0.2030979701282964,0.4416530977918054,1.3650052856727202,0.01457282039896661,1.173548543936602,0.16630377296957227,1.3932462442845175,0.010000191358858813,1.2413415530538985,0.09730550692167428 -29085,0.5129364121157535,0.027161393131223795,0.23725183495491045,0.25046755936953874,0.44154364739739793,1.8645463078512883,0.01457282039896661,1.4246679418865709,0.16630377296957227,1.969627816969067,0.010000191358858813,1.6219740411000003,0.09730550692167428 -29087,0.4573145745689481,0.02211597803734382,0.20844722123698362,0.2181215348881299,0.4416205620646855,1.5173209219789496,0.01457282039896661,1.2504680834830477,0.16630377296957227,1.5537536559954053,0.010000191358858813,1.338128549858373,0.09730550692167428 -29089,0.41165542041029757,0.017401878335183207,0.1789188457078809,0.1863248216786047,0.4416902022901911,1.1940390547831377,0.01457282039896661,1.0742711507525677,0.16630377296957227,1.2048500160954525,0.010000191358858813,1.1096751122576944,0.09730550692167428 -29091,0.4180731080413576,0.01782586716500817,0.18125705984291082,0.18830467787608812,0.4416900431529436,1.2224806716877041,0.01457282039896661,1.087620891213846,0.16630377296957227,1.2455580850245869,0.010000191358858813,1.1333006253133955,0.09730550692167428 -29093,0.4319662049824755,0.018021239466452073,0.18701505955458086,0.18957980217513243,0.4416709893762452,1.236602869410396,0.01457282039896661,1.1219799834110762,0.16630377296957227,1.2623130692549935,0.010000191358858813,1.1756217695414826,0.09730550692167428 -29095,0.3957383278652844,0.014260691306368842,0.16432684714839338,0.1650093874080842,0.4417209567669399,0.9788731035828384,0.01457282039896661,0.9879724769910921,0.16630377296957227,0.974367474852803,0.010000191358858813,0.981332543466539,0.09730550692167428 -29097,0.3927999801751795,0.014686983984942979,0.16374244293070034,0.1672761497718422,0.441725249550249,1.0081712178685442,0.01457282039896661,0.9843325108523688,0.16630377296957227,1.0133414765011692,0.010000191358858813,0.9870853506162343,0.09730550692167428 -29099,0.39527955773008217,0.012885754637620105,0.15921246883098694,0.15482180148995742,0.4417273663023216,0.8841619503945417,0.01457282039896661,0.9605333721842244,0.16630377296957227,0.8816141896926695,0.010000191358858813,0.9489234709733682,0.09730550692167428 -29101,0.36740296836156666,0.012172218498999923,0.14769002315173901,0.14971196912187057,0.4417550528649795,0.8352963525456534,0.01457282039896661,0.8889642288433953,0.16630377296957227,0.8331451611007434,0.010000191358858813,0.8562979611974801,0.09730550692167428 -29103,0.43693258767181387,0.020089387081273124,0.1952739192922429,0.20467315095536115,0.44165504040570247,1.3782728380842026,0.01457282039896661,1.171116904381715,0.16630377296957227,1.4051390131782198,0.010000191358858813,1.2451377194767455,0.09730550692167428 -29105,0.41127654468448116,0.016188837682429038,0.1744066911921184,0.1779482016387972,0.4417004519533674,1.110732421469217,0.01457282039896661,1.047438820221511,0.16630377296957227,1.123029705779568,0.010000191358858813,1.0763688629089456,0.09730550692167428 -29107,0.41861557234543956,0.017387009581809568,0.18082398584859716,0.18541953209959347,0.4416867113417472,1.191891828082475,0.01457282039896661,1.0853725419557896,0.16630377296957227,1.2105893918617434,0.010000191358858813,1.1237025876347602,0.09730550692167428 -29109,0.4117633291547935,0.016952429012286267,0.17606389988063273,0.1812955358186528,0.44170152905806526,1.1621778365073347,0.01457282039896661,1.0562079054424203,0.16630377296957227,1.1904844781682047,0.010000191358858813,1.0965225482564964,0.09730550692167428 -29111,0.40840541726414387,0.016869122105896743,0.17583615810727424,0.18352518036224483,0.44169598905497426,1.1567076752138532,0.01457282039896661,1.0565009274796648,0.16630377296957227,1.1630671005078235,0.010000191358858813,1.0885209097987012,0.09730550692167428 -29113,0.38206606980323143,0.012458251340685782,0.15347690087821203,0.1528921136520282,0.4417439247072945,0.8549923113244554,0.01457282039896661,0.9251790207788294,0.16630377296957227,0.8429211044159461,0.010000191358858813,0.9047536861528144,0.09730550692167428 -29115,0.4318876969074864,0.019567659612083937,0.19182266327651593,0.20094699012173217,0.44166510835089606,1.342507972452399,0.01457282039896661,1.1508373649429173,0.16630377296957227,1.3680095597724633,0.010000191358858813,1.2157450683523385,0.09730550692167428 -29117,0.4263040365340848,0.019274442994159664,0.19212252193786317,0.20225958037061378,0.4416599641912389,1.3221087465205108,0.01457282039896661,1.1526374676362396,0.16630377296957227,1.3076183377241806,0.010000191358858813,1.1857782743708452,0.09730550692167428 -29119,0.3905319410719133,0.013641375934478894,0.15876509068021133,0.16005591641751793,0.44173626130189303,0.936358331485982,0.01457282039896661,0.9565547508393303,0.16630377296957227,0.9410394736455574,0.010000191358858813,0.9613612922481483,0.09730550692167428 -29121,0.43527036443760914,0.020349652356747995,0.19526895596586274,0.2066747863813116,0.44165759154221235,1.3960958370266066,0.01457282039896661,1.1722229880319528,0.16630377296957227,1.4221432125861506,0.010000191358858813,1.2432709887884936,0.09730550692167428 -29123,0.4208568516180305,0.017906432268739184,0.18457149107078058,0.1924042238126954,0.4416782907331519,1.2285732724910576,0.01457282039896661,1.108152455706716,0.16630377296957227,1.2204931194057833,0.010000191358858813,1.1393700720812974,0.09730550692167428 -29125,0.4273334585155464,0.018557312657265262,0.18619800374304885,0.19227858573569373,0.44167561885226997,1.273139333384576,0.01457282039896661,1.1175126602870895,0.16630377296957227,1.3129020598461114,0.010000191358858813,1.1805020601436595,0.09730550692167428 -29127,0.41349952472423135,0.017455708941758685,0.18001856907548036,0.18730299232910036,0.44169082536212645,1.1976317884849177,0.01457282039896661,1.080620705654863,0.16630377296957227,1.2034760274273073,0.010000191358858813,1.1079404360027585,0.09730550692167428 -29129,0.4416164563227497,0.02091927630977692,0.19717335079511267,0.207110099072899,0.4416560038836667,1.4351520394528117,0.01457282039896661,1.1818385424554703,0.16630377296957227,1.4966749338639402,0.010000191358858813,1.2786793368319367,0.09730550692167428 -29131,0.4177389078834877,0.016838008103576847,0.1791685330687275,0.18228840282122313,0.44169039495172047,1.1546126874596625,0.01457282039896661,1.0756356642723297,0.16630377296957227,1.1664444671986463,0.010000191358858813,1.1078488893689,0.09730550692167428 -29133,0.40891953436832656,0.016148231909481586,0.1749185255382859,0.17895191278175834,0.4416965967558871,1.1073709057571328,0.01457282039896661,1.0513100515054439,0.16630377296957227,1.1025819462606397,0.010000191358858813,1.0667299401582293,0.09730550692167428 -29135,0.4034437465665739,0.015350003448465514,0.16934033408164015,0.17119926356800447,0.44171180881902494,1.053063010199868,0.01457282039896661,1.0169672246022192,0.16630377296957227,1.0651599968285808,0.010000191358858813,1.0286741484383723,0.09730550692167428 -29137,0.43139129041803514,0.01856822930074769,0.18881889569573201,0.19391587423890605,0.44166675048312604,1.273762752425586,0.01457282039896661,1.133318032968973,0.16630377296957227,1.297516125146174,0.010000191358858813,1.1926178189642849,0.09730550692167428 -29139,0.4296084366547949,0.018649664723497453,0.18849802423674242,0.19472817199315207,0.4416695811805277,1.2791945737190997,0.01457282039896661,1.1311211967430155,0.16630377296957227,1.3003627845037016,0.010000191358858813,1.1856957517125974,0.09730550692167428 -29141,0.4570222560112452,0.02153645012742701,0.20495990043267115,0.21375960127510346,0.4416317772680216,1.4778181572689453,0.01457282039896661,1.2303776150584234,0.16630377296957227,1.5244462857314258,0.010000191358858813,1.3319197902352566,0.09730550692167428 -29143,0.42241357654783596,0.017340790791873062,0.18101538801101247,0.18540667160964425,0.44168651603455966,1.1895692256963097,0.01457282039896661,1.0870285442905208,0.16630377296957227,1.2138739590333358,0.010000191358858813,1.1331505787689418,0.09730550692167428 -29145,0.409216920791584,0.01602465160904493,0.17303244935429823,0.17626079996314734,0.4417049190340411,1.0991168247909155,0.01457282039896661,1.0385915005491273,0.16630377296957227,1.1142949936940287,0.010000191358858813,1.0671361378248199,0.09730550692167428 -29147,0.3712409748195313,0.01396542508265071,0.15614498120781722,0.16447060715132739,0.4417345853718846,0.9585799397848822,0.01457282039896661,0.9429113057641687,0.16630377296957227,0.937079901060367,0.010000191358858813,0.9102954605958676,0.09730550692167428 -29149,0.45001870964200363,0.01989361816543342,0.19674972561188017,0.20089632189663365,0.4416496500446607,1.3646760206684754,0.01457282039896661,1.180191728579707,0.16630377296957227,1.4221618753602463,0.010000191358858813,1.2755313653728493,0.09730550692167428 -29151,0.4065727961787602,0.016254607488457425,0.173634456236462,0.17808359237607632,0.44170167478152333,1.114763544806135,0.01457282039896661,1.0448140509806012,0.16630377296957227,1.1223392505279128,0.010000191358858813,1.0658502445230618,0.09730550692167428 -29153,0.476531796246321,0.02247916298049569,0.21213033795093011,0.21695192685021375,0.4416048207266643,1.5434367362978527,0.01457282039896661,1.272105310053286,0.16630377296957227,1.6338571628499352,0.010000191358858813,1.4108158282367413,0.09730550692167428 -29155,0.39724186135553885,0.015731349610714224,0.16740372715250645,0.17338803126549096,0.4417223315974502,1.079771376968679,0.01457282039896661,1.0049164372859938,0.16630377296957227,1.0969243273045093,0.010000191358858813,1.0293382794529276,0.09730550692167428 -29157,0.412664901164594,0.01657509813355943,0.17649108674962616,0.18008433087338224,0.44169814002056473,1.1364949029507634,0.01457282039896661,1.0592878196540978,0.16630377296957227,1.148598179027476,0.010000191358858813,1.0863560579687404,0.09730550692167428 -29159,0.40222058711223885,0.015804608988171872,0.170152081172968,0.17410992157628538,0.44171291642708943,1.0841431773335684,0.01457282039896661,1.0215577428761438,0.16630377296957227,1.0989977015067045,0.010000191358858813,1.0402221541077963,0.09730550692167428 -29161,0.3911759767111639,0.015235657790662698,0.16517108350570733,0.17147484579006517,0.44171764092863425,1.045394435649636,0.01457282039896661,0.9942289950244085,0.16630377296957227,1.0487642226609326,0.010000191358858813,0.995892615388319,0.09730550692167428 -29163,0.41805284645270646,0.01615736445568127,0.17802930327075525,0.17869394342498116,0.4416876837042645,1.1081175616148289,0.01457282039896661,1.0700765047171088,0.16630377296957227,1.1070840762307548,0.010000191358858813,1.087646377016575,0.09730550692167428 -29165,0.39975029368092596,0.013425651100397692,0.16353788624660956,0.15984389189873735,0.4417177362605309,0.9210540018226867,0.01457282039896661,0.9860168004671802,0.16630377296957227,0.9076107296835532,0.010000191358858813,0.9719656214128346,0.09730550692167428 -29167,0.40551359726823766,0.017007040991853788,0.17481424935700496,0.18329689128477647,0.4417015209807562,1.1660781043041706,0.01457282039896661,1.0504931693928845,0.16630377296957227,1.1816672667433776,0.010000191358858813,1.0826612677079637,0.09730550692167428 -29169,0.3342776070244724,0.009365959932421081,0.12766216217269374,0.13139057783748032,0.4417974922743852,0.6424873072832997,0.01457282039896661,0.7694462144536731,0.16630377296957227,0.6183627898652606,0.010000191358858813,0.6975025841009805,0.09730550692167428 -29171,0.43145421341918977,0.018755494951766268,0.1869605014000505,0.19449543491056123,0.4416793080547351,1.2862882004132798,0.01457282039896661,1.1197359192329772,0.16630377296957227,1.3254473945169916,0.010000191358858813,1.193588546956161,0.09730550692167428 -29173,0.43588048929723355,0.017544642310629823,0.1869776693678638,0.18588215958909138,0.44166442052019195,1.2036337186309691,0.01457282039896661,1.1229734907859488,0.16630377296957227,1.232040343396231,0.010000191358858813,1.1760634957934144,0.09730550692167428 -29175,0.4062001347760642,0.015294555289527922,0.17173582048640795,0.17325629068188875,0.4417024439886672,1.0492822541158153,0.01457282039896661,1.031948617067512,0.16630377296957227,1.0394021764550605,0.010000191358858813,1.0327490607509016,0.09730550692167428 -29177,0.4126282123145393,0.015478683832055418,0.17233579737786456,0.17294489718312034,0.44170272163052543,1.0613036391733055,0.01457282039896661,1.036000361998535,0.16630377296957227,1.0733739219005853,0.010000191358858813,1.0614209683244247,0.09730550692167428 -29179,0.4459686081507437,0.020183718102197747,0.19663846578287691,0.20355284503294163,0.44164635384746104,1.3860245116119339,0.01457282039896661,1.1803140681949165,0.16630377296957227,1.4386060246135064,0.010000191358858813,1.2693895249649751,0.09730550692167428 -29181,0.4317344507910019,0.018629667521962018,0.18781373790772998,0.19384062016415798,0.4416710613042578,1.2782324809133756,0.01457282039896661,1.1278532577753637,0.16630377296957227,1.3127283162255239,0.010000191358858813,1.1911217014618751,0.09730550692167428 -29183,0.3911319027563496,0.012917964124014554,0.15792819877073622,0.15537705194654447,0.4417311254130122,0.8863688478850696,0.01457282039896661,0.952735525011563,0.16630377296957227,0.8808386723441533,0.010000191358858813,0.9377316277181862,0.09730550692167428 -29185,0.4672343416011885,0.022558496220823614,0.21273175314748882,0.22206081520376658,0.4416041953612091,1.5483557988976187,0.01457282039896661,1.2770347818797836,0.16630377296957227,1.5840986714976126,0.010000191358858813,1.381630593662059,0.09730550692167428 -29186,0.42805696179094854,0.017094533962892296,0.18292293915451113,0.18247459071520636,0.44167509076929057,1.1721271498707582,0.01457282039896661,1.1017928908929924,0.16630377296957227,1.1977487669285587,0.010000191358858813,1.143689735099658,0.09730550692167428 -29187,0.4115546103083534,0.015599109625977159,0.17345241221730096,0.1731989814840415,0.44169838098095876,1.0703110335910835,0.01457282039896661,1.0422148353702627,0.16630377296957227,1.0800515183637858,0.010000191358858813,1.0534165493061105,0.09730550692167428 -29189,0.4128602320353464,0.016363603396734663,0.17696688178049164,0.17965114177942312,0.4416924877812518,1.1222853200428156,0.01457282039896661,1.0624557056834796,0.16630377296957227,1.1229536583666198,0.010000191358858813,1.080835944167244,0.09730550692167428 -29195,0.4102001416695035,0.017035703122286007,0.17764961075337624,0.185091174762388,0.4416949248412101,1.1685616761978652,0.01457282039896661,1.066950487946385,0.16630377296957227,1.1661832623439063,0.010000191358858813,1.0900594695961345,0.09730550692167428 -29197,0.43957444133677215,0.021625136989915902,0.1988208442533287,0.21451877728206828,0.4416533814733322,1.4838190032221021,0.01457282039896661,1.1919462727222823,0.16630377296957227,1.5294465420225722,0.010000191358858813,1.2832365093561244,0.09730550692167428 -29199,0.4161078299803829,0.01881958315104292,0.18710108644895332,0.20007285550101817,0.4416827014973409,1.2910252209973656,0.01457282039896661,1.1210824973323927,0.16630377296957227,1.2664932866811554,0.010000191358858813,1.1542149291191568,0.09730550692167428 -29201,0.4099325301589664,0.015987761674493353,0.17308544608239562,0.17573943699239436,0.44170387618646,1.096735476055578,0.01457282039896661,1.0395811355922016,0.16630377296957227,1.1135289319204198,0.010000191358858813,1.0668391815993776,0.09730550692167428 -29203,0.43124747971227795,0.017557882135706263,0.18414110258569927,0.18696118056227712,0.44168055321269467,1.2048025841997465,0.01457282039896661,1.1055288060486084,0.16630377296957227,1.234121832027065,0.010000191358858813,1.1637355597827705,0.09730550692167428 -29205,0.43143807889326075,0.01986744606848545,0.19283045218574069,0.20349632183254918,0.44166260941506597,1.3634430757042528,0.01457282039896661,1.1571023221952137,0.16630377296957227,1.3854332444154376,0.010000191358858813,1.2216268247968456,0.09730550692167428 -29207,0.42497102726636327,0.01823802060790603,0.18584077296167656,0.1917637577622139,0.44167808143390586,1.2509400341553882,0.01457282039896661,1.1152169105423857,0.16630377296957227,1.2683152609539792,0.010000191358858813,1.1597460607309207,0.09730550692167428 -29209,0.4817944852621816,0.023120946825831486,0.2157023216467382,0.22191763726133135,0.4415977959329783,1.5873279348663614,0.01457282039896661,1.2936985897690778,0.16630377296957227,1.676365741700017,0.010000191358858813,1.439948523181071,0.09730550692167428 -29211,0.42750167262064565,0.018553895882793235,0.1870824815356245,0.1940788170520876,0.44167751926498544,1.2724172178977402,0.01457282039896661,1.121652940858029,0.16630377296957227,1.2920202093012456,0.010000191358858813,1.1731872303476645,0.09730550692167428 -29213,0.4302041601750778,0.01835085054035717,0.18574920468225997,0.19047652649910413,0.44167692715576656,1.258876351193176,0.01457282039896661,1.1155262269560238,0.16630377296957227,1.3053229681585399,0.010000191358858813,1.1799261810976294,0.09730550692167428 -29215,0.43234834822906987,0.018475297562208202,0.1882308904112563,0.19311847626684542,0.4416698884255009,1.2675815218158437,0.01457282039896661,1.1302773631271013,0.16630377296957227,1.2959044383173335,0.010000191358858813,1.1885359395556023,0.09730550692167428 -29217,0.4159377976603619,0.017498115829392542,0.18027984311053713,0.18764896090390434,0.4416896144646323,1.1999534625623856,0.01457282039896661,1.0825994598000217,0.16630377296957227,1.2100828067036655,0.010000191358858813,1.1226402355820846,0.09730550692167428 -29219,0.41421175517650544,0.015929381468569332,0.17373229722461592,0.17486914208270998,0.4417040482969583,1.0935229875004788,0.01457282039896661,1.043810440503942,0.16630377296957227,1.1164476260910539,0.010000191358858813,1.0753287838473558,0.09730550692167428 -29221,0.41260294075592097,0.014838440941623163,0.1695296331078159,0.16656352751193293,0.4417066859381389,1.0178159167970149,0.01457282039896661,1.0215584374795563,0.16630377296957227,1.043840885258581,0.010000191358858813,1.0448728607436268,0.09730550692167428 -29223,0.45875836806358317,0.021575559413928344,0.20465003011685962,0.21311890118958204,0.44162922228065393,1.4815406642326847,0.01457282039896661,1.2289687461664203,0.16630377296957227,1.5418352848111514,0.010000191358858813,1.336760644877781,0.09730550692167428 -29225,0.3968551471908958,0.014348819851399427,0.1629919213114493,0.16427330251252675,0.44172723805514835,0.9854328340296359,0.01457282039896661,0.9807267050852627,0.16630377296957227,0.9989480559203404,0.010000191358858813,0.9939566381147824,0.09730550692167428 -29227,0.4524027484861909,0.021847279790409985,0.2055439669973249,0.2131610437052288,0.44162575864797604,1.498555698284143,0.01457282039896661,1.2318808760925646,0.16630377296957227,1.5549111790527812,0.010000191358858813,1.3254989489194473,0.09730550692167428 -29229,0.42270450271558335,0.01778239456978318,0.18115860390867133,0.1868096239949691,0.4416910070626391,1.2194232700020342,0.01457282039896661,1.0881064437735675,0.16630377296957227,1.2626948657771164,0.010000191358858813,1.1506935604120583,0.09730550692167428 -29510,0.38822217614199506,0.013366232988330243,0.15981552901401408,0.15870884237184296,0.4417265395060185,0.9172219547801197,0.01457282039896661,0.9604246255546705,0.16630377296957227,0.9065883602030238,0.010000191358858813,0.9339383774269716,0.09730550692167428 -30001,0.4311896037803288,0.017870501546500432,0.18505255730928327,0.18879193533008373,0.4416713132750444,1.226618408184049,0.01457282039896661,1.1124359099784493,0.16630377296957227,1.26184868128643,0.010000191358858813,1.1733894435656103,0.09730550692167428 -30003,0.3653068874890437,0.012377106321314004,0.14545395076784345,0.1516702541723478,0.4417715906520733,0.8494057318553991,0.01457282039896661,0.8774315733625,0.16630377296957227,0.8482886185328624,0.010000191358858813,0.8703519451294539,0.09730550692167428 -30005,0.38672739727633365,0.014905430495832699,0.16375318120665017,0.17146097534223653,0.4417295242179002,1.023495189663233,0.01457282039896661,0.9833088897255611,0.16630377296957227,1.0007397398429703,0.010000191358858813,0.9831098086797252,0.09730550692167428 -30007,0.42432058540450757,0.0172629452377234,0.18065395728341277,0.18533594023894526,0.4416836460247179,1.1843907363290502,0.01457282039896661,1.0869679112246748,0.16630377296957227,1.2102194872357526,0.010000191358858813,1.1474698612953302,0.09730550692167428 -30009,0.4582907410002667,0.019755166343381793,0.20163429551353312,0.20230768862174842,0.4416257190110876,1.3560555108594885,0.01457282039896661,1.2114638484846272,0.16630377296957227,1.3850933738367925,0.010000191358858813,1.2922767433582274,0.09730550692167428 -30011,0.49965608530201866,0.025203970258120358,0.22982068820756485,0.23733826418557086,0.44155051469383666,1.7311400916316264,0.01457282039896661,1.3830500305708728,0.16630377296957227,1.8066810376092524,0.010000191358858813,1.5391761799920334,0.09730550692167428 -30013,0.41394565438385955,0.01653407377107466,0.17673707963026064,0.17988487093779576,0.441694221410024,1.1343628319543253,0.01457282039896661,1.062030022331953,0.16630377296957227,1.1494791431703266,0.010000191358858813,1.0895188211011684,0.09730550692167428 -30015,0.4183132406996307,0.018241721379738784,0.18406850313517906,0.19275832793677,0.44168656004266216,1.251104209874561,0.01457282039896661,1.103538383520882,0.16630377296957227,1.2569018965771348,0.010000191358858813,1.1525122876449645,0.09730550692167428 -30017,0.43125186177203767,0.019648795015495636,0.1923847267927346,0.20218183842001997,0.4416639340667139,1.3482001641177137,0.01457282039896661,1.1549773615216843,0.16630377296957227,1.3657848900059566,0.010000191358858813,1.2117941969976531,0.09730550692167428 -30019,0.4753089870250322,0.024130552789238556,0.21829606132726367,0.23174537065985767,0.44159849488522296,1.6561952878802133,0.01457282039896661,1.3099734346865477,0.16630377296957227,1.7143938413904287,0.010000191358858813,1.4446746992478299,0.09730550692167428 -30021,0.4368758618511333,0.019255395374355274,0.19340533592197373,0.19957222769206284,0.44165381456859854,1.3212455429404688,0.01457282039896661,1.1618566546203621,0.16630377296957227,1.3375616335823657,0.010000191358858813,1.2156006371180372,0.09730550692167428 -30023,0.45257525925280884,0.019840465815389022,0.20018130885514818,0.20326535646565902,0.44162525967523847,1.3620427506165282,0.01457282039896661,1.2027035378899942,0.16630377296957227,1.3887027503905522,0.010000191358858813,1.2792311075306158,0.09730550692167428 -30025,0.4375796826690843,0.01945628347281341,0.19398109613139025,0.1995046260488143,0.44165246093102,1.3351767120230358,0.01457282039896661,1.16466070209569,0.16630377296957227,1.3626121256538415,0.010000191358858813,1.2269855558205238,0.09730550692167428 -30027,0.4599000099733664,0.022235020250260713,0.20991120012273495,0.21866587335376755,0.44161184973231915,1.5259736888688982,0.01457282039896661,1.2590266905918581,0.16630377296957227,1.5627432202909257,0.010000191358858813,1.3579216981620272,0.09730550692167428 -30029,0.4183439335059391,0.015791761613515143,0.17669641779687112,0.17598040788397235,0.4416936567615312,1.083215688146948,0.01457282039896661,1.0608884820410895,0.16630377296957227,1.0835683293008347,0.010000191358858813,1.0813294412476642,0.09730550692167428 -30031,0.37452285294979576,0.01136987232793451,0.1490851765697935,0.14478529275404375,0.44174824239874577,0.7799186391750339,0.01457282039896661,0.8963967479632915,0.16630377296957227,0.7637059612308684,0.010000191358858813,0.8465605797540503,0.09730550692167428 -30033,0.4503526782677677,0.02146785748473363,0.20437030403529044,0.2162277282543429,0.44162631883292036,1.4734336267636037,0.01457282039896661,1.2268085793435177,0.16630377296957227,1.4900665522250203,0.010000191358858813,1.317787388478485,0.09730550692167428 -30035,0.3691465599566815,0.012420962672363867,0.14720922466883443,0.15058212377515728,0.44176667450865353,0.8523109305545575,0.01457282039896661,0.8867555340800217,0.16630377296957227,0.8583382949000264,0.010000191358858813,0.8763256105155154,0.09730550692167428 -30037,0.47078611360141687,0.022093935742641114,0.21078222214668224,0.21540714879248574,0.4416157775323879,1.5165622045647182,0.01457282039896661,1.2631765172495868,0.16630377296957227,1.5809862889370372,0.010000191358858813,1.3927421351416684,0.09730550692167428 -30039,0.4926668891103414,0.02258399017831108,0.21863328914828106,0.21947868720120806,0.4415831334234446,1.5497900363710535,0.01457282039896661,1.3124863245781049,0.16630377296957227,1.6273483021989912,0.010000191358858813,1.456041595309817,0.09730550692167428 -30041,0.3924104191140755,0.014286700319728656,0.16201391628668027,0.16385631428096212,0.4417292518050062,0.9803977074013345,0.01457282039896661,0.9746282579189445,0.16630377296957227,0.9890269715984253,0.010000191358858813,0.9810028366158512,0.09730550692167428 -30043,0.4442796898339505,0.016170090645326173,0.1861156930504278,0.17733089910723032,0.44165822053003073,1.1076302966019034,0.01457282039896661,1.1161272152542074,0.16630377296957227,1.1250604522242744,0.010000191358858813,1.165977623195029,0.09730550692167428 -30045,0.5083610400504203,0.02743825614000735,0.2413000653940683,0.25493084853280845,0.44152795610259477,1.8846545616830785,0.01457282039896661,1.4481623883340262,0.16630377296957227,1.9470357434772596,0.010000191358858813,1.6129557596945552,0.09730550692167428 -30047,0.4266604763092231,0.017641129346332475,0.18216842812219786,0.1864239693950409,0.4416867515935069,1.2099232383738139,0.01457282039896661,1.0936957699297927,0.16630377296957227,1.249061634406216,0.010000191358858813,1.157324650479893,0.09730550692167428 -30049,0.42149899013356784,0.015977589153780176,0.1774877505064531,0.17682971275457013,0.4416908753133001,1.0955587279399914,0.01457282039896661,1.0661663662974363,0.16630377296957227,1.1061046305193747,0.010000191358858813,1.0946003375443452,0.09730550692167428 -30051,0.44133468233678413,0.01957590476388689,0.1933170419219633,0.19792206818117822,0.44164341415937136,1.3428980303811182,0.01457282039896661,1.1657700705601455,0.16630377296957227,1.3973753786570229,0.010000191358858813,1.254341841309279,0.09730550692167428 -30053,0.47611812441843915,0.021008955331011818,0.2094960189059044,0.20950067263766597,0.44160835313839175,1.442050895434432,0.01457282039896661,1.2575505589805742,0.16630377296957227,1.498812691393701,0.010000191358858813,1.36989946028369,0.09730550692167428 -30055,0.44912210032967625,0.02130757629652823,0.20233489556154904,0.21262633487603805,0.44164087653718714,1.4615516529909003,0.01457282039896661,1.2128477187606954,0.16630377296957227,1.498662309642668,0.010000191358858813,1.310417543426368,0.09730550692167428 -30057,0.4794732959422642,0.021270646562757765,0.21333814309069266,0.2117011764691641,0.44159300118055766,1.4599488709222208,0.01457282039896661,1.2833083737934876,0.16630377296957227,1.501445453179191,0.010000191358858813,1.3817159813573574,0.09730550692167428 -30059,0.43118016553658545,0.01887370116598693,0.19027325610031853,0.1963716839784722,0.4416667264539449,1.2949728507140295,0.01457282039896661,1.1406874010437555,0.16630377296957227,1.3108732768121005,0.010000191358858813,1.194123356884962,0.09730550692167428 -30061,0.46343630605024955,0.020350367106416134,0.2043232031201767,0.20654090105802692,0.4416215017069643,1.397614601166855,0.01457282039896661,1.2272919783645706,0.16630377296957227,1.4355909860209217,0.010000191358858813,1.3233508993964342,0.09730550692167428 -30063,0.39254135478066693,0.013246485548709658,0.16096478760727714,0.15829370699469564,0.4417223599709084,0.9084964855971606,0.01457282039896661,0.9669593421756368,0.16630377296957227,0.8994509763242422,0.010000191358858813,0.9451628189414603,0.09730550692167428 -30065,0.4797849236232681,0.02033086203025871,0.21036076879383078,0.20715563963312894,0.4415980782592741,1.3951442878706883,0.01457282039896661,1.264085571392369,0.16630377296957227,1.4283493227063015,0.010000191358858813,1.3601552170337756,0.09730550692167428 -30067,0.44735447046177723,0.017958393274722297,0.1947476917504609,0.19147810959855718,0.4416389600990669,1.2318540601053654,0.01457282039896661,1.1697600331038598,0.16630377296957227,1.2306181146821027,0.010000191358858813,1.2085585835488488,0.09730550692167428 -30069,0.45519693097998293,0.01978801326817055,0.198502642147348,0.19508745949011835,0.4416390934974922,1.3560312312305287,0.01457282039896661,1.1889513431114225,0.16630377296957227,1.4336512135916544,0.010000191358858813,1.2769200524593323,0.09730550692167428 -30071,0.4584757754093336,0.022189721026982603,0.20844953137760222,0.21810443255992729,0.4416153802668946,1.522688543346788,0.01457282039896661,1.2503716210504825,0.16630377296957227,1.5670257841147759,0.010000191358858813,1.3580900531459927,0.09730550692167428 -30073,0.4269462258365927,0.0189410104476566,0.1890188504993806,0.19658381178355094,0.4416725024389313,1.2991735263760567,0.01457282039896661,1.1333399919786709,0.16630377296957227,1.3187589165473383,0.010000191358858813,1.1892469960650645,0.09730550692167428 -30075,0.4489018338473199,0.02180102236187021,0.20324279578865603,0.21659278251699743,0.4416342626316836,1.49600645756404,0.01457282039896661,1.2204320481500348,0.16630377296957227,1.5346891712622193,0.010000191358858813,1.3220668626957264,0.09730550692167428 -30077,0.4478165504936456,0.01667161444470726,0.19064670900396613,0.1816180227876461,0.4416389411364357,1.1435780844290662,0.01457282039896661,1.145262048055679,0.16630377296957227,1.1497472610184825,0.010000191358858813,1.1736205622363538,0.09730550692167428 -30079,0.5262611863150622,0.029565125665026747,0.2526339277011821,0.26992611249396803,0.44151913911153795,2.030321583170127,0.01457282039896661,1.5158759591329736,0.16630377296957227,2.10568328396676,0.010000191358858813,1.712353975706572,0.09730550692167428 -30081,0.45097666627765737,0.01979445360708305,0.19781385097547988,0.2020457647776841,0.44164156410218514,1.3583571855063952,0.01457282039896661,1.1873874765861983,0.16630377296957227,1.399348428725109,0.010000191358858813,1.2749580679916999,0.09730550692167428 -30083,0.42049046562828096,0.01668091073007333,0.18202490765461365,0.1837401243804483,0.4416817987862931,1.1436980523708797,0.01457282039896661,1.092736123208032,0.16630377296957227,1.1264968158835404,0.010000191358858813,1.1110111071823647,0.09730550692167428 -30085,0.37215586661476363,0.01342781288817584,0.15211604066155565,0.15894167077751847,0.4417509879708875,0.921029743654157,0.01457282039896661,0.9165171061855264,0.16630377296957227,0.9191784292034548,0.010000191358858813,0.914673858935015,0.09730550692167428 -30087,0.3870061839465729,0.013475132274624279,0.15820079985959215,0.16092226236588686,0.4417356031174605,0.9246941498676138,0.01457282039896661,0.9539474930704461,0.16630377296957227,0.9108461615886438,0.010000191358858813,0.9552035410007238,0.09730550692167428 -30089,0.47570211100074467,0.021754196634440247,0.21140065654948864,0.21458312968383977,0.44160384918064144,1.4928954370970668,0.01457282039896661,1.2690147450955318,0.16630377296957227,1.5534665781380221,0.010000191358858813,1.3927759475309043,0.09730550692167428 -30091,0.48615428671378336,0.024889038404969935,0.22763807465236074,0.23665439922465847,0.4415649315728152,1.7089161637386758,0.01457282039896661,1.366261213618512,0.16630377296957227,1.7541879467576351,0.010000191358858813,1.4869647051577353,0.09730550692167428 -30093,0.42439076407585363,0.01746742910772315,0.18469878284190155,0.18806936488395148,0.4416748506336813,1.198016889394868,0.01457282039896661,1.109212182949959,0.16630377296957227,1.1976104232241132,0.010000191358858813,1.139665447376885,0.09730550692167428 -30095,0.4471039611765978,0.018387353535070206,0.1928378309357574,0.19301414711712456,0.4416507327977145,1.2614566024251577,0.01457282039896661,1.157561451880229,0.16630377296957227,1.2899947023313754,0.010000191358858813,1.2269991943402636,0.09730550692167428 -30097,0.4477880624047311,0.019755147978917007,0.19837035302099948,0.20104193608687382,0.44164169550467686,1.3550832384601192,0.01457282039896661,1.1919231664011558,0.16630377296957227,1.385092908026948,0.010000191358858813,1.2695892268312932,0.09730550692167428 -30099,0.44267616269614807,0.02036411070165013,0.19915457461843308,0.20723120948928261,0.4416405326747928,1.3979330828817391,0.01457282039896661,1.1940103880581578,0.16630377296957227,1.4161020557598074,0.010000191358858813,1.26739710260807,0.09730550692167428 -30101,0.42450385387998035,0.01619972704362415,0.18316295666214683,0.1798275764149006,0.4416645044388722,1.1104201217050211,0.01457282039896661,1.0995594858044369,0.16630377296957227,1.08971458519191,0.010000191358858813,1.0999740066215355,0.09730550692167428 -30103,0.441101718934199,0.022123370142140955,0.20435107833382468,0.22060490585764214,0.4416356059809552,1.5176401759806315,0.01457282039896661,1.2267311121932496,0.16630377296957227,1.528102861277587,0.010000191358858813,1.3003976416193983,0.09730550692167428 -30105,0.4475790915894737,0.02080705776912512,0.19914008681335132,0.20875056490271954,0.4416481219023416,1.428050103578876,0.01457282039896661,1.194341509950355,0.16630377296957227,1.4735779527728585,0.010000191358858813,1.2903577506789772,0.09730550692167428 -30107,0.4774679408031102,0.02619086236354557,0.22844122112523368,0.2471307046932722,0.4415735915434036,1.7963492190848023,0.01457282039896661,1.3711948410280344,0.16630377296957227,1.8331337250952877,0.010000191358858813,1.4995322074810555,0.09730550692167428 -30109,0.46748869465837073,0.022551009599071307,0.213941565918217,0.22399425866043082,0.4415940501597021,1.5482112829957675,0.01457282039896661,1.286175122787688,0.16630377296957227,1.5695749592651862,0.010000191358858813,1.3857032042478037,0.09730550692167428 -30111,0.4092309713661091,0.015683760985431387,0.1732866502952051,0.1745395385857405,0.4417022559260567,1.0759880568812132,0.01457282039896661,1.0402708013040871,0.16630377296957227,1.0785111044246247,0.010000191358858813,1.0526846223095119,0.09730550692167428 -31001,0.4052136831702729,0.016761070110463232,0.1748921556739047,0.1821935010916428,0.44170302412025186,1.1499926716921722,0.01457282039896661,1.0496965951411144,0.16630377296957227,1.1544271377197157,0.010000191358858813,1.0727355662749156,0.09730550692167428 -31003,0.44139577185135426,0.021276551311963855,0.20111012549167898,0.21270391415167034,0.44164400123345515,1.4588275057237439,0.01457282039896661,1.2051598521571965,0.16630377296957227,1.4844914690551967,0.010000191358858813,1.2849796443682742,0.09730550692167428 -31005,0.4163753554676682,0.016273682818034103,0.17441130992223586,0.17981186130615345,0.44171066231165934,1.1170690442390332,0.01457282039896661,1.0460141324553465,0.16630377296957227,1.127360129178045,0.010000191358858813,1.0848887468021418,0.09730550692167428 -31007,0.4360481526345844,0.019487564942728512,0.19623341553128995,0.2037040029191583,0.44164636278017144,1.336509935551071,0.01457282039896661,1.1785264120275518,0.16630377296957227,1.3253850030905592,0.010000191358858813,1.2303863918250084,0.09730550692167428 -31009,0.4906355130113874,0.02244420400718115,0.21533622766520366,0.21361422421831122,0.4415979040196044,1.539499427614973,0.01457282039896661,1.2906687239447328,0.16630377296957227,1.6624862077556313,0.010000191358858813,1.4449374167584734,0.09730550692167428 -31011,0.4436428038179091,0.021602347146599317,0.20285168914447205,0.21637912879368187,0.4416354216420892,1.4813220605880997,0.01457282039896661,1.2174230610848595,0.16630377296957227,1.5005836398425014,0.010000191358858813,1.2951472121192982,0.09730550692167428 -31013,0.41576293720546686,0.016975296697637858,0.1810780509270491,0.18568664637038615,0.4416876390817922,1.1640737517640056,0.01457282039896661,1.0858901056269992,0.16630377296957227,1.1480795624888829,0.010000191358858813,1.1068561572399371,0.09730550692167428 -31015,0.4576354931421549,0.02243096802864975,0.20861029364518088,0.2197898659749022,0.4416201481217613,1.5391271072302777,0.01457282039896661,1.2527526162517275,0.16630377296957227,1.5853690344671412,0.010000191358858813,1.356024291572334,0.09730550692167428 -31017,0.4683296031429215,0.026311216857107016,0.22556668105467292,0.2490187365467699,0.44158763565814374,1.8047364319035224,0.01457282039896661,1.3524861787282845,0.16630377296957227,1.8351901323187616,0.010000191358858813,1.4729875112969641,0.09730550692167428 -31019,0.37670444032435874,0.013817690236779485,0.15728607642635206,0.16287146750352938,0.441736987852679,0.9493381408356449,0.01457282039896661,0.9487303381634156,0.16630377296957227,0.9300134546828217,0.010000191358858813,0.9214030404000974,0.09730550692167428 -31021,0.4552543556997391,0.022881539426142974,0.2102069514808703,0.22319183649806024,0.44161854501908754,1.5695015674869528,0.01457282039896661,1.2605577754786887,0.16630377296957227,1.6061502879576124,0.010000191358858813,1.3602549995208928,0.09730550692167428 -31023,0.43481087928022855,0.01962519416555463,0.1935429724359224,0.20116022801363423,0.44165894224358093,1.3464493935103032,0.01457282039896661,1.1600822493836205,0.16630377296957227,1.3721133181070648,0.010000191358858813,1.2271545788244576,0.09730550692167428 -31025,0.41577172514109617,0.015885850713503243,0.17535568326254417,0.17578820465316386,0.44169596487183993,1.089668361377976,0.01457282039896661,1.0551220000897272,0.16630377296957227,1.097673919803611,0.010000191358858813,1.0812214165493583,0.09730550692167428 -31027,0.42976869488065766,0.020948569384052648,0.1964896936009139,0.2115157294558132,0.4416605764091537,1.4368056955673096,0.01457282039896661,1.1770729752001055,0.16630377296957227,1.4500506667063071,0.010000191358858813,1.2445364483323664,0.09730550692167428 -31029,0.44075128311779205,0.021673244378044763,0.20440185516600778,0.2175982100528321,0.441629651713982,1.4870748618472591,0.01457282039896661,1.2247476856451711,0.16630377296957227,1.4878867959710238,0.010000191358858813,1.2901748057639377,0.09730550692167428 -31031,0.44413884260640163,0.020806809863611282,0.20049715958127234,0.20944172107093662,0.44164346094470147,1.4272259730884516,0.01457282039896661,1.202302217122273,0.16630377296957227,1.4542518019928934,0.010000191358858813,1.2780593207902817,0.09730550692167428 -31033,0.4227107892841072,0.017605727683918812,0.18307229758595572,0.18634824554945079,0.4416828529020487,1.2070688385882755,0.01457282039896661,1.0984592125557726,0.16630377296957227,1.2293232596947432,0.010000191358858813,1.1399012699160909,0.09730550692167428 -31035,0.42977036485420184,0.019289438994674876,0.19136243985984702,0.2008979198908354,0.44166156419607416,1.3232107999116653,0.01457282039896661,1.1476514779521891,0.16630377296957227,1.3311899545564212,0.010000191358858813,1.206080503861486,0.09730550692167428 -31037,0.3899836643983005,0.015825578231182094,0.166291290564979,0.17470015652711368,0.4417252294618592,1.087315533196716,0.01457282039896661,0.997517160999184,0.16630377296957227,1.0932108341828104,0.010000191358858813,1.0092422109311268,0.09730550692167428 -31039,0.4348362492944119,0.020808758595683007,0.1973236845357928,0.20918510497124085,0.44165122021897324,1.4274910943226478,0.01457282039896661,1.1822462456213905,0.16630377296957227,1.455394790284325,0.010000191358858813,1.255451117000356,0.09730550692167428 -31041,0.44220992998423314,0.021516757474970463,0.20254634063602706,0.21586064666005586,0.44164138070034986,1.4752007780674905,0.01457282039896661,1.2146412100093762,0.16630377296957227,1.4896399629279293,0.010000191358858813,1.2901958749963285,0.09730550692167428 -31043,0.37789008148243697,0.013025427919181942,0.1537446537896826,0.1568940720674795,0.4417479433460644,0.8934228642359685,0.01457282039896661,0.9251598696298902,0.16630377296957227,0.8835101941459639,0.010000191358858813,0.9089084183088572,0.09730550692167428 -31045,0.3938643944544289,0.01614121158308692,0.16822134237382086,0.17660589164337098,0.4417108806550741,1.1076297802912611,0.01457282039896661,1.0103442789210344,0.16630377296957227,1.1258202415454228,0.010000191358858813,1.0287098016439356,0.09730550692167428 -31047,0.39452187945345885,0.015518510966189406,0.16610617179510817,0.1724780336853158,0.44172373463415543,1.0653111422111459,0.01457282039896661,0.9974577379666943,0.16630377296957227,1.0774598459172884,0.010000191358858813,1.0158043845897335,0.09730550692167428 -31049,0.47957555820291164,0.023875361320587183,0.22055475885217235,0.23008950559678726,0.44158535499184315,1.6388196505842618,0.01457282039896661,1.3232963312803303,0.16630377296957227,1.6894871042660258,0.010000191358858813,1.4477030261817143,0.09730550692167428 -31051,0.4171506437701494,0.018620637922530818,0.1855023308062949,0.19662106204387733,0.4416823810461693,1.2776683638520567,0.01457282039896661,1.1119142769255466,0.16630377296957227,1.27295490152314,0.010000191358858813,1.1511501965976736,0.09730550692167428 -31053,0.4225920030270068,0.018900421596171252,0.18665117126410952,0.19587878553230428,0.4416779574257012,1.296260809095255,0.01457282039896661,1.1200754179933425,0.16630377296957227,1.3194638862542627,0.010000191358858813,1.169406034229779,0.09730550692167428 -31055,0.38041473608432497,0.012684892445479032,0.15438155046929522,0.15457459452372396,0.4417429254556863,0.870569687246368,0.01457282039896661,0.9288025931640187,0.16630377296957227,0.8556415015427825,0.010000191358858813,0.8997609990330496,0.09730550692167428 -31057,0.4740742752603956,0.024320606548496517,0.22096892490616593,0.23180639308252948,0.4415844638406577,1.6681390257299613,0.01457282039896661,1.32514391202267,0.16630377296957227,1.7173047003361075,0.010000191358858813,1.4449633572394478,0.09730550692167428 -31059,0.446463513277933,0.022649509285775492,0.20844019809495537,0.22525474001008097,0.4416202254887629,1.5540349935518445,0.01457282039896661,1.2491469953361363,0.16630377296957227,1.5573878225503706,0.010000191358858813,1.3277347941444302,0.09730550692167428 -31061,0.4631690425278544,0.024156036749379422,0.2173899403910342,0.23264466818853347,0.44160092079629365,1.6575530526815614,0.01457282039896661,1.3028902212645632,0.16630377296957227,1.6910913130094336,0.010000191358858813,1.4073476059298098,0.09730550692167428 -31063,0.44041583274243656,0.019800508334848154,0.1931194477358723,0.20048091234196946,0.4416586180846891,1.3591957933182526,0.01457282039896661,1.1612361465103684,0.16630377296957227,1.4136009060516939,0.010000191358858813,1.2451211200445742,0.09730550692167428 -31065,0.45833210412181474,0.023604968620275717,0.2125992355358729,0.22838114689520095,0.4416149113829878,1.6188056306056124,0.01457282039896661,1.275095550133124,0.16630377296957227,1.6600112366789337,0.010000191358858813,1.38682916264291,0.09730550692167428 -31067,0.433271989657417,0.020056275936692645,0.1949345296421895,0.20475111873245944,0.44165516402395033,1.375709323172992,0.01457282039896661,1.1690984633743478,0.16630377296957227,1.3926242067855872,0.010000191358858813,1.226712977552521,0.09730550692167428 -31069,0.5009431195800835,0.0278682524688324,0.24185190316049027,0.2585375584107004,0.4415333839124566,1.9122007418469322,0.01457282039896661,1.4512356277637797,0.16630377296957227,1.9558565547246072,0.010000191358858813,1.5945502167195573,0.09730550692167428 -31071,0.4614458150045637,0.022917477762400724,0.2115998657225736,0.22202508783968733,0.4416081199696349,1.5723274613063065,0.01457282039896661,1.2679960245348916,0.16630377296957227,1.6233989216014504,0.010000191358858813,1.3832172822114277,0.09730550692167428 -31073,0.4608600863711416,0.02290843663006916,0.21279504103283378,0.2244903725553941,0.44161061980549915,1.5714911205305995,0.01457282039896661,1.2769012117591716,0.16630377296957227,1.6020547740231637,0.010000191358858813,1.3706295033843163,0.09730550692167428 -31075,0.4400787200509749,0.017421279439427444,0.18968914321475394,0.1862850422163878,0.4416456720713214,1.1958037695300054,0.01457282039896661,1.146080078314251,0.16630377296957227,1.206609654895088,0.010000191358858813,1.1779657158709762,0.09730550692167428 -31077,0.44534448347803535,0.024084030493646463,0.20952418474228443,0.23145958266957678,0.4416315298921033,1.6526780304124942,0.01457282039896661,1.2555629971877265,0.16630377296957227,1.6936741509392457,0.010000191358858813,1.3602059003713731,0.09730550692167428 -31079,0.39419518099980055,0.015159671256201124,0.16617405166769844,0.17139596880535363,0.4417242464971878,1.0410768262681291,0.01457282039896661,0.9973940145288769,0.16630377296957227,1.0370148884570958,0.010000191358858813,1.0014868159142867,0.09730550692167428 -31081,0.4236678100762397,0.018179344877931415,0.18591756791105707,0.19233276685147854,0.44167626184233816,1.2470722401560073,0.01457282039896661,1.1148430285026167,0.16630377296957227,1.2572470793435437,0.010000191358858813,1.1616678290605347,0.09730550692167428 -31083,0.46909795237290686,0.02347684059278114,0.21428447720115998,0.22297910135916346,0.44160320239470796,1.610316649973527,0.01457282039896661,1.2839509649275023,0.16630377296957227,1.6930876560039394,0.010000191358858813,1.4153916192202942,0.09730550692167428 -31085,0.4483501400038318,0.020841517946938528,0.2005180009323917,0.21014262724694063,0.4416427661734894,1.4293320052111516,0.01457282039896661,1.206090406101544,0.16630377296957227,1.4621115039654506,0.010000191358858813,1.2955004620794042,0.09730550692167428 -31087,0.46751233418201055,0.023524615315854067,0.2152925094292079,0.22666384126216732,0.4416009361803142,1.6137574700768302,0.01457282039896661,1.2916509212584315,0.16630377296957227,1.667510748831696,0.010000191358858813,1.408321193980401,0.09730550692167428 -31089,0.44307893507700485,0.02094146228324389,0.2019462345868262,0.21281447708877005,0.44163342090862034,1.4369325358604148,0.01457282039896661,1.2109740967989928,0.16630377296957227,1.442969057411108,0.010000191358858813,1.281071470528424,0.09730550692167428 -31091,0.47721549159041643,0.027197234367933996,0.23270755622763842,0.2560592311997343,0.44156352786020364,1.8673621890672258,0.01457282039896661,1.3944789155251356,0.16630377296957227,1.8823466887449896,0.010000191358858813,1.517149342806984,0.09730550692167428 -31093,0.43155858045893625,0.019857417935601182,0.1931120537237531,0.20265675153291057,0.44165855704215684,1.361951060160707,0.01457282039896661,1.157410205855813,0.16630377296957227,1.387071890956705,0.010000191358858813,1.2213183587022733,0.09730550692167428 -31095,0.4536166059197038,0.02250790689906762,0.20794507589225691,0.2201889511186495,0.4416257160289277,1.543932467071041,0.01457282039896661,1.246009172333729,0.16630377296957227,1.5836245459210359,0.010000191358858813,1.345638613450927,0.09730550692167428 -31097,0.45065873773434917,0.01945627800933101,0.2000294664576528,0.19881865788356318,0.4416288216458246,1.335973676013176,0.01457282039896661,1.1977192836679658,0.16630377296957227,1.3604803351262504,0.010000191358858813,1.242720854737688,0.09730550692167428 -31099,0.4317915240922038,0.018548942812574902,0.18925085541953757,0.19406992820084096,0.4416673378527157,1.2723942961189445,0.01457282039896661,1.1350116456326313,0.16630377296957227,1.291530248484733,0.010000191358858813,1.1905270552675222,0.09730550692167428 -31101,0.45950413129326995,0.021661102544914275,0.20758456119025337,0.21546701352188216,0.4416174588255739,1.4863303219096928,0.01457282039896661,1.2464249334831512,0.16630377296957227,1.521144527707396,0.010000191358858813,1.3396365643291985,0.09730550692167428 -31103,0.5243860634816357,0.03095778472989437,0.2504843596649746,0.27165540669424987,0.4415360005259266,2.123562174437301,0.01457282039896661,1.500978128606906,0.16630377296957227,2.2789249374701237,0.010000191358858813,1.745191666853958,0.09730550692167428 -31105,0.4548454112176671,0.021430985549949103,0.20469184540233115,0.2139622641788639,0.4416315699366744,1.4700875269381912,0.01457282039896661,1.2285231907830103,0.16630377296957227,1.503926240808466,0.010000191358858813,1.324221691970693,0.09730550692167428 -31107,0.45156900057590055,0.023129893120089954,0.20980561089346283,0.22657653790326096,0.44162267480188927,1.5862856446731683,0.01457282039896661,1.2585156094156735,0.16630377296957227,1.6118128888378196,0.010000191358858813,1.352789926862464,0.09730550692167428 -31109,0.37932586335232993,0.012692385167420281,0.15447873682992477,0.15444570787048423,0.44174078064418476,0.8708839221035636,0.01457282039896661,0.9284414959339001,0.16630377296957227,0.8565752548107581,0.010000191358858813,0.8960692963540495,0.09730550692167428 -31111,0.4146072994621902,0.0168966593734887,0.17876039009690273,0.18317686671345493,0.4416920490756121,1.1589599855334962,0.01457282039896661,1.072315069589028,0.16630377296957227,1.164051903554802,0.010000191358858813,1.1003129830117417,0.09730550692167428 -31113,0.4430893418365523,0.017912687422975047,0.19544894852834901,0.19310475390438203,0.44164878680666636,1.2270017975135576,0.01457282039896661,1.1690756517021652,0.16630377296957227,1.1965974771671362,0.010000191358858813,1.1861266628086362,0.09730550692167428 -31115,0.4420710032628024,0.02248661080052464,0.20921820167559452,0.22660360483336656,0.44161143811228376,1.543042102919273,0.01457282039896661,1.254741265637263,0.16630377296957227,1.5140935695664262,0.010000191358858813,1.3185236486950656,0.09730550692167428 -31117,0.397236240810641,0.016362510317742145,0.1728470726556832,0.1791654118864349,0.44170273983877567,1.1228765267460172,0.01457282039896661,1.0356967062149582,0.16630377296957227,1.115302033875881,0.010000191358858813,1.0302491943558705,0.09730550692167428 -31119,0.4006483014975622,0.016131381559846766,0.17150220934464455,0.17795212540342525,0.4417100153517983,1.106585399368226,0.01457282039896661,1.0295123290955548,0.16630377296957227,1.1070709865378863,0.010000191358858813,1.045176147001314,0.09730550692167428 -31121,0.43114904884097216,0.01928442315254328,0.19071313709001858,0.19938408012655348,0.4416662851494629,1.3228657053091055,0.01457282039896661,1.1443961664734656,0.16630377296957227,1.3455055123229327,0.010000191358858813,1.207509536128413,0.09730550692167428 -31123,0.43806081107756206,0.019749803133679307,0.1927636635971497,0.19980173509499471,0.4416652123704755,1.3552347375774518,0.01457282039896661,1.156018960601748,0.16630377296957227,1.4079584984334002,0.010000191358858813,1.2392758143357963,0.09730550692167428 -31125,0.4413395601822254,0.020820635796886408,0.1997564610964801,0.21046462648403025,0.4416427530074497,1.4280237167927252,0.01457282039896661,1.198835993445834,0.16630377296957227,1.4484542239223828,0.010000191358858813,1.2705140707670226,0.09730550692167428 -31127,0.4228083233144939,0.019237576718428323,0.1892357892342028,0.20147482542319878,0.4416665633473671,1.319559107754478,0.01457282039896661,1.1373684846446883,0.16630377296957227,1.319640651510857,0.010000191358858813,1.183611467570772,0.09730550692167428 -31129,0.4645386644425684,0.024748487203676547,0.21962167589263892,0.23848811544276682,0.4415958499412008,1.697759244388974,0.01457282039896661,1.3180826391844302,0.16630377296957227,1.7219064980680407,0.010000191358858813,1.4252749406072436,0.09730550692167428 -31131,0.4288802108836701,0.01959644893444011,0.19300363321925323,0.20234842794836155,0.4416602601502126,1.3438955325343627,0.01457282039896661,1.1568569300956297,0.16630377296957227,1.3485943121711788,0.010000191358858813,1.2060348637603275,0.09730550692167428 -31133,0.4771596132874977,0.026169289523730214,0.2284553597058837,0.24799556303626924,0.44156960972257414,1.7949553075778821,0.01457282039896661,1.370995561440282,0.16630377296957227,1.8275873448047086,0.010000191358858813,1.488969861565022,0.09730550692167428 -31135,0.43098630445103014,0.020215604908438593,0.19587887109678676,0.20725605748675674,0.4416577810186291,1.3863959107033903,0.01457282039896661,1.173406512561261,0.16630377296957227,1.3872002719571126,0.010000191358858813,1.228385978743039,0.09730550692167428 -31137,0.43287449627296326,0.01945663642438021,0.19307493680327054,0.19946865068350428,0.44165935061475114,1.3342739373718695,0.01457282039896661,1.1571218633656,0.16630377296957227,1.3559728455980289,0.010000191358858813,1.2101692142195257,0.09730550692167428 -31139,0.4163552355130336,0.018020094920100992,0.18439909608585248,0.19275407423488955,0.4416794139036495,1.2360232030041136,0.01457282039896661,1.1053656306951443,0.16630377296957227,1.2272119612896346,0.010000191358858813,1.136364349437714,0.09730550692167428 -31141,0.4032551653462092,0.015924907289765863,0.17162566054696238,0.176128989568268,0.44170689632390825,1.0921932846920839,0.01457282039896661,1.0308204568361012,0.16630377296957227,1.095781318652116,0.010000191358858813,1.0498070769720953,0.09730550692167428 -31143,0.4447757962709332,0.02125203532345083,0.20224947830844314,0.21313628357796616,0.4416361058685633,1.4578359989521754,0.01457282039896661,1.2130298690448715,0.16630377296957227,1.4815871801654381,0.010000191358858813,1.2930022631408553,0.09730550692167428 -31145,0.4259401201657169,0.019367292200723356,0.19159959711274965,0.20203073468478122,0.4416605658898861,1.328773308705717,0.01457282039896661,1.149538777383119,0.16630377296957227,1.3255136899094913,0.010000191358858813,1.1924093993450726,0.09730550692167428 -31147,0.45649070723059015,0.02300163298477019,0.21190232103891488,0.22523830906855385,0.4416155662422544,1.5773748198935993,0.01457282039896661,1.2705618203234708,0.16630377296957227,1.6034890711692793,0.010000191358858813,1.3629819451098144,0.09730550692167428 -31149,0.4663443622416693,0.02109315373768455,0.21126418119232376,0.21440766093777644,0.4415978718790208,1.4475835215828114,0.01457282039896661,1.269540911495272,0.16630377296957227,1.446437069911492,0.010000191358858813,1.34384531751137,0.09730550692167428 -31151,0.3928260693470591,0.01616436118699896,0.16917150324564462,0.17815022119524485,0.4417151899612639,1.1099089537768163,0.01457282039896661,1.0142022387857526,0.16630377296957227,1.1085322356474732,0.010000191358858813,1.025710982386904,0.09730550692167428 -31153,0.3668627940332372,0.010555172953870626,0.14222174135235877,0.1388303855916896,0.44176871690596575,0.7241978889670572,0.01457282039896661,0.8589215609546035,0.16630377296957227,0.7102828387119782,0.010000191358858813,0.8144082741833799,0.09730550692167428 -31155,0.41859256551506413,0.01735763492507148,0.18113619486187388,0.18572774158046684,0.44168682127926795,1.1903823281894865,0.01457282039896661,1.0878791862627812,0.16630377296957227,1.2028923700287444,0.010000191358858813,1.126756251545179,0.09730550692167428 -31157,0.41670351895833824,0.018045030897770438,0.18200564277761497,0.19031132571361148,0.44168893787765184,1.2379237241528882,0.01457282039896661,1.0923903220740288,0.16630377296957227,1.2560291585513248,0.010000191358858813,1.1365933392390735,0.09730550692167428 -31159,0.40345902576912823,0.016784098208406355,0.17418105158588992,0.18189034943136673,0.4417012148506161,1.1515835796274212,0.01457282039896661,1.0460075831719926,0.16630377296957227,1.1619964281668231,0.010000191358858813,1.071371541685938,0.09730550692167428 -31161,0.4499715485678938,0.022364192236485468,0.20769065245699359,0.22204431391876797,0.44162540588047206,1.5340996677847247,0.01457282039896661,1.2456253002722244,0.16630377296957227,1.5488711811345566,0.010000191358858813,1.3309613643900753,0.09730550692167428 -31163,0.46001488735028717,0.022100146102822397,0.21087362040484464,0.22062793983149193,0.4416085967333193,1.5168921923753305,0.01457282039896661,1.2644518926950048,0.16630377296957227,1.5306663455294571,0.010000191358858813,1.3553706233209322,0.09730550692167428 -31165,0.4764548028813532,0.023023841850962023,0.21755179176524625,0.22393925965738803,0.4415846106077148,1.5806362189445102,0.01457282039896661,1.3058567199946824,0.16630377296957227,1.6242904784179466,0.010000191358858813,1.4192944155122504,0.09730550692167428 -31167,0.40368050175232384,0.015228464680274525,0.16916553748250818,0.17140650164960397,0.4417108624999422,1.0447178686215919,0.01457282039896661,1.0186380777968798,0.16630377296957227,1.0478411492777193,0.010000191358858813,1.034839779431464,0.09730550692167428 -31169,0.46913612058137133,0.025556341573326518,0.22399927194059632,0.24409464424465022,0.44158449606928163,1.7539005836578738,0.01457282039896661,1.3433851906910141,0.16630377296957227,1.7802249641961114,0.010000191358858813,1.4572184986912438,0.09730550692167428 -31171,0.45390170858640577,0.021567725865270698,0.20762924940969515,0.21880683192690872,0.4416189750528711,1.4799558996344628,0.01457282039896661,1.246609202970971,0.16630377296957227,1.4755503327726407,0.010000191358858813,1.3215321915265226,0.09730550692167428 -31173,0.3554926463281648,0.01329658153631021,0.14624841103817393,0.1598281053777316,0.44177408783513117,0.9132721497476881,0.01457282039896661,0.884176370590454,0.16630377296957227,0.891318635343705,0.010000191358858813,0.8667472068392629,0.09730550692167428 -31175,0.4664044356502417,0.025075510580416113,0.2203137997096295,0.2404698640602876,0.4415972362195606,1.7208679403191858,0.01457282039896661,1.3227488322283538,0.16630377296957227,1.7533499552816694,0.010000191358858813,1.4352806843130135,0.09730550692167428 -31177,0.4087137792329872,0.01549530694706968,0.1719255376137305,0.17426084251480708,0.4417028384839591,1.063046558100193,0.01457282039896661,1.0347017947015216,0.16630377296957227,1.0629810258202341,0.010000191358858813,1.05513842221305,0.09730550692167428 -31179,0.3739246310132611,0.014877362881267977,0.1572888384644251,0.16791139282476858,0.4417402512168265,1.021570945877086,0.01457282039896661,0.9477642176480415,0.16630377296957227,1.033538693644635,0.010000191358858813,0.9475574312895076,0.09730550692167428 -31181,0.4586885592850263,0.024872552230813555,0.22018964482677306,0.24241447720455284,0.44159464577884466,1.7060927548544098,0.01457282039896661,1.31921157919759,0.16630377296957227,1.6997710499211753,0.010000191358858813,1.4097658301558846,0.09730550692167428 -31183,0.45325256251763196,0.017810275338764295,0.1925763437172087,0.18881550805943875,0.44165764464311574,1.2212134654627524,0.01457282039896661,1.150538319600782,0.16630377296957227,1.254850500292208,0.010000191358858813,1.2249421438202397,0.09730550692167428 -31185,0.42741787612651116,0.019210995783427966,0.190085236477404,0.1992833592171525,0.4416672903540161,1.3181582052399645,0.01457282039896661,1.141031006328736,0.16630377296957227,1.3310344518989443,0.010000191358858813,1.1899571264281354,0.09730550692167428 -32001,0.41219125235565046,0.01630455592727391,0.174024847878071,0.17805048586235445,0.4417046240176312,1.1185952520461377,0.01457282039896661,1.0448954721670733,0.16630377296957227,1.1399806832328485,0.010000191358858813,1.0813525925549077,0.09730550692167428 -32003,0.3896753836413991,0.01275197415698667,0.15642864170791881,0.15358952021368683,0.44173636824134116,0.8755194793932164,0.01457282039896661,0.9424964475712447,0.16630377296957227,0.8770580954341578,0.010000191358858813,0.9258743755165392,0.09730550692167428 -32005,0.46182308359696445,0.020429081799177663,0.2033865976713391,0.20591472119281395,0.44162482753221555,1.4022044151872843,0.01457282039896661,1.2208246697643106,0.16630377296957227,1.450888319929473,0.010000191358858813,1.3193837305002778,0.09730550692167428 -32007,0.3725309335332688,0.010892208847640316,0.14476475676328587,0.14134508511634714,0.4417617177914042,0.7473381518047715,0.01457282039896661,0.8739941107379257,0.16630377296957227,0.7368154399985016,0.010000191358858813,0.8433445166828338,0.09730550692167428 -32009,0.5716780371229713,0.03206574625035902,0.2657938822200021,0.27522259816252015,0.44150166217801456,2.2002474830398837,0.01457282039896661,1.59389471396261,0.16630377296957227,2.423145775474488,0.010000191358858813,1.903605687993407,0.09730550692167428 -32011,0.4213842282556783,0.014689311356614963,0.1710532433169593,0.16674986661198776,0.44170310813942754,1.0069354103649102,0.01457282039896661,1.0298491270583874,0.16630377296957227,1.0323254851807664,0.010000191358858813,1.0656130270450221,0.09730550692167428 -32013,0.38968530156598247,0.012649853884573639,0.1566952909518172,0.15364777292514398,0.4417344821542203,0.8679568052656037,0.01457282039896661,0.9456488797626362,0.16630377296957227,0.8602743858405711,0.010000191358858813,0.9311627451057249,0.09730550692167428 -32015,0.38575954512229227,0.013718923277116393,0.1594305860076751,0.16261282823605572,0.44173405944733146,0.9418481362251685,0.01457282039896661,0.9595700841861692,0.16630377296957227,0.9237972036816468,0.010000191358858813,0.9484778475994466,0.09730550692167428 -32017,0.39647564814919084,0.015228806070995502,0.1620309429196707,0.16660574013100135,0.441734871930896,1.0453096704168328,0.01457282039896661,0.9715793744347356,0.16630377296957227,1.0997753504922585,0.010000191358858813,1.0205396151150554,0.09730550692167428 -32019,0.4199943390569764,0.0159367234853108,0.1753656082967804,0.175327548744061,0.44169767335561627,1.0933441624159075,0.01457282039896661,1.051590034272062,0.16630377296957227,1.1188262640914806,0.010000191358858813,1.0922594147622666,0.09730550692167428 -32021,0.5050413321003522,0.02396998099314137,0.2297787879369093,0.2305351210133022,0.44154657566591626,1.6450663088465438,0.01457282039896661,1.3858936428951454,0.16630377296957227,1.6967892358243073,0.010000191358858813,1.5189749483806634,0.09730550692167428 -32023,0.4721623321738917,0.022519613075861714,0.21018495749232252,0.21754729472641515,0.441615420902692,1.5454791793125207,0.01457282039896661,1.2613344355102898,0.16630377296957227,1.633622555833867,0.010000191358858813,1.4009977467407002,0.09730550692167428 -32027,0.4259817196147624,0.0134236261642862,0.1720007296045409,0.15752612148211032,0.4416890378422288,0.9198183027901311,0.01457282039896661,1.038052053966773,0.16630377296957227,0.9234112406455192,0.010000191358858813,1.0291946744736955,0.09730550692167428 -32029,0.4701216470228955,0.01869606428221081,0.19968207715127229,0.19331207920364213,0.4416287813379084,1.2816366311389351,0.01457282039896661,1.194153079967149,0.16630377296957227,1.3417997850122512,0.010000191358858813,1.2918610269065254,0.09730550692167428 -32031,0.3988315615572763,0.013766024778130336,0.16314303262051422,0.16127981665748725,0.4417211548333378,0.9450438040117499,0.01457282039896661,0.9823771606266457,0.16630377296957227,0.9455966521869509,0.010000191358858813,0.9787099197221125,0.09730550692167428 -32033,0.42184679670195896,0.017629402233391447,0.18148505390636055,0.18783692070575053,0.441687343159224,1.2091096357554207,0.01457282039896661,1.0897106925651725,0.16630377296957227,1.2317208764397316,0.010000191358858813,1.149590329194778,0.09730550692167428 -32510,0.4249703913214108,0.017423689654617415,0.1842622078977783,0.18726179767696524,0.44167679300329565,1.194821635741904,0.01457282039896661,1.1066021177827232,0.16630377296957227,1.198853512087763,0.010000191358858813,1.138356955247699,0.09730550692167428 -33001,0.4396310975131378,0.01805345109891223,0.1912666715817351,0.19204865062612902,0.441652881697306,1.2388086577494626,0.01457282039896661,1.1484113799100413,0.16630377296957227,1.246223564207716,0.010000191358858813,1.1947149554827967,0.09730550692167428 -33003,0.46754794452499054,0.021107753508120546,0.2084978714539781,0.21139665702028743,0.4416081174750761,1.4491225465002464,0.01457282039896661,1.2519058433631471,0.16630377296957227,1.4871280417766561,0.010000191358858813,1.3469798584520953,0.09730550692167428 -33005,0.41557761679240807,0.016208750907951205,0.17672314351305687,0.17816790456418524,0.44168894325073527,1.1121765055870068,0.01457282039896661,1.0627128821831022,0.16630377296957227,1.1201440625581314,0.010000191358858813,1.0871333407363704,0.09730550692167428 -33007,0.45455112766098055,0.020048931663363675,0.20275419860479077,0.20479838630366304,0.4416231502651346,1.3760972340226008,0.01457282039896661,1.2162883121540475,0.16630377296957227,1.3948289165202932,0.010000191358858813,1.2824832293486503,0.09730550692167428 -33009,0.4214935999307222,0.016702175843970716,0.18072377454089467,0.18197312351004935,0.44167759003853224,1.1460291040177903,0.01457282039896661,1.0863789946201825,0.16630377296957227,1.152570339970538,0.010000191358858813,1.111849356380325,0.09730550692167428 -33011,0.4025797877952494,0.013880466757724017,0.16597998863924507,0.16267810066299354,0.44171077012118387,0.9517325745501051,0.01457282039896661,1.0007417494870308,0.16630377296957227,0.9405925567520903,0.010000191358858813,0.9894152115291857,0.09730550692167428 -33013,0.41590001758911777,0.015409099851864094,0.17544113404967474,0.1734620821256624,0.4416905690975098,1.0566405940447754,0.01457282039896661,1.0553592527609144,0.16630377296957227,1.050003223409539,0.010000191358858813,1.0631567712587549,0.09730550692167428 -33015,0.4163317986846887,0.014517578470240329,0.17250769389749548,0.16715862992240868,0.44169410476699456,0.9953164325920573,0.01457282039896661,1.038891156897591,0.16630377296957227,0.9883649030445325,0.010000191358858813,1.0456007247727621,0.09730550692167428 -33017,0.3951375261137069,0.013612541362978915,0.16199672666846257,0.16007125553612503,0.44171878911875984,0.9336177347785704,0.01457282039896661,0.9771213789537034,0.16630377296957227,0.931267682516625,0.010000191358858813,0.9633405353385547,0.09730550692167428 -33019,0.4405150512304236,0.017948970519019516,0.18976019010650425,0.18909333782641266,0.4416566381287378,1.2315713841892661,0.01457282039896661,1.1408791433869045,0.16630377296957227,1.2593800074932218,0.010000191358858813,1.1956563002786789,0.09730550692167428 -34001,0.41129547877444905,0.015505615566742898,0.17308307280282148,0.17332979138367915,0.4416989896617267,1.0638625831072683,0.01457282039896661,1.0412310020752202,0.16630377296957227,1.0680217743559297,0.010000191358858813,1.0563765846125184,0.09730550692167428 -34003,0.42240440481017183,0.01675631315239405,0.18152103785486295,0.1822227854792895,0.4416803777546342,1.1488014298080742,0.01457282039896661,1.090644209651271,0.16630377296957227,1.1508506789393103,0.010000191358858813,1.1126244242737422,0.09730550692167428 -34005,0.41277776865539073,0.015416728584531409,0.17363749126956313,0.1727744389302192,0.44169657586645006,1.0577696940724137,0.01457282039896661,1.044977352329879,0.16630377296957227,1.0590722944974722,0.010000191358858813,1.055749107424253,0.09730550692167428 -34007,0.39896836371897376,0.014509304270691992,0.16671098598073297,0.1674406924989107,0.44171360266943627,0.9956765007362098,0.01457282039896661,1.0023020168462766,0.16630377296957227,0.9849913251437559,0.010000191358858813,0.9965631192611402,0.09730550692167428 -34009,0.4637298223292802,0.02178875225804021,0.2081247217206476,0.21479327333751974,0.44161544344030434,1.4963405279586905,0.01457282039896661,1.2499099502437636,0.16630377296957227,1.5500750285019371,0.010000191358858813,1.3534616489105045,0.09730550692167428 -34011,0.397357660364525,0.014258206693750412,0.16472656532240523,0.16458395846431276,0.44171881639563193,0.9788660264283289,0.01457282039896661,0.9905972883459866,0.16630377296957227,0.9775407255943966,0.010000191358858813,0.9840295685709609,0.09730550692167428 -34013,0.391158514752291,0.013414240725405455,0.16028581537035017,0.15928133984660753,0.4417270411435425,0.9206519778105874,0.01457282039896661,0.9649023243086092,0.16630377296957227,0.9106248752309518,0.010000191358858813,0.9466343433400495,0.09730550692167428 -34015,0.40052605398389796,0.014165089281100843,0.16565408093879808,0.16422588397817675,0.44171385228285875,0.9719477367564949,0.01457282039896661,0.9983600300220405,0.16630377296957227,0.9678522417236222,0.010000191358858813,0.9941537767640615,0.09730550692167428 -34017,0.3888468532948747,0.01236811415928007,0.1569400182532913,0.15106961196073304,0.4417300061888717,0.8484180650446045,0.01457282039896661,0.9428225797276346,0.16630377296957227,0.8394258181468153,0.010000191358858813,0.9023800279347598,0.09730550692167428 -34019,0.41945844821009814,0.01485526651105468,0.17459132774510372,0.1692814346562201,0.4416899986607382,1.0177882355192498,0.01457282039896661,1.0513318576096524,0.16630377296957227,1.0130752103853364,0.010000191358858813,1.0644446337975255,0.09730550692167428 -34021,0.40073423818389337,0.014472773386529341,0.16691210950117719,0.16651377645538945,0.4417108898190375,0.9933227143340622,0.01457282039896661,1.0043815113549206,0.16630377296957227,0.9891421599529684,0.010000191358858813,0.9987948079666715,0.09730550692167428 -34023,0.398625443934948,0.014076695699031035,0.16522438206871543,0.16376967184868194,0.44171500385858276,0.9659762579728408,0.01457282039896661,0.9939257602086714,0.16630377296957227,0.9577452472814278,0.010000191358858813,0.9808708096195413,0.09730550692167428 -34025,0.41349385425337437,0.015535880297142634,0.1746525681093961,0.17405867987651086,0.44169452400301157,1.0656212201820239,0.01457282039896661,1.0514331100911716,0.16630377296957227,1.0615930347193823,0.010000191358858813,1.0629413772283267,0.09730550692167428 -34027,0.41466810233848983,0.015374873027929854,0.17432488322782036,0.17260586128775565,0.44169534384567566,1.0546032627298207,0.01457282039896661,1.0495342158635184,0.16630377296957227,1.053418891950953,0.010000191358858813,1.06025761811392,0.09730550692167428 -34029,0.43848269560844955,0.021063004198891757,0.19804382571185997,0.2104279554026341,0.4416528321465787,1.4450119297731727,0.01457282039896661,1.1878721783763107,0.16630377296957227,1.4815149552748514,0.010000191358858813,1.26473615130005,0.09730550692167428 -34031,0.3916782484902237,0.013827577407545932,0.1616137323275436,0.16213309518451213,0.4417253465214114,0.949265431153977,0.01457282039896661,0.972291222536162,0.16630377296957227,0.9417466488154823,0.010000191358858813,0.9597659793664475,0.09730550692167428 -34033,0.4172281266400879,0.016523116717451276,0.17839084285711104,0.18056667450047215,0.4416879088851248,1.1328902031077046,0.01457282039896661,1.0721617259445384,0.16630377296957227,1.1394133307830066,0.010000191358858813,1.0996186658251914,0.09730550692167428 -34035,0.4064092019584017,0.01438012444324472,0.16898056444485415,0.16609121565956386,0.4417058256317541,0.9856898109718957,0.01457282039896661,1.0176618850312438,0.16630377296957227,0.973785993155458,0.010000191358858813,1.013422694786833,0.09730550692167428 -34037,0.40995626950069447,0.013803696731512743,0.16778243502144985,0.16211002972962418,0.4417048427631062,0.9465438016994114,0.01457282039896661,1.0128128781165209,0.16630377296957227,0.9379464222165299,0.010000191358858813,1.0133528623432673,0.09730550692167428 -34039,0.40048591063171135,0.014558372621735904,0.16759230951066562,0.16766523434623548,0.44171138797551723,0.9991787837030826,0.01457282039896661,1.0080018036654987,0.16630377296957227,0.9877333607720968,0.010000191358858813,1.0007940459470248,0.09730550692167428 -34041,0.4151023184862116,0.015673616280993986,0.17539143959378345,0.17488789577940028,0.44169342489803065,1.075170691010132,0.01457282039896661,1.0558873551439907,0.16630377296957227,1.0738035490308417,0.010000191358858813,1.070499119925145,0.09730550692167428 -35001,0.3954454089164653,0.013960883976857495,0.1631203979985668,0.16276584456194224,0.44172225242715063,0.958266623271963,0.01457282039896661,0.9811710592876259,0.16630377296957227,0.9551523502569231,0.010000191358858813,0.9727703592080481,0.09730550692167428 -35003,0.5745273501432767,0.032103375665886016,0.2699692157418232,0.27944765199577076,0.44149889309426593,2.204022596170849,0.01457282039896661,1.6163940389504652,0.16630377296957227,2.3907600652072407,0.010000191358858813,1.9152918658835412,0.09730550692167428 -35005,0.3912775298893415,0.015415411811007609,0.16494829877268696,0.1723716027185629,0.4417256354378071,1.0583094235979469,0.01457282039896661,0.9911833376642591,0.16630377296957227,1.065400244955566,0.010000191358858813,1.0075697358592834,0.09730550692167428 -35006,0.3944180906809984,0.01429399335993471,0.16265996483457745,0.16410872050126454,0.4417250370559033,0.9812645492734822,0.01457282039896661,0.9781824554907608,0.16630377296957227,0.9906360453629613,0.010000191358858813,0.9836955723050632,0.09730550692167428 -35007,0.4517141605391509,0.01983831602791058,0.19846496102692526,0.20176359627275883,0.4416400715887475,1.3623101499987822,0.01457282039896661,1.1911777281828166,0.16630377296957227,1.4043799699642987,0.010000191358858813,1.2763402466082032,0.09730550692167428 -35009,0.3743973954764658,0.013006328537060281,0.15167665752673787,0.1555954344605927,0.4417535650780219,0.8928601028709281,0.01457282039896661,0.9131268046105991,0.16630377296957227,0.8942157023642437,0.010000191358858813,0.8983222853191724,0.09730550692167428 -35011,0.4690966228575847,0.023892299855603795,0.2189513957150433,0.2322139975769256,0.4415969820202904,1.6392750087331112,0.01457282039896661,1.3143584346781223,0.16630377296957227,1.6610879494003001,0.010000191358858813,1.4181385765257928,0.09730550692167428 -35013,0.3779167833184487,0.013565880454448596,0.15449320779135817,0.15953298095840365,0.44174611345770814,0.9310282029174999,0.01457282039896661,0.9300282172829074,0.16630377296957227,0.9358592983966147,0.010000191358858813,0.9243584546070627,0.09730550692167428 -35015,0.403993802776482,0.015968776105792816,0.17100682524102928,0.1757402447689665,0.4417113240085134,1.0954579424049073,0.01457282039896661,1.0267687222757607,0.16630377296957227,1.1101582973060862,0.010000191358858813,1.0526981311760246,0.09730550692167428 -35017,0.4528206717466918,0.021058729724012997,0.20201917339672593,0.21079543486956853,0.44163590891164484,1.4450325841879268,0.01457282039896661,1.2135712358361226,0.16630377296957227,1.4888275910808355,0.010000191358858813,1.3107742188791325,0.09730550692167428 -35019,0.4354910839172491,0.015430482308463337,0.18034883497386742,0.17203077379533172,0.4416642610094976,1.0581536112539909,0.01457282039896661,1.0831706943919532,0.16630377296957227,1.0813645254866162,0.010000191358858813,1.112381301837083,0.09730550692167428 -35021,0.39765774490630174,0.017813583447014822,0.17476154383411224,0.18940972237314252,0.4417058660823978,1.2227346333546385,0.01457282039896661,1.0509234830568186,0.16630377296957227,1.2306542326603807,0.010000191358858813,1.1008431307467585,0.09730550692167428 -35023,0.39755461317598867,0.015568147917752118,0.16732581505639377,0.1728036441234963,0.44171984751384286,1.0686111036715178,0.01457282039896661,1.0066979691338744,0.16630377296957227,1.0850196058041053,0.010000191358858813,1.0292246752541283,0.09730550692167428 -35025,0.37262992030122355,0.012724924086771458,0.15077262610441067,0.15381980026329387,0.4417550726286883,0.8731595403654762,0.01457282039896661,0.9073811478252036,0.16630377296957227,0.8694559475800056,0.010000191358858813,0.8871848806312048,0.09730550692167428 -35027,0.4756943583942729,0.021949820861093955,0.21120270604186722,0.21494970394452478,0.4416058522063886,1.5072707734034996,0.01457282039896661,1.2667779909248091,0.16630377296957227,1.580144799658548,0.010000191358858813,1.394365741908231,0.09730550692167428 -35028,0.43144754660927054,0.016430710056047123,0.18380666959045966,0.18048673097220871,0.4416722785569842,1.125928274608133,0.01457282039896661,1.1040169069483183,0.16630377296957227,1.1238996913922583,0.010000191358858813,1.1337644571603505,0.09730550692167428 -35029,0.41803353835079893,0.01916160890206879,0.1834379916737723,0.19669792975457367,0.4416921085899147,1.314398070043885,0.01457282039896661,1.1004030227358206,0.16630377296957227,1.3547531662134602,0.010000191358858813,1.1714086143901188,0.09730550692167428 -35031,0.354168888295891,0.011227804865437792,0.13905185189388627,0.14440549841754713,0.44178040040006145,0.7701183062788094,0.01457282039896661,0.8392908755674877,0.16630377296957227,0.75522543611723,0.010000191358858813,0.807772847702076,0.09730550692167428 -35033,0.4376131881700585,0.01907956795376909,0.19245019578150047,0.19880080022163246,0.4416546616759266,1.3094700185409778,0.01457282039896661,1.1553604461990208,0.16630377296957227,1.3282608499914081,0.010000191358858813,1.2172392546730122,0.09730550692167428 -35035,0.40511260853609965,0.0157826391460993,0.16937810552986865,0.17284572124746478,0.4417166411533675,1.082865936418243,0.01457282039896661,1.0172917224186007,0.16630377296957227,1.1159365291141228,0.010000191358858813,1.0488870633932006,0.09730550692167428 -35037,0.451050006470167,0.021006308509941302,0.2007306291626671,0.2105993569730672,0.44163906788743235,1.4415660571217486,0.01457282039896661,1.2049906941987023,0.16630377296957227,1.4877337132686845,0.010000191358858813,1.3057620826648373,0.09730550692167428 -35039,0.4085701656388445,0.015280781632800333,0.17070358595582488,0.17130075199413378,0.4417080469315428,1.048882556876676,0.01457282039896661,1.0258187739047888,0.16630377296957227,1.0604931130607915,0.010000191358858813,1.0454555321422863,0.09730550692167428 -35041,0.37112037505406453,0.013618555521925566,0.1522970101542271,0.15886629920470646,0.4417523625418651,0.9349768942529075,0.01457282039896661,0.9185227008815877,0.16630377296957227,0.9439587382684287,0.010000191358858813,0.9079260140426066,0.09730550692167428 -35043,0.39856807243943754,0.014045303005287037,0.16366819931798637,0.16320424989355148,0.44172240708917,0.9643957536213454,0.01457282039896661,0.9855280590035798,0.16630377296957227,0.9655250866118888,0.010000191358858813,0.9897491578698454,0.09730550692167428 -35045,0.37260432104287533,0.012233127202928872,0.14931050596676723,0.1512374621645151,0.44175724826983365,0.8391871786451557,0.01457282039896661,0.8993908276806908,0.16630377296957227,0.8278491008481088,0.010000191358858813,0.8771344106734384,0.09730550692167428 -35047,0.415575693552793,0.01607031853914263,0.17585245383472273,0.177524646727914,0.4416939011574017,1.1022898909400944,0.01457282039896661,1.056646300528587,0.16630377296957227,1.1114956217253937,0.010000191358858813,1.0846380598906609,0.09730550692167428 -35049,0.4342132155525217,0.016471171773510047,0.18342625232565485,0.1800411449052669,0.4416726151215046,1.1292290811683632,0.01457282039896661,1.100878775556091,0.16630377296957227,1.1437392737089453,0.010000191358858813,1.137697422548328,0.09730550692167428 -35051,0.4965101222056507,0.027810190263365224,0.23478269620798298,0.2548674364228789,0.4415605917299221,1.909341256967806,0.01457282039896661,1.405126148086302,0.16630377296957227,2.0100569824140515,0.010000191358858813,1.597309179703963,0.09730550692167428 -35053,0.398710638349217,0.01513943862583204,0.16590469193361376,0.17026767168547252,0.4417171751917528,1.0393154818784225,0.01457282039896661,0.9975341687135248,0.16630377296957227,1.0568565353272261,0.010000191358858813,1.0214053784385406,0.09730550692167428 -35055,0.448361867941493,0.018234404720356288,0.19202480132658112,0.18917169978412463,0.44165338883205246,1.2510334859005856,0.01457282039896661,1.1531885810780396,0.16630377296957227,1.299582604378335,0.010000191358858813,1.2230864399297303,0.09730550692167428 -35057,0.42134856397645337,0.015779839360310514,0.17565438819127716,0.17434486149806255,0.44169204986223337,1.0817378322030327,0.01457282039896661,1.0552772980963492,0.16630377296957227,1.1050668510414459,0.010000191358858813,1.092320718588793,0.09730550692167428 -35059,0.43391844782159894,0.020057089945684663,0.19001595956892553,0.2006833414525514,0.4416758380883982,1.3750012136966157,0.01457282039896661,1.1406135834527087,0.16630377296957227,1.4465101292514873,0.010000191358858813,1.2362822397838107,0.09730550692167428 -35061,0.3954663618738216,0.014027829110083535,0.16279847618247864,0.16371675086394588,0.44172513655784973,0.9633469661356546,0.01457282039896661,0.9796155757716394,0.16630377296957227,0.9600077709458399,0.010000191358858813,0.981767750860779,0.09730550692167428 -36001,0.4085535122428493,0.01573468248029834,0.17394812364054169,0.17529557949189936,0.44169479937078227,1.0795160171702993,0.01457282039896661,1.0452547204455382,0.16630377296957227,1.0775212168807933,0.010000191358858813,1.0508101893381991,0.09730550692167428 -36003,0.4046785760193281,0.016360401038436497,0.17199030684912558,0.17798216459192134,0.44170494479407596,1.1220386877280615,0.01457282039896661,1.0341743611941516,0.16630377296957227,1.1439241314129982,0.010000191358858813,1.065221871729412,0.09730550692167428 -36005,0.3722509253046243,0.012210322745589747,0.14944915658855557,0.1508094496912869,0.4417528843728368,0.8375782255808923,0.01457282039896661,0.9003545749562664,0.16630377296957227,0.8260435446027008,0.010000191358858813,0.8690250540486797,0.09730550692167428 -36007,0.4176037571174251,0.01755978416632163,0.18197408214803498,0.1874865765410262,0.4416808241874435,1.2048696769657696,0.01457282039896661,1.0935929129473583,0.16630377296957227,1.2148442913546638,0.010000191358858813,1.1228875681112402,0.09730550692167428 -36009,0.4168812227690666,0.016766885413715158,0.17864075985122324,0.18148988850444042,0.4416907960429911,1.1499791331560436,0.01457282039896661,1.072926428197758,0.16630377296957227,1.1642768960295842,0.010000191358858813,1.1066696184449059,0.09730550692167428 -36011,0.4204837712842568,0.016566835309651605,0.18041131538254024,0.18107141967346635,0.4416813072472834,1.1360288150321853,0.01457282039896661,1.0841149275045412,0.16630377296957227,1.1365421588440312,0.010000191358858813,1.103851935342012,0.09730550692167428 -36013,0.41949960130969915,0.017608508581682256,0.18224421948865255,0.18761886234344674,0.44168205406201105,1.2078111732333268,0.01457282039896661,1.0948010195069846,0.16630377296957227,1.2218454573173485,0.010000191358858813,1.1324666697730155,0.09730550692167428 -36015,0.42053959569796584,0.017268712042234527,0.18224331704540628,0.1858656159643448,0.4416811534171792,1.184258256322897,0.01457282039896661,1.0939084126768637,0.16630377296957227,1.190168784835598,0.010000191358858813,1.1230528074053234,0.09730550692167428 -36017,0.4267808554820426,0.017625844122947217,0.18518222333828124,0.18868491037126045,0.44167279344075305,1.2085267987009674,0.01457282039896661,1.1116859876254819,0.16630377296957227,1.2165266673178325,0.010000191358858813,1.1529342267611256,0.09730550692167428 -36019,0.4076816204950915,0.01483585346902207,0.1704327109379472,0.16871203663339895,0.4416992724606894,1.0184468503674484,0.01457282039896661,1.0256478100035973,0.16630377296957227,1.0188556500407362,0.010000191358858813,1.0252143720720657,0.09730550692167428 -36021,0.44481229880091633,0.019110184823198234,0.19603050721970716,0.1988111711961896,0.4416402170116185,1.3121019354814578,0.01457282039896661,1.1765548416791756,0.16630377296957227,1.3277912421221623,0.010000191358858813,1.2374350664753582,0.09730550692167428 -36023,0.3943766298548343,0.014710446265153079,0.16478746708965217,0.16790132024773777,0.44171562530492825,1.0097576383065276,0.01457282039896661,0.9920655381683046,0.16630377296957227,1.0128764798360255,0.010000191358858813,0.9934299485417066,0.09730550692167428 -36025,0.44708273531288717,0.02005696864270446,0.19796591969295824,0.2039051567936454,0.4416396455644303,1.3768045877033677,0.01457282039896661,1.188873738039117,0.16630377296957227,1.4122742210966908,0.010000191358858813,1.2673045762151234,0.09730550692167428 -36027,0.40860938195994106,0.015076723662986638,0.17112326697116861,0.1702033879425686,0.4417003273374306,1.0344782934448684,0.01457282039896661,1.0303549237736027,0.16630377296957227,1.0362753474122726,0.010000191358858813,1.0378646677049914,0.09730550692167428 -36029,0.41793640948186195,0.017146574043667498,0.18100274871322447,0.1848478530795305,0.4416831853479948,1.1761272258572557,0.01457282039896661,1.0870859164005329,0.16630377296957227,1.1825309705284526,0.010000191358858813,1.1125877415507945,0.09730550692167428 -36031,0.4430654214064804,0.018793618429257336,0.19476134298310738,0.1956824464135172,0.441643674227722,1.2901177331627571,0.01457282039896661,1.1686077979375016,0.16630377296957227,1.3088483624327598,0.010000191358858813,1.2205104763713508,0.09730550692167428 -36033,0.41303081607477143,0.015075825863959218,0.1724225010700577,0.1696109554821599,0.44169643252965307,1.0342437413837808,0.01457282039896661,1.037658647620574,0.16630377296957227,1.0422245219439128,0.010000191358858813,1.0443523698071009,0.09730550692167428 -36035,0.4249980763864731,0.01738423340812986,0.18478710862149644,0.18729713505072976,0.44167239732196584,1.1923725764209814,0.01457282039896661,1.1099383220974564,0.16630377296957227,1.1913814199924988,0.010000191358858813,1.1383113413754504,0.09730550692167428 -36037,0.42040034937367693,0.016907097485670243,0.18130023881710322,0.18357253468561943,0.44168198320497165,1.1591710687941015,0.01457282039896661,1.0886415048708225,0.16630377296957227,1.1604543159135432,0.010000191358858813,1.1133134971622263,0.09730550692167428 -36039,0.4374434289402012,0.018216644372714676,0.19035045117785868,0.19152424460020767,0.4416541305055457,1.2508282685606342,0.01457282039896661,1.1429538721717396,0.16630377296957227,1.272355926452014,0.010000191358858813,1.1930494320308735,0.09730550692167428 -36041,0.4984331296022963,0.023540186285344662,0.22481252386087244,0.22724379552263635,0.4415654182021459,1.6167191340723286,0.01457282039896661,1.35096049112953,0.16630377296957227,1.6806674758210982,0.010000191358858813,1.490064335967502,0.09730550692167428 -36043,0.426481820297529,0.01822833095746234,0.18760200325103193,0.19318770120153086,0.44166874158003294,1.2505935584169539,0.01457282039896661,1.1258132523006026,0.16630377296957227,1.254858445909735,0.010000191358858813,1.1651936345157767,0.09730550692167428 -36045,0.3801670764787264,0.013045370774066997,0.1549019946363615,0.15616610585655943,0.4417418608264727,0.8956211810856256,0.01457282039896661,0.9319669904079095,0.16630377296957227,0.8914323746245425,0.010000191358858813,0.9088583600420488,0.09730550692167428 -36047,0.3876601665729169,0.013354477693057365,0.15864872773388766,0.15830919466390891,0.4417318603408661,0.9165277957850286,0.01457282039896661,0.9537365959077567,0.16630377296957227,0.9122176440453721,0.010000191358858813,0.933738544115094,0.09730550692167428 -36049,0.41357185658328477,0.01638412652990867,0.17615159061602986,0.17859192257205891,0.4416950901870874,1.1237056759917667,0.01457282039896661,1.0586811556932976,0.16630377296957227,1.1382657640611995,0.010000191358858813,1.0883045544334449,0.09730550692167428 -36051,0.40801849404738894,0.01529358865023495,0.17201744545256253,0.1723372774244306,0.4416973678917532,1.0495135761166963,0.01457282039896661,1.0353347959128403,0.16630377296957227,1.0474934431102323,0.010000191358858813,1.040976577911279,0.09730550692167428 -36053,0.4049714366052293,0.01514507394306631,0.16965205967134872,0.1706123450153434,0.44170525114423764,1.0393531087980357,0.01457282039896661,1.0209526187641091,0.16630377296957227,1.0446332099030697,0.010000191358858813,1.033101671498486,0.09730550692167428 -36055,0.4047549149576206,0.015531141863795495,0.17182100391431676,0.1743125204267365,0.4417021963841169,1.0651099303680454,0.01457282039896661,1.0324201073809407,0.16630377296957227,1.0600362741684934,0.010000191358858813,1.0379778577974446,0.09730550692167428 -36057,0.4191284976494812,0.01829714511936334,0.1858641240509438,0.19414625673260488,0.44167646251685194,1.2553566415911273,0.01457282039896661,1.1147891219812645,0.16630377296957227,1.2498612745008697,0.010000191358858813,1.14411022625954,0.09730550692167428 -36059,0.41890648805937136,0.016933140007450782,0.18077605289965776,0.18347751732113518,0.44168349091386105,1.161102630282612,0.01457282039896661,1.0856659780048519,0.16630377296957227,1.164113180057098,0.010000191358858813,1.11096768946812,0.09730550692167428 -36061,0.41427702962211965,0.014642636121597984,0.17357449861934934,0.1666274462118018,0.4416902487422947,1.0051351099765906,0.01457282039896661,1.0403271000289909,0.16630377296957227,1.0057426799197233,0.010000191358858813,1.0226881179072778,0.09730550692167428 -36063,0.42317869210661785,0.01738755708800841,0.1836821402454617,0.18647466886442915,0.44167560673823797,1.1926483188467298,0.01457282039896661,1.1024562073108624,0.16630377296957227,1.1999604689164647,0.010000191358858813,1.1339813479400127,0.09730550692167428 -36065,0.42036531776915187,0.01749551211221121,0.1828779605282887,0.1874876880304968,0.4416797804315784,1.2001745304904534,0.01457282039896661,1.0979892491110164,0.16630377296957227,1.2066847464003037,0.010000191358858813,1.1273084269966063,0.09730550692167428 -36067,0.4044889019343,0.015546721665799752,0.17160856669420368,0.17417736942745404,0.44170316681072586,1.0663184319240022,0.01457282039896661,1.0313979707653034,0.16630377296957227,1.0630323356151257,0.010000191358858813,1.0386009332340294,0.09730550692167428 -36069,0.42136883814732257,0.016610711366452653,0.18057758953562172,0.18197629128427403,0.4416810766672221,1.1391837409412473,0.01457282039896661,1.0855196099482458,0.16630377296957227,1.1393888644737644,0.010000191358858813,1.112493805264297,0.09730550692167428 -36071,0.3853301957909403,0.012916607932813866,0.1561780838839375,0.1559169712734888,0.441736636834837,0.8862802182744579,0.01457282039896661,0.9427672057752043,0.16630377296957227,0.8754594738313493,0.010000191358858813,0.9259237229427422,0.09730550692167428 -36073,0.4138691567786227,0.01570953404989492,0.17535707288788493,0.17566500674444316,0.44169214111963917,1.0775399514948911,0.01457282039896661,1.0551574463516835,0.16630377296957227,1.0729239002686923,0.010000191358858813,1.0669087712436347,0.09730550692167428 -36075,0.398784140069334,0.014275853433821819,0.16498699317748494,0.16500303643753497,0.44171445897470635,0.9795653451045347,0.01457282039896661,0.9947128457870669,0.16630377296957227,0.9783291951879696,0.010000191358858813,0.9944906378216063,0.09730550692167428 -36077,0.41732776405193517,0.01712237825720371,0.18039836819495275,0.18550622916141607,0.44168154838107065,1.1747751034249143,0.01457282039896661,1.0851533104203965,0.16630377296957227,1.1789738575501092,0.010000191358858813,1.1137186541710262,0.09730550692167428 -36079,0.4125122030448737,0.014037382505309799,0.16940430821884805,0.16337522262905155,0.44170049226750596,0.9620521657065925,0.01457282039896661,1.0223917064379242,0.16630377296957227,0.956720319433907,0.010000191358858813,1.0249170988191616,0.09730550692167428 -36081,0.40702835839523155,0.014621232571767964,0.16975666149614546,0.16701442586587403,0.44170338557803845,1.0032661019606923,0.01457282039896661,1.0205903857754273,0.16630377296957227,1.0016495539138144,0.010000191358858813,1.0126580574533448,0.09730550692167428 -36083,0.40956328886658977,0.015536580542064627,0.17378884156280133,0.1745742269899459,0.4416958690884409,1.065673082229029,0.01457282039896661,1.0445260158160123,0.16630377296957227,1.0586287159140877,0.010000191358858813,1.0493109160834586,0.09730550692167428 -36085,0.4056889766135331,0.014516065935402679,0.16819016750403898,0.1663060087846795,0.4417083767390304,0.995942877118088,0.01457282039896661,1.0121680693007358,0.16630377296957227,0.9974408840141928,0.010000191358858813,1.0141874700369402,0.09730550692167428 -36087,0.39488833948878144,0.01483688151429735,0.1647867898464736,0.1689272931352602,0.4417238156914039,1.0183895474685722,0.01457282039896661,0.9910108400427329,0.16630377296957227,1.020569569966339,0.010000191358858813,1.0017920901689155,0.09730550692167428 -36089,0.4001921959501572,0.015312169755563152,0.1684660447097613,0.17168810374782753,0.4417094130987528,1.0506418200493661,0.01457282039896661,1.0132041969774739,0.16630377296957227,1.058512040917589,0.010000191358858813,1.024260805537553,0.09730550692167428 -36091,0.4155279357272451,0.015209221536280512,0.1740244523605567,0.17160824660774765,0.44169538599469366,1.042995236697416,0.01457282039896661,1.0464038496006038,0.16630377296957227,1.041877153209826,0.010000191358858813,1.0566999051463442,0.09730550692167428 -36093,0.41397374738994375,0.01679090767318909,0.1791513434520045,0.18286054893835302,0.44168804015966456,1.1516926314987974,0.01457282039896661,1.0749728955867304,0.16630377296957227,1.148981879930568,0.010000191358858813,1.0917889135803613,0.09730550692167428 -36095,0.42560152006195845,0.01730822952465702,0.1829214004988064,0.18526565993572744,0.4416770493845642,1.1877963682839674,0.01457282039896661,1.0989113307673488,0.16630377296957227,1.2083902746626851,0.010000191358858813,1.1425296897326152,0.09730550692167428 -36097,0.43345826932409665,0.017506260894953635,0.18675222724417317,0.1866861545900349,0.4416633547506008,1.2012131659590577,0.01457282039896661,1.1216844139027904,0.16630377296957227,1.2192715092241082,0.010000191358858813,1.1660705764759138,0.09730550692167428 -36099,0.4228927298384023,0.01697031096379789,0.18189753391507973,0.18314826690690444,0.441678982469634,1.1639815935808857,0.01457282039896661,1.0922403761063695,0.16630377296957227,1.1743598194589098,0.010000191358858813,1.1208977440924848,0.09730550692167428 -36101,0.42126942163376657,0.01708001550775694,0.18149425917500933,0.18439558742946582,0.4416837962640717,1.1711486455155717,0.01457282039896661,1.0894559683303298,0.16630377296957227,1.179359127564,0.010000191358858813,1.123924489196075,0.09730550692167428 -36103,0.40750765740914546,0.01495159694997199,0.17018741002912513,0.16941263757087605,0.4417040908057381,1.0257937654848468,0.01457282039896661,1.024817516516305,0.16630377296957227,1.0268709812726091,0.010000191358858813,1.0311977811377306,0.09730550692167428 -36105,0.4219403198812479,0.016276968138635585,0.17929607683150522,0.17936614768422648,0.44168470789803704,1.1168431356627926,0.01457282039896661,1.0782773446007043,0.16630377296957227,1.1212875420300044,0.010000191358858813,1.1042932162162207,0.09730550692167428 -36107,0.4239606578153106,0.016905660417092995,0.1812226765394514,0.18205371700329348,0.4416801372590532,1.159367142715555,0.01457282039896661,1.0910164731007765,0.16630377296957227,1.1773343292020892,0.010000191358858813,1.1294264167948862,0.09730550692167428 -36109,0.37114416978346554,0.012599464009717478,0.15131257925061198,0.15383168047722848,0.4417396971372133,0.8639165807751729,0.01457282039896661,0.9115194387250196,0.16630377296957227,0.850627976633548,0.010000191358858813,0.873568320434493,0.09730550692167428 -36111,0.4241886703945872,0.01632085715846933,0.18052796723172732,0.17904918992046867,0.4416777804248087,1.1197974323014468,0.01457282039896661,1.0856799859972692,0.16630377296957227,1.1252036337104925,0.010000191358858813,1.1082059056113063,0.09730550692167428 -36113,0.43662820058637714,0.01783996181738053,0.18911823983815235,0.18932333895910086,0.44165781570785,1.2243224536279245,0.01457282039896661,1.1360071268035021,0.16630377296957227,1.2400962872426473,0.010000191358858813,1.1820511707076873,0.09730550692167428 -36115,0.42514389766263416,0.01657976697481984,0.1810185777305509,0.17998588450910288,0.4416782392214236,1.1373685297086806,0.01457282039896661,1.0889536413243321,0.16630377296957227,1.1522471390112305,0.010000191358858813,1.118421732344535,0.09730550692167428 -36117,0.41670465030369963,0.015645606266378172,0.17538041066266893,0.17460996799498316,0.4416929543117748,1.073244144008751,0.01457282039896661,1.0556811366772463,0.16630377296957227,1.0765571777773264,0.010000191358858813,1.0752707798127916,0.09730550692167428 -36119,0.41214694891448256,0.016101816710290973,0.17594775372740445,0.1777503154744844,0.441694559446471,1.10456495511475,0.01457282039896661,1.0574752624477315,0.16630377296957227,1.1037120703780063,0.010000191358858813,1.0716426724600048,0.09730550692167428 -36121,0.41819117200419076,0.01513301869925392,0.1751717828436009,0.17060107789848242,0.4416896453629986,1.037733379678261,0.01457282039896661,1.0534198114944928,0.16630377296957227,1.0375235852387261,0.010000191358858813,1.0591347653736882,0.09730550692167428 -36123,0.4138629175767429,0.01759091938923018,0.18002747865544905,0.18811800850354615,0.4416902447407804,1.2067592486888759,0.01457282039896661,1.0808814675823664,0.16630377296957227,1.2166944561208313,0.010000191358858813,1.12216673976106,0.09730550692167428 -37001,0.4069651667087118,0.01594167586886998,0.173699003528874,0.17700677915197927,0.4417015354727286,1.093950744626898,0.01457282039896661,1.0422377466184671,0.16630377296957227,1.0918471916530408,0.010000191358858813,1.0519916084590604,0.09730550692167428 -37003,0.4204389963159867,0.01611153257242888,0.17738377835474897,0.17664001208196603,0.44169089291884583,1.1051295239215886,0.01457282039896661,1.067300779044992,0.16630377296957227,1.120323636142691,0.010000191358858813,1.093518281761382,0.09730550692167428 -37005,0.4646100500682331,0.021213014442170736,0.20704035538973004,0.20975065949849048,0.4416159181119521,1.4569522993700135,0.01457282039896661,1.2428545997721772,0.16630377296957227,1.515210505127734,0.010000191358858813,1.3419109742448465,0.09730550692167428 -37007,0.41574947007736285,0.01591473828449945,0.1764148659152472,0.17672244427458145,0.44169092379759367,1.09166827139516,0.01457282039896661,1.0609162820882183,0.16630377296957227,1.090971916906423,0.010000191358858813,1.0755956502770814,0.09730550692167428 -37009,0.4557093087348777,0.020018364496907713,0.2008317119841071,0.20317192773373804,0.44163413798319145,1.3741073394379155,0.01457282039896661,1.2047069528790209,0.16630377296957227,1.4129915477642334,0.010000191358858813,1.2834113986639109,0.09730550692167428 -37011,0.4411995089181665,0.017732935964379252,0.19106952789370032,0.18823575981478124,0.4416472659590499,1.2180149138758751,0.01457282039896661,1.1461913974223568,0.16630377296957227,1.2353965882074363,0.010000191358858813,1.1812274422997489,0.09730550692167428 -37013,0.44331990466282717,0.018711250602930694,0.19194156707158458,0.19457492792494327,0.4416608539373319,1.2837363701708808,0.01457282039896661,1.151896979890351,0.16630377296957227,1.3191269339070706,0.010000191358858813,1.2227071491002035,0.09730550692167428 -37015,0.43419647162351793,0.01819430632018869,0.18928204148526898,0.1913217146330903,0.4416619987606667,1.2486559763136729,0.01457282039896661,1.1366222427319876,0.16630377296957227,1.2676999583577235,0.010000191358858813,1.184654715911822,0.09730550692167428 -37017,0.4255828575825292,0.01692073342836881,0.18027653491837453,0.18236092766823436,0.44168785677440137,1.1609126284431084,0.01457282039896661,1.0822042736958666,0.16630377296957227,1.1882503871269743,0.010000191358858813,1.1302060323808123,0.09730550692167428 -37019,0.47102510895308136,0.02077781970565195,0.20635894447746284,0.20813710655216694,0.4416189317296868,1.425498728981287,0.01457282039896661,1.2389087643311827,0.16630377296957227,1.4832823963712518,0.010000191358858813,1.3458111601846199,0.09730550692167428 -37021,0.42827073425691825,0.017325846726699106,0.18479246591174436,0.18585161949042658,0.4416718103948298,1.1882134236962423,0.01457282039896661,1.1094580483718381,0.16630377296957227,1.1983051007550467,0.010000191358858813,1.1400449368048875,0.09730550692167428 -37023,0.42314974586756393,0.016985346180618033,0.18070138669024502,0.1821410127027626,0.44168427242075525,1.1646477592354523,0.01457282039896661,1.0852568714603708,0.16630377296957227,1.1890798221014902,0.010000191358858813,1.1247531228675376,0.09730550692167428 -37025,0.38895191301916776,0.012937438087776351,0.15717024550434044,0.15548867604265093,0.44173546854648815,0.8877129275762606,0.01457282039896661,0.9471045686280748,0.16630377296957227,0.8817520516579025,0.010000191358858813,0.93031722872829,0.09730550692167428 -37027,0.4244456925247804,0.016321599666614128,0.17912940469231864,0.1777476348315815,0.44168595695354285,1.1199541458176077,0.01457282039896661,1.0767284622639783,0.16630377296957227,1.1410414256514856,0.010000191358858813,1.1105255146582134,0.09730550692167428 -37029,0.40577170166371845,0.014676332983477165,0.1684905196779837,0.16873601919029885,0.4417050866359358,1.0068592231926532,0.01457282039896661,1.0157908095537596,0.16630377296957227,1.001765487277082,0.010000191358858813,1.0253879661834011,0.09730550692167428 -37031,0.45698347126023775,0.01962001498109718,0.2000018506980295,0.19998615577135548,0.4416315619682829,1.3466484509428935,0.01457282039896661,1.2003307744431209,0.16630377296957227,1.3887185279124519,0.010000191358858813,1.2797829875869333,0.09730550692167428 -37033,0.4373442509995132,0.01723596447672436,0.18709489102166,0.18476095903508305,0.4416616004979562,1.1827804982592607,0.01457282039896661,1.1244568886451212,0.16630377296957227,1.2008157274803533,0.010000191358858813,1.1661454722388558,0.09730550692167428 -37035,0.4117092615324396,0.015436279692423067,0.1727857855075361,0.17248371486995245,0.4417014850840567,1.0593415206514458,0.01457282039896661,1.0389187038725753,0.16630377296957227,1.0660999927075347,0.010000191358858813,1.0538805284535144,0.09730550692167428 -37037,0.43963773797682937,0.01871360902638966,0.19224613131725404,0.1953851389417438,0.44165675919595326,1.2844506715851427,0.01457282039896661,1.153350165109548,0.16630377296957227,1.305070361451048,0.010000191358858813,1.2091047512550892,0.09730550692167428 -37039,0.47180784007060944,0.02202834471849485,0.21120680371689138,0.21655650613729943,0.4416072897784633,1.512359775307186,0.01457282039896661,1.267764426517258,0.16630377296957227,1.5697580170890508,0.010000191358858813,1.3830967256433295,0.09730550692167428 -37041,0.43798817647630506,0.019911667689450824,0.19373825428053837,0.20203503990853236,0.44165609695731084,1.366731864492569,0.01457282039896661,1.1621343545347886,0.16630377296957227,1.410139447347853,0.010000191358858813,1.2441919821975072,0.09730550692167428 -37043,0.4786180876046916,0.023024089422948407,0.2166931759962512,0.22508694244610417,0.44159152452734407,1.5807994536042056,0.01457282039896661,1.3006052109498187,0.16630377296957227,1.6307187813417556,0.010000191358858813,1.4261317982865467,0.09730550692167428 -37045,0.4166504765673071,0.016154829641365095,0.17581565671542249,0.17671038111374154,0.44169528504138056,1.108245442033429,0.01457282039896661,1.0573551715112948,0.16630377296957227,1.1280960895038024,0.010000191358858813,1.088521771483449,0.09730550692167428 -37047,0.41912399901430053,0.01622652258621144,0.1763004256889809,0.1766717737987787,0.4416951770559757,1.1132121634169825,0.01457282039896661,1.0594218083854974,0.16630377296957227,1.1406345322316782,0.010000191358858813,1.0960631907456508,0.09730550692167428 -37049,0.4077361050443794,0.016194263056321084,0.1727364375616067,0.17698297462131077,0.4417069433786062,1.110778583326466,0.01457282039896661,1.0386813797383394,0.16630377296957227,1.1306123112833824,0.010000191358858813,1.0635426444211018,0.09730550692167428 -37051,0.36518314400045454,0.01118383424650401,0.1436639534743525,0.14308972969206663,0.44176680399155843,0.7676404873042892,0.01457282039896661,0.864808967586546,0.16630377296957227,0.7595750481503876,0.010000191358858813,0.82449288645804375,0.09730550692167428 -37053,0.41708670765806294,0.014627022656498134,0.17166487301926045,0.1663580264038419,0.44170017227422065,1.0029481445184176,0.01457282039896661,1.0336938482760318,0.16630377296957227,1.0126494218586128,0.010000191358858813,1.050697792703267,0.09730550692167428 -37055,0.44193623785265335,0.016885363143336767,0.1873215242938963,0.18229547330961549,0.44165880917448597,1.1578252107038969,0.01457282039896661,1.1253430652925516,0.16630377296957227,1.178207737836902,0.010000191358858813,1.1665583673403148,0.09730550692167428 -37057,0.41535661812879343,0.015528201430114168,0.17392615541068437,0.17269820851121115,0.4416981984955982,1.0657430912773445,0.01457282039896661,1.0457703685412725,0.16630377296957227,1.0778256883141377,0.010000191358858813,1.065977411633118,0.09730550692167428 -37059,0.4277211747964542,0.01728153242746095,0.18393698234954675,0.1859490727411343,0.44167673117329753,1.185195732701066,0.01457282039896661,1.1049508279764804,0.16630377296957227,1.1964683844474218,0.010000191358858813,1.1459717366661257,0.09730550692167428 -37061,0.40673297368584593,0.015487440287980811,0.16999370139806194,0.17180520941307964,0.4417117731248375,1.0629183981265404,0.01457282039896661,1.0201501652522977,0.16630377296957227,1.0831191530697348,0.010000191358858813,1.0437649809416536,0.09730550692167428 -37063,0.37877987115184,0.011850178140201381,0.1518319561966428,0.14838948967845672,0.44174515618872023,0.8132717576393809,0.01457282039896661,0.9123392571210767,0.16630377296957227,0.7956576941924511,0.010000191358858813,0.8683077845882443,0.09730550692167428 -37065,0.4115518982149233,0.015659542302656405,0.1727592003138294,0.1742625867543946,0.44170389301337354,1.074423650450507,0.01457282039896661,1.0387648864098076,0.16630377296957227,1.0852705771024636,0.010000191358858813,1.0632053571298967,0.09730550692167428 -37067,0.400037086740745,0.014561592617534943,0.1665170937061115,0.16691758923826155,0.441715118510149,0.9993363684254752,0.01457282039896661,1.0010150375864482,0.16630377296957227,0.9981745081810401,0.010000191358858813,1.0008074702520582,0.09730550692167428 -37069,0.4058788240396073,0.014293662724590756,0.16731175651664026,0.16484751793119784,0.4417117251899669,0.9811139066767938,0.01457282039896661,1.0077666859674173,0.16630377296957227,0.9813268870034524,0.010000191358858813,1.012073921699597,0.09730550692167428 -37071,0.4085561083880219,0.014904719930189452,0.17007833447266768,0.1687468884343737,0.44170654383784824,1.022699244073325,0.01457282039896661,1.0218824793034158,0.16630377296957227,1.0280542981132252,0.010000191358858813,1.0313103098029648,0.09730550692167428 -37073,0.42172709166340816,0.016115969681733344,0.1773247517033009,0.17758066925892207,0.44168745752117217,1.1050078736484172,0.01457282039896661,1.069256736093135,0.16630377296957227,1.1203873458847817,0.010000191358858813,1.1023193876484192,0.09730550692167428 -37075,0.4453200251333188,0.019522811001444512,0.1944151923328592,0.19932401289052437,0.44165111927369893,1.3395260042492656,0.01457282039896661,1.168187551024563,0.16630377296957227,1.3888322207473633,0.010000191358858813,1.2497925103660248,0.09730550692167428 -37077,0.409533577332439,0.014205076970676177,0.1684658980393069,0.16330591885202767,0.4417052790716308,0.9740372532285398,0.01457282039896661,1.0153158179169945,0.16630377296957227,0.979271158668896,0.010000191358858813,1.0155647775599963,0.09730550692167428 -37079,0.40688497348428726,0.015159694521418434,0.17057609907136584,0.17062722354267726,0.4417061685419989,1.0398564437718338,0.01457282039896661,1.0260341429600865,0.16630377296957227,1.042613313476704,0.010000191358858813,1.0321442856254732,0.09730550692167428 -37081,0.39555965840527374,0.014012109969345335,0.1631903010950715,0.16294643949829904,0.44172045892890166,0.9615992672802183,0.01457282039896661,0.9820201865389581,0.16630377296957227,0.9602815469048362,0.010000191358858813,0.9742256527901775,0.09730550692167428 -37083,0.42252350748639766,0.017415498050444938,0.18196957564263366,0.18543231951061395,0.4416843727593842,1.1941299627650386,0.01457282039896661,1.0922896465031962,0.16630377296957227,1.2167272128165425,0.010000191358858813,1.1364843468735868,0.09730550692167428 -37085,0.37666858983897555,0.012258231029863838,0.15012598158987137,0.15007922708487903,0.44175242736014336,0.8415672057279984,0.01457282039896661,0.9042488975834961,0.16630377296957227,0.8418187983660123,0.010000191358858813,0.8836537725414628,0.09730550692167428 -37087,0.4607650631979613,0.02124132666341912,0.205337616178925,0.210629691094185,0.44162172258609966,1.458117218126393,0.01457282039896661,1.2323096901438961,0.16630377296957227,1.5139283323362887,0.010000191358858813,1.3302282519390358,0.09730550692167428 -37089,0.4583977672198317,0.02203294803832704,0.2076787701783697,0.2170629523382517,0.4416228587314607,1.5120047724909225,0.01457282039896661,1.2457087415959858,0.16630377296957227,1.5562599871522071,0.010000191358858813,1.3418178030477754,0.09730550692167428 -37091,0.42226125407452203,0.01689399264335724,0.18060151835340488,0.18178974463036923,0.4416858484189321,1.159047476091704,0.01457282039896661,1.0844862652026075,0.16630377296957227,1.1792511772845597,0.010000191358858813,1.1207707153953015,0.09730550692167428 -37093,0.35432333771514113,0.009744068770441365,0.1358709094523449,0.13336184460621087,0.44178643316770094,0.6687276472748803,0.01457282039896661,0.8185995919172175,0.16630377296957227,0.6470007589017974,0.010000191358858813,0.7585058401337472,0.09730550692167428 -37095,0.4244095702897634,0.017354402192492475,0.18643709774726563,0.18760673440778036,0.4416549709505255,1.191306395837384,0.01457282039896661,1.119285664214578,0.16630377296957227,1.1776678130068974,0.010000191358858813,1.122942607591972,0.09730550692167428 -37097,0.4040267048836088,0.014554973991040259,0.1669577053896076,0.16599470994304213,0.4417133062891986,0.9988969599960935,0.01457282039896661,1.0048419629429617,0.16630377296957227,1.0067636138081508,0.010000191358858813,1.0140612479541107,0.09730550692167428 -37099,0.4088287701933935,0.015404869153174554,0.17124820752904213,0.1712277789388493,0.44170135913613195,1.0570355164549314,0.01457282039896661,1.0271485864140248,0.16630377296957227,1.080619243401421,0.010000191358858813,1.047284473940129,0.09730550692167428 -37101,0.3858120634987473,0.012108306966420918,0.15326346137151348,0.1494563750843701,0.44174278140131806,0.8308663303110686,0.01457282039896661,0.9244772015178397,0.16630377296957227,0.8244382000048054,0.010000191358858813,0.9023231334162966,0.09730550692167428 -37103,0.4424226126512063,0.018817244076454367,0.1923615222601981,0.19529693913381696,0.441652022184019,1.2918402799037036,0.01457282039896661,1.1552499322775382,0.16630377296957227,1.328024512483767,0.010000191358858813,1.2240465333257136,0.09730550692167428 -37105,0.40169037066235547,0.014849824381578785,0.16738404194313244,0.16870494507589795,0.44171519434519174,1.0191803180273729,0.01457282039896661,1.0058068162134992,0.16630377296957227,1.0227737109526367,0.010000191358858813,1.0144410617874091,0.09730550692167428 -37107,0.4216334414638214,0.017179412809110308,0.18096433439054768,0.1841400716136799,0.4416872968076858,1.1780646068253042,0.01457282039896661,1.0864993622762538,0.16630377296957227,1.19757693594775,0.010000191358858813,1.1289220889322054,0.09730550692167428 -37109,0.4173448126144383,0.014996613246897147,0.17288056675702362,0.1687862358882205,0.44169663961203454,1.0280726032175553,0.01457282039896661,1.0399286805764238,0.16630377296957227,1.0412073760430478,0.010000191358858813,1.0597155261906175,0.09730550692167428 -37111,0.42992182148759706,0.017023018536729474,0.18349407177369925,0.1829854961067462,0.44167725622799636,1.1679744037860003,0.01457282039896661,1.1013078564910903,0.16630377296957227,1.1874400679528625,0.010000191358858813,1.1406429212864724,0.09730550692167428 -37113,0.47062530655663715,0.023099243503529984,0.2141376997458003,0.22422549264888192,0.4416007073425865,1.585333961156583,0.01457282039896661,1.286655944242617,0.16630377296957227,1.6423607904430533,0.010000191358858813,1.403490188256928,0.09730550692167428 -37115,0.4393166367901386,0.018691115219319494,0.19195482347817036,0.1957358741863477,0.4416511226849196,1.2836500808635947,0.01457282039896661,1.1529997096059594,0.16630377296957227,1.3041887992954564,0.010000191358858813,1.2131851391098318,0.09730550692167428 -37117,0.43730768864383307,0.018188876091420787,0.18986968185808079,0.19186076498386528,0.44166242077543777,1.2472533124608214,0.01457282039896661,1.1398879683286094,0.16630377296957227,1.265214358712345,0.010000191358858813,1.1952911131820607,0.09730550692167428 -37119,0.37420076664567004,0.010929115950703838,0.14707454072182657,0.14187045876445267,0.4417542351427844,0.7495917908756251,0.01457282039896661,0.8862422944067329,0.16630377296957227,0.7290372634007137,0.010000191358858813,0.8353659120161185,0.09730550692167428 -37121,0.4635087912143194,0.020971820034618317,0.20500377021102428,0.20738834835371678,0.4416244817965737,1.4397947442417247,0.01457282039896661,1.2294297439451896,0.16630377296957227,1.5085045071841954,0.010000191358858813,1.3319331606875333,0.09730550692167428 -37123,0.41542561990037563,0.01664498018437611,0.1774324916426635,0.18080786156476802,0.44169302103452485,1.1418099737427418,0.01457282039896661,1.0647939783884102,0.16630377296957227,1.156236955494573,0.010000191358858813,1.0987650459678309,0.09730550692167428 -37125,0.4545210881743561,0.022418923262262462,0.20728255017544048,0.21974074365206991,0.4416265493761537,1.5378997515730792,0.01457282039896661,1.2441960008360595,0.16630377296957227,1.5838720935746662,0.010000191358858813,1.3421381211112018,0.09730550692167428 -37127,0.41256422806266313,0.015508304331840438,0.17326629259148257,0.17303135915389706,0.4416999661353782,1.0637162509386617,0.01457282039896661,1.0420433941346068,0.16630377296957227,1.071289155323311,0.010000191358858813,1.0602177703607785,0.09730550692167428 -37129,0.4088149572001313,0.015064025238034344,0.17099339470919517,0.169725180504512,0.44170295713831975,1.033656358544848,0.01457282039896661,1.0262399205438075,0.16630377296957227,1.0428133608472148,0.010000191358858813,1.0321446859762742,0.09730550692167428 -37131,0.44812926140772547,0.020090661452709185,0.19754957271525764,0.2036628061559979,0.44164504050419573,1.378805623426489,0.01457282039896661,1.185863489792859,0.16630377296957227,1.4228769925310538,0.010000191358858813,1.2728340658629818,0.09730550692167428 -37133,0.33556779001857107,0.00906284813911985,0.1270428354275492,0.1283881331590425,0.4418030540838876,0.621924107960983,0.01457282039896661,0.7662526670927559,0.16630377296957227,0.6041802631863087,0.010000191358858813,0.6894147525503043,0.09730550692167428 -37135,0.3790796370601418,0.011795309318166792,0.15168209205973515,0.1483144519870701,0.4417392512686889,0.8086814656846073,0.01457282039896661,0.9142482250310584,0.16630377296957227,0.7925348008228965,0.010000191358858813,0.8759583023879871,0.09730550692167428 -37137,0.4748895089477507,0.022222285265833468,0.21342334986265932,0.21771653151076947,0.4415951356010586,1.526244495435986,0.01457282039896661,1.2814803604451093,0.16630377296957227,1.5823449475548261,0.010000191358858813,1.3908219564083337,0.09730550692167428 -37139,0.39883583875889533,0.014634769000127432,0.16535221790625426,0.16645503269377687,0.4417187168273249,1.0042266841742808,0.01457282039896661,0.9946180945325127,0.16630377296957227,1.0151359015782937,0.010000191358858813,1.0001719377886342,0.09730550692167428 -37141,0.4283514951438037,0.01658397942882401,0.18111308928199915,0.17907518101427639,0.44168169313884864,1.1378464007789928,0.01457282039896661,1.0885185922678975,0.16630377296957227,1.1642009205274215,0.010000191358858813,1.1277662541841162,0.09730550692167428 -37143,0.4626801247218598,0.021500678740476432,0.20634924021809964,0.2124978666504518,0.4416213149978554,1.476486746582913,0.01457282039896661,1.2383553466057315,0.16630377296957227,1.5348067029822199,0.010000191358858813,1.3479653576684223,0.09730550692167428 -37145,0.421752478093399,0.016222017502240595,0.17889385822645593,0.17854418931847874,0.4416877839746329,1.1125691442995198,0.01457282039896661,1.0752158139967567,0.16630377296957227,1.1187147224191571,0.010000191358858813,1.1023282457122208,0.09730550692167428 -37147,0.36919436394452965,0.011684632556455958,0.14725418907523985,0.14691503935445774,0.4417546248112213,0.8019372363658714,0.01457282039896661,0.8859263131884646,0.16630377296957227,0.7917087004699931,0.010000191358858813,0.8475213517809925,0.09730550692167428 -37149,0.4797364069364052,0.023914137181060807,0.22078977652212797,0.22987589739457573,0.44158411010895593,1.6410458299850337,0.01457282039896661,1.3250322852020129,0.16630377296957227,1.692914676916979,0.010000191358858813,1.4485674034584202,0.09730550692167428 -37151,0.41300020345440797,0.015352066873884358,0.17209624763254716,0.17157811661898137,0.4417030831581956,1.0532085542719831,0.01457282039896661,1.0345133932308481,0.16630377296957227,1.0666715008994876,0.010000191358858813,1.0556358369941305,0.09730550692167428 -37153,0.4093602935287184,0.015936013592840633,0.17323658519279303,0.17658853862516555,0.4417025162265402,1.0933988138650723,0.01457282039896661,1.0403982680369375,0.16630377296957227,1.1003315115809742,0.010000191358858813,1.0630552649548899,0.09730550692167428 -37155,0.383562359324069,0.012891252504151697,0.15444034894032443,0.15509798198350355,0.4417447341564089,0.8846229669248429,0.01457282039896661,0.9297068146972685,0.16630377296957227,0.8835157788128483,0.010000191358858813,0.9196275597997914,0.09730550692167428 -37157,0.43091732640103986,0.017482429513818204,0.1853418006040004,0.18587756043654546,0.4416728343616208,1.198821482554847,0.01457282039896661,1.1134048461554003,0.16630377296957227,1.2204889586774894,0.010000191358858813,1.1576938735288378,0.09730550692167428 -37159,0.41109493236180616,0.01575678337770116,0.1733273959665919,0.1745188806604696,0.4417014186454985,1.0809998009072146,0.01457282039896661,1.0413313820240475,0.16630377296957227,1.091219410884054,0.010000191358858813,1.060622881234473,0.09730550692167428 -37161,0.43420385689634655,0.018103781034173965,0.18785670728006099,0.19015794435597938,0.4416666528208264,1.2422697446658946,0.01457282039896661,1.1273806757760612,0.16630377296957227,1.2718664793250452,0.010000191358858813,1.1838987437073798,0.09730550692167428 -37163,0.4069047099636979,0.015322940323178495,0.16995137572068209,0.17115406447583156,0.4417106944253389,1.0514563572452262,0.01457282039896661,1.0215700060507737,0.16630377296957227,1.0656734089593831,0.010000191358858813,1.0413432629915613,0.09730550692167428 -37165,0.40400088692649794,0.014787518792849239,0.16652594529514075,0.16746115042097293,0.44171819720987693,1.015323104899009,0.01457282039896661,0.9989597548079422,0.16630377296957227,1.0320207704041247,0.010000191358858813,1.021587987464477,0.09730550692167428 -37167,0.42103549705249727,0.016498942572488365,0.17839531986570298,0.17913707116717797,0.4416899695436819,1.1321526238314676,0.01457282039896661,1.071996748623247,0.16630377296957227,1.1535457002698655,0.010000191358858813,1.1063598671140498,0.09730550692167428 -37169,0.4316117022739552,0.017028422722776902,0.1836591270901079,0.18292754170110204,0.4416730964500142,1.1686448795437627,0.01457282039896661,1.104489174075922,0.16630377296957227,1.1927637600040142,0.010000191358858813,1.1481494687984628,0.09730550692167428 -37171,0.4278060018710079,0.017523983178703403,0.18398895665274445,0.18579187811532058,0.4416788333533537,1.2015127615305716,0.01457282039896661,1.1048236680204413,0.16630377296957227,1.2270551252050237,0.010000191358858813,1.1507589751950693,0.09730550692167428 -37173,0.42673110262810054,0.017533537197879093,0.18306626965086426,0.18500936493520997,0.44168138918878747,1.2021769879454491,0.01457282039896661,1.0995036896145798,0.16630377296957227,1.2374040853818529,0.010000191358858813,1.1503770806292475,0.09730550692167428 -37175,0.4820021557742914,0.02453109935645109,0.22175214103555502,0.23292980300256338,0.441581746281339,1.6838385075998135,0.01457282039896661,1.3317247660045641,0.16630377296957227,1.7550718913060128,0.010000191358858813,1.466795158321539,0.09730550692167428 -37177,0.4510869008284759,0.017215951377743136,0.19311701856000252,0.18470329607249591,0.4416354027074898,1.1813724286605112,0.01457282039896661,1.1600229142301797,0.16630377296957227,1.1941900822099014,0.010000191358858813,1.1943251455383836,0.09730550692167428 -37179,0.375675796411625,0.011437335532631777,0.14778946847188484,0.14499466005528538,0.4417558756187573,0.7844945542288857,0.01457282039896661,0.8926580596923749,0.16630377296957227,0.7728842220152559,0.010000191358858813,0.8631891070650395,0.09730550692167428 -37181,0.4042161086355025,0.015053703892113761,0.16811090696065228,0.16989137383792943,0.4417161864992162,1.0336667827472108,0.01457282039896661,1.0093568751476656,0.16630377296957227,1.0440003713240382,0.010000191358858813,1.028313017574797,0.09730550692167428 -37183,0.37406248936337083,0.01070085993352965,0.14591226468080457,0.14010484661828265,0.4417555581085637,0.7337050285127829,0.01457282039896661,0.8806769519477144,0.16630377296957227,0.7144103872674601,0.010000191358858813,0.8312463965467023,0.09730550692167428 -37185,0.4472919970519723,0.019539918804527816,0.1957697749694141,0.20013885343163212,0.44164646924548756,1.3413702695479741,0.01457282039896661,1.1754405584886523,0.16630377296957227,1.381088150803141,0.010000191358858813,1.2588939344763954,0.09730550692167428 -37187,0.4368162056105381,0.01914858264873092,0.1915166614307114,0.1995068625650211,0.4416591470423077,1.3132151636437526,0.01457282039896661,1.1505551137286996,0.16630377296957227,1.3350016018632713,0.010000191358858813,1.2224959442672438,0.09730550692167428 -37189,0.37955953137681975,0.013340553770904854,0.1550139306332437,0.1571554284355398,0.4417328666371689,0.9150728167855934,0.01457282039896661,0.9340494222285016,0.16630377296957227,0.9287145281845046,0.010000191358858813,0.9177459462155533,0.09730550692167428 -37191,0.39896513374655623,0.014420038367586409,0.1645784930273519,0.16462099609886438,0.4417208609441951,0.9898774769913674,0.01457282039896661,0.9900255327784764,0.16630377296957227,1.002328936311111,0.010000191358858813,0.9964834469622245,0.09730550692167428 -37193,0.4308872525465053,0.017660055382938557,0.18542021887467663,0.18675458782785126,0.44167554136103,1.211036812438549,0.01457282039896661,1.1122103144106605,0.16630377296957227,1.2381491431121545,0.010000191358858813,1.160445685358545,0.09730550692167428 -37195,0.40940300212195513,0.015545535665148505,0.17183156836896094,0.17320420785322177,0.44170607245825777,1.0668325231033586,0.01457282039896661,1.0319370273806694,0.16630377296957227,1.0778612381230646,0.010000191358858813,1.0528594976881986,0.09730550692167428 -37197,0.4244710057824952,0.01731948325763636,0.18219145569556375,0.18442400511685741,0.44168214258494887,1.1874502809249616,0.01457282039896661,1.0947410210033124,0.16630377296957227,1.2118810858322266,0.010000191358858813,1.1369220719613398,0.09730550692167428 -37199,0.45216841789789763,0.020254069393771897,0.20078556933794572,0.20436120228138688,0.4416337765376003,1.3901184051078768,0.01457282039896661,1.2044994145791028,0.16630377296957227,1.428624785667533,0.010000191358858813,1.2844584452930417,0.09730550692167428 -38001,0.4793931032110399,0.027467512719256033,0.2345573523733804,0.2589310163535187,0.44155498099005475,1.8864417403014828,0.01457282039896661,1.4069015897031378,0.16630377296957227,1.9039018031696693,0.010000191358858813,1.523470891698357,0.09730550692167428 -38003,0.44073377769309124,0.02033882824268106,0.19932631650946964,0.2084674829091659,0.441637558704723,1.3956013810128107,0.01457282039896661,1.1973715956064797,0.16630377296957227,1.4001029058606305,0.010000191358858813,1.2541854574813898,0.09730550692167428 -38005,0.3741189032261676,0.014604826243753487,0.154694917054188,0.16553863789047238,0.44175711267407336,1.002953869493643,0.01457282039896661,0.9322745073895085,0.16630377296957227,1.0160392893364265,0.010000191358858813,0.9484744486520481,0.09730550692167428 -38007,0.4498874243938873,0.019876195664137043,0.19889496575316176,0.19991311187575145,0.44163686613378633,1.3630646210345456,0.01457282039896661,1.2007918190831806,0.16630377296957227,1.4052332355591934,0.010000191358858813,1.271025128724093,0.09730550692167428 -38009,0.4641861628434811,0.022334992747660418,0.21203759647648723,0.22153738584975513,0.441604411573551,1.5327803359303616,0.01457282039896661,1.2729607224352575,0.16630377296957227,1.5567992389139202,0.010000191358858813,1.3682355625406684,0.09730550692167428 -38011,0.4601406803117669,0.023517538270139124,0.21566613396242096,0.22949826913937188,0.4415992037962403,1.6136955391326704,0.01457282039896661,1.2929491922259058,0.16630377296957227,1.6326052118098517,0.010000191358858813,1.384654865751313,0.09730550692167428 -38013,0.49730841665368103,0.026028586859117003,0.23246527746380785,0.24255698570960332,0.44155465027890717,1.7871462330370267,0.01457282039896661,1.3947327620811847,0.16630377296957227,1.8616667693137945,0.010000191358858813,1.546783633996708,0.09730550692167428 -38015,0.40390170352623295,0.01509967918820819,0.17020505137674868,0.17100448345606148,0.4417064718416249,1.0361893104369884,0.01457282039896661,1.0226840209781507,0.16630377296957227,1.0327874754486135,0.010000191358858813,1.0243704007032333,0.09730550692167428 -38017,0.372407051357708,0.011797050971343386,0.14988981956081526,0.14829344040417541,0.441748518401516,0.8092278409456313,0.01457282039896661,0.900726229089593,0.16630377296957227,0.7888375039946194,0.010000191358858813,0.8511191641573894,0.09730550692167428 -38019,0.4839288416720322,0.025173609620675323,0.22740742823028304,0.24098245716444658,0.4415691604910167,1.7283464486068112,0.01457282039896661,1.3647124652931437,0.16630377296957227,1.760433702525402,0.010000191358858813,1.4921757814971608,0.09730550692167428 -38021,0.43573257501591933,0.022225983659070754,0.20094768388233725,0.21923295353833677,0.4416527615257674,1.5250208613703773,0.01457282039896661,1.2048222338862848,0.16630377296957227,1.554379256562274,0.010000191358858813,1.2871958759717956,0.09730550692167428 -38023,0.49500940007405075,0.02593371807060525,0.23600640373409382,0.2483761879384762,0.4415438134004831,1.7790006484316723,0.01457282039896661,1.4148219297910565,0.16630377296957227,1.7895869418999726,0.010000191358858813,1.5303642380060787,0.09730550692167428 -38025,0.4410543002105831,0.01960891512747898,0.19629181244831245,0.20423135875783818,0.4416425808555866,1.345907184201507,0.01457282039896661,1.1803710521664201,0.16630377296957227,1.3491542184584526,0.010000191358858813,1.241443390861665,0.09730550692167428 -38027,0.45422018869925435,0.023031638756513588,0.21191156408169487,0.226038247328473,0.44161682299419214,1.580633466622817,0.01457282039896661,1.268160222616387,0.16630377296957227,1.5970932496926658,0.010000191358858813,1.3606718302719212,0.09730550692167428 -38029,0.48133403884967674,0.02649521023083478,0.229256863058335,0.24806166054801576,0.44157187006125553,1.8180090492626904,0.01457282039896661,1.374259363650086,0.16630377296957227,1.8722280100719946,0.010000191358858813,1.5195826516061577,0.09730550692167428 -38031,0.45557854711908996,0.02395450868035165,0.2136521758999385,0.23009910401181946,0.44160945652392325,1.644117726140811,0.01457282039896661,1.2809557771781466,0.16630377296957227,1.6880021479385972,0.010000191358858813,1.3813603999667499,0.09730550692167428 -38033,0.4456670142830791,0.02279572032258276,0.209348637310091,0.2270476708034292,0.4416136408823985,1.5633714472909765,0.01457282039896661,1.2551205514015984,0.16630377296957227,1.5574005346094153,0.010000191358858813,1.3261477969265791,0.09730550692167428 -38035,0.3671267592003874,0.011925150638245435,0.14850449147170153,0.14977166261518793,0.4417506101129079,0.8181988095667595,0.01457282039896661,0.8927588011728882,0.16630377296957227,0.7960730982462411,0.010000191358858813,0.8445052948130959,0.09730550692167428 -38037,0.48875639310009084,0.025404648581903562,0.22815268918339243,0.24112010141278903,0.4415625917831316,1.7442820393357574,0.01457282039896661,1.369474839650804,0.16630377296957227,1.7968462454281031,0.010000191358858813,1.5142316465517642,0.09730550692167428 -38039,0.49435056851140713,0.026773989154416734,0.23628371558596767,0.2529801437311257,0.4415473708289335,1.8378706031519636,0.01457282039896661,1.4175427401165783,0.16630377296957227,1.8678240460525362,0.010000191358858813,1.5575482029961614,0.09730550692167428 -38041,0.4854111785367994,0.024145957874051056,0.22223152767702675,0.22959730196270958,0.44158166462128723,1.6571713188031492,0.01457282039896661,1.3335249391104707,0.16630377296957227,1.728546115768701,0.010000191358858813,1.4688067186081573,0.09730550692167428 -38043,0.46465229854827406,0.023313053643351216,0.21430609125635114,0.22510662969776962,0.44160801164874186,1.599371500427218,0.01457282039896661,1.2847644717645583,0.16630377296957227,1.6474039987504727,0.010000191358858813,1.3916699651523476,0.09730550692167428 -38045,0.4741557200578901,0.024995462838363697,0.22255662997975245,0.23660884800550475,0.4415886225583578,1.7157047492398037,0.01457282039896661,1.3338868280671359,0.16630377296957227,1.7706996196539777,0.010000191358858813,1.4606608838433872,0.09730550692167428 -38047,0.4877748736184829,0.029305900864242392,0.24051113426326884,0.26826048192762164,0.44155077619064315,2.011211500806595,0.01457282039896661,1.4416572397420433,0.16630377296957227,2.064300680762087,0.010000191358858813,1.5973878466961249,0.09730550692167428 -38049,0.45334463147556603,0.021430324414704223,0.2051262097442063,0.21305000663434887,0.4416290441952938,1.4701252868764931,0.01457282039896661,1.2293039696189392,0.16630377296957227,1.5047144237506487,0.010000191358858813,1.3178197289265632,0.09730550692167428 -38051,0.5065594830954206,0.03164125853850054,0.2565099540309699,0.28526231816855874,0.4415257807534123,2.172567936747833,0.01457282039896661,1.5369524615084673,0.16630377296957227,2.2182851027654817,0.010000191358858813,1.6966809125433486,0.09730550692167428 -38053,0.4082963179769565,0.01577197593355093,0.17298127560828896,0.17675744218447775,0.44170657673768887,1.082415043084493,0.01457282039896661,1.0388406700750004,0.16630377296957227,1.0773799711583445,0.010000191358858813,1.059090467139737,0.09730550692167428 -38055,0.47916023112689665,0.02300046794784022,0.21900979856132638,0.22620938992206024,0.44158443078599857,1.579292814133478,0.01457282039896661,1.315089144548748,0.16630377296957227,1.6076777859944018,0.010000191358858813,1.4235814096757786,0.09730550692167428 -38057,0.4404801403200176,0.01770671281620609,0.19079485702230353,0.1884758641659097,0.4416478678685858,1.2144330779719823,0.01457282039896661,1.1468416981813325,0.16630377296957227,1.2241879332042769,0.010000191358858813,1.1906327820674156,0.09730550692167428 -38059,0.4192092861616221,0.016851301401875438,0.18041502786308217,0.18276828989158753,0.4416847723873336,1.1556637825125944,0.01457282039896661,1.0833605616199038,0.16630377296957227,1.1615976064080635,0.010000191358858813,1.111903926024908,0.09730550692167428 -38061,0.40621125120683627,0.01648522493986966,0.1742679021813141,0.17945634628265233,0.4417012642535648,1.1312872542743482,0.01457282039896661,1.0454942297394576,0.16630377296957227,1.1418962699405983,0.010000191358858813,1.0670559301341505,0.09730550692167428 -38063,0.4849582879369797,0.02679203183240263,0.2329543133908686,0.25313324531065406,0.44155597512972544,1.837739701634969,0.01457282039896661,1.3990487296312635,0.16630377296957227,1.868147450256318,0.010000191358858813,1.5287253556981506,0.09730550692167428 -38065,0.45204612106427267,0.02016391542843974,0.2006727966428678,0.20683199983900913,0.44163913680433164,1.3836131602857817,0.01457282039896661,1.2038460839851468,0.16630377296957227,1.4008897865237602,0.010000191358858813,1.2866296720907977,0.09730550692167428 -38067,0.45020866209516,0.021425299877461498,0.20693407485675186,0.21738807282585496,0.4416202436653432,1.4696980992287252,0.01457282039896661,1.2408949014009276,0.16630377296957227,1.4617950957650403,0.010000191358858813,1.3032875741625483,0.09730550692167428 -38069,0.4572075530122313,0.024256267283793605,0.21571051995169355,0.23441948136462815,0.4416029448059946,1.664370273432666,0.01457282039896661,1.2935127810867,0.16630377296957227,1.6925013114278777,0.010000191358858813,1.3889959158775746,0.09730550692167428 -38071,0.4278257921416022,0.019120183882345872,0.1911286239048838,0.19984906188310642,0.44166354127673435,1.3113830950089005,0.01457282039896661,1.1473029554990783,0.16630377296957227,1.3130404403625544,0.010000191358858813,1.190787999779714,0.09730550692167428 -38073,0.43401074576378795,0.021022542675694693,0.2004121378338919,0.21416207312415408,0.4416400437131767,1.4417697732168024,0.01457282039896661,1.1998016366267903,0.16630377296957227,1.4318138280571011,0.010000191358858813,1.2520393264767087,0.09730550692167428 -38075,0.4525237232101629,0.020729642964714252,0.20226156968785813,0.20744818992045305,0.44163126704604716,1.4226013945807763,0.01457282039896661,1.213763980416294,0.16630377296957227,1.4642636438568448,0.010000191358858813,1.3001256985350031,0.09730550692167428 -38077,0.4077451216477985,0.01692893447905212,0.1770969582342766,0.18399573721920892,0.44169509554690634,1.161157123352226,0.01457282039896661,1.0632031347342132,0.16630377296957227,1.1595560146629516,0.010000191358858813,1.085353211347683,0.09730550692167428 -38079,0.36016214278000147,0.012044043949450706,0.14285107071012704,0.14851261018951573,0.4417756484261328,0.8264604465292659,0.01457282039896661,0.8613853047507494,0.16630377296957227,0.8278581055997971,0.010000191358858813,0.8460945372573232,0.09730550692167428 -38081,0.44860932644223994,0.01957468673620525,0.1966231997587966,0.19970764922499518,0.44164646663575446,1.3437207806313558,0.01457282039896661,1.179584995626679,0.16630377296957227,1.3862644662340409,0.010000191358858813,1.2632383681799104,0.09730550692167428 -38083,0.5201491011953698,0.02753679907239284,0.24525222151047818,0.25448144465065525,0.4415171335239766,1.8926907986010375,0.01457282039896661,1.4760008945574605,0.16630377296957227,1.9650932399672223,0.010000191358858813,1.6433569963109596,0.09730550692167428 -38085,0.32836998830883457,0.008874646519599703,0.12193828504858636,0.12596332163588442,0.44182388698960307,0.6095194636187538,0.01457282039896661,0.7358908928966837,0.16630377296957227,0.6020720561904277,0.010000191358858813,0.6829179717573892,0.09730550692167428 -38087,0.44624391086914283,0.018628041287285402,0.19312370883694283,0.1929850492014602,0.4416597265108293,1.277341064851314,0.01457282039896661,1.1585787751145513,0.16630377296957227,1.316759459257159,0.010000191358858813,1.2308822417003702,0.09730550692167428 -38089,0.41433867144457265,0.017705468111172806,0.18162914486957327,0.18790069976545593,0.4416831049478118,1.214466039226981,0.01457282039896661,1.0903480144885265,0.16630377296957227,1.2248526906044979,0.010000191358858813,1.1182243943078642,0.09730550692167428 -38091,0.45365152802486786,0.022318570158764983,0.20693064062783822,0.2192854094131044,0.44161665447779364,1.5317950618588383,0.01457282039896661,1.2419650657682977,0.16630377296957227,1.5772755236338498,0.010000191358858813,1.3460528470964817,0.09730550692167428 -38093,0.4287376992457949,0.018697786455444846,0.19008728378962697,0.19609813724629033,0.4416596073334602,1.282965351756235,0.01457282039896661,1.1415125521041563,0.16630377296957227,1.2882901255254637,0.010000191358858813,1.180976144611762,0.09730550692167428 -38095,0.4709723469971232,0.025117326419329043,0.2225611985410047,0.23942896551962617,0.44158262854678754,1.7229110851331266,0.01457282039896661,1.3354880864623913,0.16630377296957227,1.7640726964785123,0.010000191358858813,1.4540479313368608,0.09730550692167428 -38097,0.43072432890571205,0.01979021948095732,0.19340013306765952,0.20307145154660589,0.4416575574934958,1.3572978120343495,0.01457282039896661,1.1602556026383342,0.16630377296957227,1.3718412542384235,0.010000191358858813,1.213363513475921,0.09730550692167428 -38099,0.441320599918955,0.020858330659824245,0.20215838297529215,0.21218081706346997,0.4416325509120542,1.4315197699556896,0.01457282039896661,1.2119929130459632,0.16630377296957227,1.4298824808997683,0.010000191358858813,1.2684866564931312,0.09730550692167428 -38101,0.38575743719414735,0.014409049460511431,0.1617569110707064,0.16614050132364652,0.4417278420266989,0.989713900072104,0.01457282039896661,0.9737440488602287,0.16630377296957227,0.9811994995381947,0.010000191358858813,0.9573771168288283,0.09730550692167428 -38103,0.499328548641562,0.02872697183257454,0.2415269459416715,0.2618186300261012,0.44154313442921383,1.9722640760047498,0.01457282039896661,1.4481812959539904,0.16630377296957227,2.049335733883705,0.010000191358858813,1.6170696895812835,0.09730550692167428 -38105,0.41916430206300487,0.01750305664666764,0.18270657159033032,0.1879192981687757,0.44168204018439355,1.2004617248375382,0.01457282039896661,1.0974638502530847,0.16630377296957227,1.2032574305553703,0.010000191358858813,1.1276156587944346,0.09730550692167428 -39001,0.4117173391762017,0.015783485625975306,0.1731187424196729,0.17497212654182187,0.4417034546863198,1.083287893720334,0.01457282039896661,1.0402454048961687,0.16630377296957227,1.0955642820553504,0.010000191358858813,1.0657910730032532,0.09730550692167428 -39003,0.40538697454982053,0.016171730551647723,0.17322058934904222,0.17808180277770352,0.4417043676871324,1.109178595706827,0.01457282039896661,1.0396378366104972,0.16630377296957227,1.1114735155213853,0.010000191358858813,1.0574451724008058,0.09730550692167428 -39005,0.41007047974430894,0.016688587009834208,0.1761046711017784,0.18183552858600516,0.44169608516063374,1.1442475165786532,0.01457282039896661,1.0583009017355538,0.16630377296957227,1.1503928623658568,0.010000191358858813,1.0853081192892884,0.09730550692167428 -39007,0.41892724600559417,0.01681450220783169,0.1799367350546366,0.18230522387599535,0.44168715334959957,1.1529011665153837,0.01457282039896661,1.0803689930575495,0.16630377296957227,1.1608128712054797,0.010000191358858813,1.1102570321565495,0.09730550692167428 -39009,0.3542391178937244,0.011550394373589531,0.14105742088777667,0.1456981413530869,0.4417627518985827,0.7918818273427473,0.01457282039896661,0.851364661119989,0.16630377296957227,0.7846435271573124,0.010000191358858813,0.8071424009550525,0.09730550692167428 -39011,0.4109991473422293,0.016566541641156195,0.1764025466718976,0.1804935205958792,0.4416969938345045,1.1360581902383875,0.01457282039896661,1.0580177921149934,0.16630377296957227,1.1422795895314894,0.010000191358858813,1.0832810048969235,0.09730550692167428 -39013,0.43941386415120753,0.019395917942234345,0.19549287763476425,0.19960901833408812,0.44164584372316196,1.3308220339216033,0.01457282039896661,1.1728605043896003,0.16630377296957227,1.3494816925366027,0.010000191358858813,1.223774725808446,0.09730550692167428 -39015,0.4108502555022453,0.015305978214395603,0.17157814856193448,0.1713998201080298,0.44170388235059577,1.0507080863461593,0.01457282039896661,1.032137925172309,0.16630377296957227,1.0620392495170679,0.010000191358858813,1.051571771727432,0.09730550692167428 -39017,0.3893816896765229,0.01333920447996512,0.15891767198641,0.15857505745290368,0.441731236037504,0.9154733474424019,0.01457282039896661,0.9570612355780349,0.16630377296957227,0.9094234168573883,0.010000191358858813,0.9441792082180065,0.09730550692167428 -39019,0.4313526279960791,0.01730162233669074,0.18457197336222703,0.1850552664474136,0.44167460480779674,1.1869553717076664,0.01457282039896661,1.1082207518912512,0.16630377296957227,1.2089932997806483,0.010000191358858813,1.15569616324042,0.09730550692167428 -39021,0.4099066901171759,0.015731941442285544,0.17219229251140378,0.1739517575750515,0.44170354691864344,1.0793951544443936,0.01457282039896661,1.0350571153594346,0.16630377296957227,1.096319622072539,0.010000191358858813,1.0605389104595486,0.09730550692167428 -39023,0.41923545741762636,0.01728623254508752,0.1807482638158861,0.18495917045681964,0.4416870084479223,1.185543046287535,0.01457282039896661,1.0853297909294022,0.16630377296957227,1.2034331404826522,0.010000191358858813,1.124352807631434,0.09730550692167428 -39025,0.3990635782816552,0.013608647210713533,0.16252040926323275,0.15986911693983374,0.44172288215270006,0.9340411574059535,0.01457282039896661,0.979959525132498,0.16630377296957227,0.9343664431387577,0.010000191358858813,0.9781980058668748,0.09730550692167428 -39027,0.40135677503928113,0.01475630171658668,0.16698076633312053,0.1678397223703893,0.44171353836497523,1.012335146636127,0.01457282039896661,1.004714465543432,0.16630377296957227,1.0174728357433842,0.010000191358858813,1.012956654533216,0.09730550692167428 -39029,0.43050575990174167,0.01792246281076785,0.18681526550640737,0.18912553653192274,0.44166949345404893,1.2297966857608453,0.01457282039896661,1.120650723699777,0.16630377296957227,1.2510455131555536,0.010000191358858813,1.1665666273833815,0.09730550692167428 -39031,0.41837875930207236,0.016946849870395353,0.17936805341145157,0.1827758333123244,0.44169041779340257,1.162030320355709,0.01457282039896661,1.07714416194261,0.16630377296957227,1.177545066426877,0.010000191358858813,1.1144234671664788,0.09730550692167428 -39033,0.4277018440838233,0.018016863018770722,0.18576137797440156,0.1898934336240631,0.44167252259387757,1.2360183507005769,0.01457282039896661,1.1146726218678134,0.16630377296957227,1.2592132441136852,0.010000191358858813,1.164143669582634,0.09730550692167428 -39035,0.41633101991764765,0.01692095314003659,0.17987807841625225,0.18349828794308887,0.4416866508041629,1.1607527621842744,0.01457282039896661,1.079669671785061,0.16630377296957227,1.1635455465478843,0.010000191358858813,1.1024297347369887,0.09730550692167428 -39037,0.4171661083459305,0.017506962098100026,0.18146131616069558,0.187737627422069,0.44168697910315036,1.2010968222417804,0.01457282039896661,1.0884937400242785,0.16630377296957227,1.207368854495308,0.010000191358858813,1.1230716169078425,0.09730550692167428 -39039,0.4114492828640653,0.016320464051362657,0.17518283882068098,0.17866057480801656,0.4416991914170587,1.1194657074633922,0.01457282039896661,1.051523468903445,0.16630377296957227,1.13006261738122,0.010000191358858813,1.078288334263689,0.09730550692167428 -39041,0.38319284913710044,0.011580292203059549,0.1514667609664408,0.14596511093687792,0.44174779522547036,0.7939649916273527,0.01457282039896661,0.9134296466460673,0.16630377296957227,0.7793046006281698,0.010000191358858813,0.8842321190804865,0.09730550692167428 -39043,0.4348322695801078,0.01822868399586726,0.18884327465791778,0.19151050185031326,0.441663750642217,1.2510610655593735,0.01457282039896661,1.1336357537297856,0.16630377296957227,1.2754191195650182,0.010000191358858813,1.1885936383323479,0.09730550692167428 -39045,0.3974611621241435,0.01386873817914111,0.16281705869063193,0.16178630368191915,0.4417226683600985,0.9523595855087886,0.01457282039896661,0.9807908974909567,0.16630377296957227,0.9532716101122762,0.010000191358858813,0.9803929071813653,0.09730550692167428 -39047,0.4140000812061862,0.016433793573140863,0.17558652208881836,0.17815434217078335,0.4416987931830261,1.1269686673194224,0.01457282039896661,1.0541228240400067,0.16630377296957227,1.150942844011758,0.010000191358858813,1.0880479702701573,0.09730550692167428 -39049,0.3790995475206488,0.012026088371201452,0.1519100774701685,0.14941948298206295,0.44174456162377035,0.8246573720078736,0.01457282039896661,0.9148785976761253,0.16630377296957227,0.81097219609536,0.010000191358858813,0.8768793731577889,0.09730550692167428 -39051,0.40634278364980764,0.015509079562879464,0.1716193353769423,0.1734547325503636,0.441706368910465,1.0639410528014426,0.01457282039896661,1.0312672127457567,0.16630377296957227,1.0642833445957867,0.010000191358858813,1.045694944574081,0.09730550692167428 -39053,0.41873356192729205,0.016714107762063748,0.17765632720821536,0.18004531140148256,0.44169416780982984,1.1469402430682811,0.01457282039896661,1.066671798274288,0.16630377296957227,1.1768742039400713,0.010000191358858813,1.1090936485506497,0.09730550692167428 -39055,0.4198311810280543,0.01660998727337581,0.17963002747982254,0.18234213847635478,0.44168809257015335,1.139249352451548,0.01457282039896661,1.0797320913084976,0.16630377296957227,1.138720485697188,0.010000191358858813,1.1140300341090694,0.09730550692167428 -39057,0.4007225434769499,0.015131384683393683,0.16823837795329483,0.170956269718694,0.4417096881087126,1.038598276543143,0.01457282039896661,1.0120295276603741,0.16630377296957227,1.0423077679359376,0.010000191358858813,1.019402534730974,0.09730550692167428 -39059,0.41933649857240574,0.01696394328092365,0.17963899415589477,0.18282407628067515,0.4416895248220015,1.1634568370515026,0.01457282039896661,1.0782115584142302,0.16630377296957227,1.1810082022475794,0.010000191358858813,1.1164121915004324,0.09730550692167428 -39061,0.4000073617585776,0.015092030392118904,0.16871680687122548,0.17093993285729736,0.44171058683802455,1.0355765244021073,0.01457282039896661,1.0135249322810878,0.16630377296957227,1.0319841051926402,0.010000191358858813,1.014465309533983,0.09730550692167428 -39063,0.40518852406963213,0.015744576719789405,0.1721482085997878,0.17531824249955785,0.44170460894845165,1.0798599762365222,0.01457282039896661,1.033551886323846,0.16630377296957227,1.0797229377753261,0.010000191358858813,1.0445768323803661,0.09730550692167428 -39065,0.386172456316096,0.014580428548081968,0.16157331759747964,0.16700374327719822,0.441727024177758,1.00135308384265,0.01457282039896661,0.9718465970492767,0.16630377296957227,1.0001158578252325,0.010000191358858813,0.9714498393053161,0.09730550692167428 -39067,0.43788967812649704,0.018611111672799364,0.19216587709319505,0.1961650538900383,0.4416565367552578,1.276917675129003,0.01457282039896661,1.154169638986192,0.16630377296957227,1.2833083096421933,0.010000191358858813,1.2054079888611855,0.09730550692167428 -39069,0.4101391535367721,0.01645671131675089,0.1759414593940922,0.1798593120388609,0.4416999894140603,1.1284749000506253,0.01457282039896661,1.055085493759373,0.16630377296957227,1.1325103679774324,0.010000191358858813,1.077273342070016,0.09730550692167428 -39071,0.40922738633430755,0.016031848458610744,0.1730877318725025,0.17654730187358575,0.4417048744773172,1.09992469423789,0.01457282039896661,1.038593763293321,0.16630377296957227,1.1135250462646105,0.010000191358858813,1.0656479032273616,0.09730550692167428 -39073,0.41827517554843596,0.016072161115187285,0.17678960066019483,0.17749465518357574,0.4416927365569958,1.1025858324812339,0.01457282039896661,1.0620330624410645,0.16630377296957227,1.1116732093872392,0.010000191358858813,1.0896943126857166,0.09730550692167428 -39075,0.3555182792392976,0.012568022340778074,0.1429326854994356,0.15315542010016273,0.4417811498682719,0.861863668287336,0.01457282039896661,0.8627731019367945,0.16630377296957227,0.8546634308801999,0.010000191358858813,0.8469149545582932,0.09730550692167428 -39077,0.40099788762693794,0.01499239938060884,0.16761809516753876,0.16987190835633997,0.44171684805005595,1.0294293232002498,0.01457282039896661,1.0065702210964975,0.16630377296957227,1.0322365795052582,0.010000191358858813,1.0181557948823325,0.09730550692167428 -39079,0.4113289235563882,0.015606075252749953,0.1731016367805902,0.1738903588289603,0.44170273926349446,1.0706944465794543,0.01457282039896661,1.0404118783584284,0.16630377296957227,1.0779757427465724,0.010000191358858813,1.059671932642511,0.09730550692167428 -39081,0.4413310480507145,0.019549766344264835,0.19614481735589634,0.20134462239215148,0.44164485431297096,1.3416135764775587,0.01457282039896661,1.1776431283044597,0.16630377296957227,1.3601522726995692,0.010000191358858813,1.237483976553688,0.09730550692167428 -39083,0.40411529386909173,0.015700521757229406,0.17094887631241557,0.17461853442934977,0.441706450512804,1.0772090574080653,0.01457282039896661,1.0275356746400912,0.16630377296957227,1.0839222895387142,0.010000191358858813,1.0467324024400937,0.09730550692167428 -39085,0.4275361801862686,0.01721590142983256,0.1841955753362565,0.18486523769676094,0.44167359935276257,1.1803792176197163,0.01457282039896661,1.1067320787119832,0.16630377296957227,1.191019650279511,0.010000191358858813,1.1417185842915856,0.09730550692167428 -39087,0.4197686586035417,0.016547353167550224,0.1786159647573554,0.18029662789952872,0.44169070791304965,1.1351728621924317,0.01457282039896661,1.07234741078791,0.16630377296957227,1.148217155699104,0.010000191358858813,1.1045037569566347,0.09730550692167428 -39089,0.40523694678207856,0.014569233555527411,0.16783208574444314,0.16677253685779042,0.4417117018939307,0.9997874318963832,0.01457282039896661,1.009375741529003,0.16630377296957227,1.0024777147060708,0.010000191358858813,1.0178676519336478,0.09730550692167428 -39091,0.411988488213426,0.01602621828196684,0.1744003114088602,0.1768617898430349,0.44170156748354583,1.0997442472229908,0.01457282039896661,1.0475048192230534,0.16630377296957227,1.1092336640200124,0.010000191358858813,1.0737747682944714,0.09730550692167428 -39093,0.41239083009483457,0.01581888808781585,0.17470611982706363,0.17579937770446813,0.4416973502291326,1.0850919658651237,0.01457282039896661,1.0502101620369741,0.16630377296957227,1.0868441161831996,0.010000191358858813,1.067191275127903,0.09730550692167428 -39095,0.3983009504738221,0.014857321437241427,0.16720533751451522,0.16932890021757585,0.4417145959584835,1.019680463648023,0.01457282039896661,1.0043347948809003,0.16630377296957227,1.0159226158307884,0.010000191358858813,1.0054367469371588,0.09730550692167428 -39097,0.40778206050601357,0.014174968663191734,0.16754229454013803,0.16307729424944617,0.44170688221755405,0.9719322679481621,0.01457282039896661,1.010680886598693,0.16630377296957227,0.9789706748258133,0.010000191358858813,1.0100299861824658,0.09730550692167428 -39099,0.43262629843464384,0.019010117858884713,0.19165752359011862,0.19773139136963327,0.44165858522804735,1.304534630423784,0.01457282039896661,1.150405170098499,0.16630377296957227,1.3177071260835096,0.010000191358858813,1.1999189245812092,0.09730550692167428 -39101,0.41718658322164315,0.016022121514637385,0.176635541444532,0.17622800306902225,0.4416911216145796,1.0993394444523985,0.01457282039896661,1.0613843275290362,0.16630377296957227,1.1101910693170096,0.010000191358858813,1.081204166749186,0.09730550692167428 -39103,0.4084574605711256,0.014690694301110684,0.16973763335359532,0.16798591900869086,0.44170566279233997,1.0077970116416037,0.01457282039896661,1.0211255981234122,0.16630377296957227,1.0058338174863226,0.010000191358858813,1.0300656128696863,0.09730550692167428 -39105,0.42636873966687405,0.01691273763429237,0.18178271051352585,0.1816883585735422,0.44168285213675207,1.1599606332835695,0.01457282039896661,1.0919442036497446,0.16630377296957227,1.182819296991236,0.010000191358858813,1.1317477488622076,0.09730550692167428 -39107,0.40985469045611234,0.01678114620474533,0.17577789435512203,0.18125379236093123,0.4417011407679873,1.1506046901150304,0.01457282039896661,1.0538693410476476,0.16630377296957227,1.167004086068433,0.010000191358858813,1.0891246011722884,0.09730550692167428 -39109,0.41835003356917977,0.016455989272592682,0.17801058582007206,0.17953150204291626,0.4416917319154525,1.1288379869396157,0.01457282039896661,1.0693091226739475,0.16630377296957227,1.1412551949319467,0.010000191358858813,1.1000727173717841,0.09730550692167428 -39111,0.4494302038344438,0.019895342069040887,0.19822497654825103,0.20234839283024736,0.441640358539813,1.3656405046920357,0.01457282039896661,1.1897629021972234,0.16630377296957227,1.404484638598646,0.010000191358858813,1.2696933188805506,0.09730550692167428 -39113,0.41284273219535594,0.01639905754869498,0.17631670889382262,0.17934469447899465,0.4416956301282982,1.1246724844916907,0.01457282039896661,1.0589389041577248,0.16630377296957227,1.1331916667318769,0.010000191358858813,1.0804490557372946,0.09730550692167428 -39115,0.43047424169841586,0.018165957253463046,0.18612124881939274,0.19037876135404413,0.4416779514544946,1.2457871370384384,0.01457282039896661,1.1168089364820775,0.16630377296957227,1.2789492219664256,0.010000191358858813,1.176830706423019,0.09730550692167428 -39117,0.40780326452301346,0.014757908845895566,0.16868924839993432,0.16767512070145588,0.44170997917916266,1.012616360972105,0.01457282039896661,1.0144925316073854,0.16630377296957227,1.0212786507005127,0.010000191358858813,1.0314696637228424,0.09730550692167428 -39119,0.41286566291173604,0.01640420247997484,0.1760312505350455,0.17913060972110068,0.44169629393602855,1.125125627192928,0.01457282039896661,1.0571968513925445,0.16630377296957227,1.137076220161707,0.010000191358858813,1.0839086233804698,0.09730550692167428 -39121,0.4625954362658402,0.0200793678909409,0.20437252031912473,0.20446929010591935,0.44161614713543423,1.378726865537701,0.01457282039896661,1.2252391476269384,0.16630377296957227,1.4117523392441123,0.010000191358858813,1.299621685063134,0.09730550692167428 -39123,0.4525948866698789,0.019524457944457115,0.19842802592596043,0.20086827747790603,0.44163638270423256,1.3403561018942112,0.01457282039896661,1.191339730874975,0.16630377296957227,1.3716841795558576,0.010000191358858813,1.269329273394808,0.09730550692167428 -39125,0.4138290080081085,0.015993578694166323,0.17536910802163547,0.1764749140215603,0.44169720602411955,1.0968720571676718,0.01457282039896661,1.053901803397115,0.16630377296957227,1.1041847195419972,0.010000191358858813,1.078409683132155,0.09730550692167428 -39127,0.4003006019432275,0.01438956907144035,0.16586845485588664,0.16634816428821467,0.4417164993870405,0.9881305657281778,0.01457282039896661,0.99628547803011,0.16630377296957227,0.9841099575062618,0.010000191358858813,1.000726671368424,0.09730550692167428 -39129,0.4060725163504177,0.014358213911016632,0.16725801643560034,0.16444203610028701,0.4417098756924959,0.9849758601547093,0.01457282039896661,1.0067480107546496,0.16630377296957227,0.9942659078765983,0.010000191358858813,1.0116711081645204,0.09730550692167428 -39131,0.40594555699731827,0.015784189487831356,0.17229378031070142,0.17569181358573932,0.44170527985560426,1.0828591262842662,0.01457282039896661,1.0342998974561013,0.16630377296957227,1.0828460804841427,0.010000191358858813,1.0493631253826439,0.09730550692167428 -39133,0.3984705031583403,0.014116927883378042,0.16464595156521794,0.16378298462640412,0.4417139887586565,0.968550715881122,0.01457282039896661,0.9916108373725403,0.16630377296957227,0.9688069090966114,0.010000191358858813,0.9880243904927766,0.09730550692167428 -39135,0.41906727282274736,0.01640192400721086,0.1776810385017815,0.17898162516256189,0.44169299851928273,1.125183134228944,0.01457282039896661,1.0679674353812243,0.16630377296957227,1.1404214518524356,0.010000191358858813,1.100878685275847,0.09730550692167428 -39137,0.4001437828768124,0.015480112294298068,0.16989180040710095,0.17417999197902695,0.4417130766565318,1.062761786310291,0.01457282039896661,1.0202067207852439,0.16630377296957227,1.054624812734238,0.010000191358858813,1.0287503477360507,0.09730550692167428 -39139,0.422714855053946,0.01727250959562944,0.1818660838102184,0.18429402879944623,0.4416838930011977,1.1845287344966704,0.01457282039896661,1.091305823977369,0.16630377296957227,1.2058518529020201,0.010000191358858813,1.1293530198522537,0.09730550692167428 -39141,0.4152812413649557,0.014972375820368197,0.17241658974069846,0.16864699979058562,0.4416983300553219,1.0268028008405699,0.01457282039896661,1.036001740010541,0.16630377296957227,1.037928103677447,0.010000191358858813,1.0494275982400358,0.09730550692167428 -39143,0.4174844610656856,0.016682778715189098,0.1787869612112193,0.18125987836001756,0.4416909096221383,1.143830614746045,0.01457282039896661,1.073594195593604,0.16630377296957227,1.153260835865662,0.010000191358858813,1.1040044390732429,0.09730550692167428 -39145,0.41588583444847627,0.016788185770062046,0.1781342793475431,0.18172191414936095,0.4416925596387242,1.1510901889017975,0.01457282039896661,1.0696220395268448,0.16630377296957227,1.164756272077228,0.010000191358858813,1.0978151987665188,0.09730550692167428 -39147,0.4089170276298419,0.016184077746661724,0.1745240152208572,0.17830624096796985,0.44169987227235,1.1098001805491613,0.01457282039896661,1.0480085772800645,0.16630377296957227,1.1121925257522431,0.010000191358858813,1.0681429009523766,0.09730550692167428 -39149,0.3965276641358019,0.014319775823814631,0.16469575012462367,0.16598284977524602,0.44172169536874706,0.9828028060084624,0.01457282039896661,0.9906302944852344,0.16630377296957227,0.9734256948032552,0.010000191358858813,0.9901145056949447,0.09730550692167428 -39151,0.42111474342594757,0.017328321462016336,0.18244854704673524,0.18618723862200964,0.44168206848919267,1.1884412689243076,0.01457282039896661,1.0950127279612007,0.16630377296957227,1.195814674537317,0.010000191358858813,1.1290822389080732,0.09730550692167428 -39153,0.41403516552503183,0.016251815166387608,0.17696451564034016,0.17862301783599183,0.44169184272197326,1.114637288377462,0.01457282039896661,1.062850651062135,0.16630377296957227,1.1171991644094943,0.010000191358858813,1.080888973114471,0.09730550692167428 -39155,0.43108725403877013,0.018310373503850973,0.18851734026249695,0.19287570377511742,0.4416659374570638,1.256068547466107,0.01457282039896661,1.1315532020856267,0.16630377296957227,1.2703806476271449,0.010000191358858813,1.1792418157311526,0.09730550692167428 -39157,0.4218889496438372,0.01757588608210023,0.18308687210152125,0.18804040483528933,0.44168146285251897,1.2053073132611671,0.01457282039896661,1.0990353084994031,0.16630377296957227,1.2144385618575337,0.010000191358858813,1.1362850618795286,0.09730550692167428 -39159,0.3822376353452745,0.011630173573787867,0.1515965791109079,0.1467789102179458,0.4417429873082149,0.7973353847592521,0.01457282039896661,0.9160653243936299,0.16630377296957227,0.7792243492698873,0.010000191358858813,0.8798466449817104,0.09730550692167428 -39161,0.4166316618391032,0.01732286145452193,0.18031790353208163,0.18587512074801657,0.44169089780631265,1.1883067337987918,0.01457282039896661,1.081725603198762,0.16630377296957227,1.1985745614434227,0.010000191358858813,1.1173643777637348,0.09730550692167428 -39163,0.41178073928682685,0.015469285204622735,0.1725531814522596,0.17329700945840765,0.44170446448928125,1.0615900422900824,0.01457282039896661,1.036657188445362,0.16630377296957227,1.067795874827055,0.010000191358858813,1.0570027425945692,0.09730550692167428 -39165,0.38984875345413744,0.012717708015542808,0.15697550987458328,0.15378994653454944,0.44173432208984165,0.8722134094242517,0.01457282039896661,0.94747368912102,0.16630377296957227,0.8640731453634394,0.010000191358858813,0.9290926041925077,0.09730550692167428 -39167,0.4324770343676637,0.017968707209064343,0.18759275440852552,0.1902799584202303,0.4416653850236834,1.233203258448823,0.01457282039896661,1.1267653469671268,0.16630377296957227,1.2513638576206625,0.010000191358858813,1.1740315453423154,0.09730550692167428 -39169,0.4039369155284362,0.015699090253766104,0.17028047155877446,0.17405958840229036,0.4417117170944096,1.077242149683069,0.01457282039896661,1.0227472763558045,0.16630377296957227,1.08971026764024,0.010000191358858813,1.045138104563803,0.09730550692167428 -39171,0.41691848580027147,0.016702523828729953,0.17893352999461504,0.18179381853546212,0.44169087596311635,1.1452978643056455,0.01457282039896661,1.0734600846004638,0.16630377296957227,1.15036611001961,0.010000191358858813,1.100238065735164,0.09730550692167428 -39173,0.38927434316441756,0.01389873072078824,0.160954946427498,0.16226524147254273,0.4417240947429285,0.9540318575106006,0.01457282039896661,0.9682129292332098,0.16630377296957227,0.951622030417891,0.010000191358858813,0.9584291134916618,0.09730550692167428 -39175,0.4205557738951541,0.017409474184692665,0.1817039302593918,0.1855423920521117,0.4416862579995724,1.1934599085248383,0.01457282039896661,1.0900297918926085,0.16630377296957227,1.2107514055439834,0.010000191358858813,1.1293367227139393,0.09730550692167428 -40001,0.39116738825403063,0.014021291657791786,0.15992909417067863,0.16231006211795015,0.44173388130988656,0.9626954387480587,0.01457282039896661,0.9628618898369212,0.16630377296957227,0.9731039712521339,0.010000191358858813,0.9722895566054774,0.09730550692167428 -40003,0.4648430622692405,0.020582893435853778,0.20771455724124877,0.20749284315950509,0.4416066647025535,1.41299956792655,0.01457282039896661,1.2465633876424587,0.16630377296957227,1.4405614572772398,0.010000191358858813,1.3191922291712048,0.09730550692167428 -40005,0.41979086669871957,0.016495394164068887,0.17811549205576133,0.17922209814278167,0.441693037777503,1.131539176758862,0.01457282039896661,1.0693381048905168,0.16630377296957227,1.1506293339278058,0.010000191358858813,1.101407479361704,0.09730550692167428 -40007,0.4271029170907107,0.018065477803428213,0.18508920248953925,0.19089243856869442,0.4416782348687768,1.2390297891586515,0.01457282039896661,1.1108447520996259,0.16630377296957227,1.262327042202052,0.010000191358858813,1.1680710664833325,0.09730550692167428 -40009,0.39168804995254575,0.01449317983171201,0.16297307520803223,0.16571578160510317,0.44172635336808397,0.995148915447488,0.01457282039896661,0.9817434430726903,0.16630377296957227,0.9988532642944202,0.010000191358858813,0.9800917003609817,0.09730550692167428 -40011,0.4152046222351584,0.017020027818681956,0.17792714105988836,0.18219193162031222,0.44169345995333636,1.16718073437872,0.01457282039896661,1.0685691052896966,0.16630377296957227,1.1929571858223924,0.010000191358858813,1.1027359532260768,0.09730550692167428 -40013,0.40676670159281936,0.016534465350019817,0.17349136482041053,0.17960936980870257,0.44170451093026575,1.1337894261138053,0.01457282039896661,1.0419473770326402,0.16630377296957227,1.150921153125077,0.010000191358858813,1.0691206148974175,0.09730550692167428 -40015,0.4052952713310476,0.01601147997772054,0.17109595604559957,0.1754139888596949,0.4417095634905638,1.098319176125992,0.01457282039896661,1.0271969087510189,0.16630377296957227,1.1203506207294973,0.010000191358858813,1.0574047149552808,0.09730550692167428 -40017,0.3895577088013515,0.012775356100458643,0.15674088311567602,0.1542974765932527,0.44173566444347756,0.8769403755420191,0.01457282039896661,0.9447962800623805,0.16630377296957227,0.8726855055088276,0.010000191358858813,0.9307010364358288,0.09730550692167428 -40019,0.41011525078280253,0.016218924717357888,0.17415659023463456,0.17822950817182556,0.4417023685662905,1.112763940734315,0.01457282039896661,1.0452818449451593,0.16630377296957227,1.1237500045696915,0.010000191358858813,1.0742810357736152,0.09730550692167428 -40021,0.3927396542909818,0.014723979225083063,0.16246065210542412,0.16674879096232653,0.4417265000880663,1.010688303652301,0.01457282039896661,0.9778377904669469,0.16630377296957227,1.0297686151331273,0.010000191358858813,0.9917538046006873,0.09730550692167428 -40023,0.4262474737285109,0.018730615082749688,0.18604592917136042,0.19477819512012806,0.44168190102870153,1.2844106397830153,0.01457282039896661,1.1167054018016715,0.16630377296957227,1.3150378412128938,0.010000191358858813,1.1805425021116172,0.09730550692167428 -40025,0.4424122773795901,0.021582530865519686,0.1996838143225973,0.21191930476275506,0.4416500112362346,1.4799762618156425,0.01457282039896661,1.196735157504571,0.16630377296957227,1.538989586565739,0.010000191358858813,1.2984431750789194,0.09730550692167428 -40027,0.37847624734315366,0.011958817041508533,0.15115240465654528,0.1487819144364866,0.4417462253983153,0.8206731880818672,0.01457282039896661,0.9094923064809806,0.16630377296957227,0.8122087285017261,0.010000191358858813,0.8763108855630437,0.09730550692167428 -40029,0.4211672882997314,0.018943832972382002,0.1862226644343683,0.19611969574568322,0.44168092957692234,1.2990380415179223,0.01457282039896661,1.1168523332480194,0.16630377296957227,1.324123766382075,0.010000191358858813,1.1745184584235842,0.09730550692167428 -40031,0.3712562153965968,0.011953984653017542,0.1481360178176777,0.1482520942330432,0.4417561710427122,0.820453292277535,0.01457282039896661,0.8920383464680239,0.16630377296957227,0.8162261369464681,0.010000191358858813,0.8593188542485573,0.09730550692167428 -40033,0.42167075807553966,0.0181878840557212,0.18411502725962858,0.19068152826373538,0.44168611331755103,1.2474909537716208,0.01457282039896661,1.1033188947457142,0.16630377296957227,1.2708611044176146,0.010000191358858813,1.149411997690523,0.09730550692167428 -40035,0.42769334420362565,0.017776635269256977,0.1856411461679371,0.18905678049337343,0.4416732854093194,1.2191106437276995,0.01457282039896661,1.114372606582823,0.16630377296957227,1.232126040833385,0.010000191358858813,1.155102731041247,0.09730550692167428 -40037,0.4153829068341475,0.016215521444278957,0.17546772485782414,0.17740606411409138,0.4416982933068184,1.1127167918911323,0.01457282039896661,1.0545826714119273,0.16630377296957227,1.131883251761845,0.010000191358858813,1.0879379280127859,0.09730550692167428 -40039,0.38166454699973984,0.014662778854856482,0.16069256162228335,0.16797853086698766,0.44173051234654787,1.0068408825267212,0.01457282039896661,0.9674695009261769,0.16630377296957227,1.0016933303902265,0.010000191358858813,0.9552980600941047,0.09730550692167428 -40041,0.4495722730305297,0.01991417885153634,0.19553451134450966,0.20158053861541836,0.44165325399092725,1.366327451027899,0.01457282039896661,1.174207129888233,0.16630377296957227,1.4261606790168138,0.010000191358858813,1.2727165919629426,0.09730550692167428 -40043,0.443576356531305,0.020496758495049165,0.19763425973048815,0.20627593417314097,0.4416498919758508,1.4063887100129326,0.01457282039896661,1.1852386267681523,0.16630377296957227,1.4482895517500265,0.010000191358858813,1.2682726170907315,0.09730550692167428 -40045,0.4491370129458059,0.020993808002641813,0.20099519861409743,0.2087369820658314,0.44164205117043653,1.4407301593182535,0.01457282039896661,1.2049968978121393,0.16630377296957227,1.4895811095114524,0.010000191358858813,1.2996435270693572,0.09730550692167428 -40047,0.4078321082996085,0.01660346728500179,0.17501509410758767,0.18066717061558552,0.4417021809450281,1.1387730444405042,0.01457282039896661,1.0504579881711904,0.16630377296957227,1.147500896098943,0.010000191358858813,1.0736554387288002,0.09730550692167428 -40049,0.41918265440475466,0.017828144690681377,0.18262381992962898,0.18888779906060615,0.441686382675035,1.2233541621661352,0.01457282039896661,1.0951864366732138,0.16630377296957227,1.2387246078664997,0.010000191358858813,1.1350250084104654,0.09730550692167428 -40051,0.40167884555647193,0.014594356340615872,0.16646288336479748,0.16711729058719826,0.4417166770805186,1.0019015896720016,0.01457282039896661,0.9999336888032092,0.16630377296957227,1.0052138551207759,0.010000191358858813,1.00977626449485,0.09730550692167428 -40053,0.4449545336660663,0.021075708623446127,0.2013435869174307,0.21160239961428148,0.44163509671345713,1.4457418182772863,0.01457282039896661,1.207987968595328,0.16630377296957227,1.4735052667320332,0.010000191358858813,1.287531909352628,0.09730550692167428 -40055,0.43115649588012,0.0188279928658625,0.19014314501186919,0.19504814302592088,0.44166371557368134,1.2917061284795084,0.01457282039896661,1.140880338991396,0.16630377296957227,1.3136949561842473,0.010000191358858813,1.1779817641125503,0.09730550692167428 -40057,0.4303944287079335,0.018745189706932387,0.18929697208625085,0.19385508955439312,0.4416705206333051,1.2853149733317042,0.01457282039896661,1.1364227344548685,0.16630377296957227,1.3139109903327515,0.010000191358858813,1.1906065168270792,0.09730550692167428 -40059,0.432986800948134,0.020140266314579783,0.19305129334685694,0.20331366278997595,0.4416641608273215,1.3814282764922767,0.01457282039896661,1.1582296255720355,0.16630377296957227,1.4234166942318325,0.010000191358858813,1.2349642155858316,0.09730550692167428 -40061,0.4242911661467317,0.018148371915427525,0.18323228758406485,0.19154266799339156,0.4416854103818647,1.244658594773779,0.01457282039896661,1.1011482133485668,0.16630377296957227,1.2712474579110697,0.010000191358858813,1.160404211005332,0.09730550692167428 -40063,0.4307880443604113,0.01845414673571863,0.1870181138010094,0.19147201890854956,0.4416724904635509,1.2660098546008092,0.01457282039896661,1.1208978592751873,0.16630377296957227,1.3053913018062566,0.010000191358858813,1.1802974420896901,0.09730550692167428 -40065,0.3904566825170486,0.014475431019867603,0.16121615224095945,0.1641861970136952,0.4417322187723901,0.9936809136672449,0.01457282039896661,0.9697467991792854,0.16630377296957227,1.012818825157027,0.010000191358858813,0.9762261292995404,0.09730550692167428 -40067,0.43307378499122445,0.01979264685105317,0.19261875587609506,0.20194529418979984,0.44166498843814883,1.357684806902507,0.01457282039896661,1.155435176654914,0.16630377296957227,1.3880411187600734,0.010000191358858813,1.2230605265256074,0.09730550692167428 -40069,0.41305484451841623,0.017068682714011817,0.1767457299384516,0.18342369660800767,0.44169933238595527,1.1705484090645724,0.01457282039896661,1.0624340195317172,0.16630377296957227,1.1930419991835834,0.010000191358858813,1.104757851608495,0.09730550692167428 -40071,0.41666426838114434,0.017896507279621703,0.1811969662420574,0.18874993735233536,0.4416908487419746,1.2272298293243042,0.01457282039896661,1.0875076668259887,0.16630377296957227,1.2497515593481205,0.010000191358858813,1.1340312034988562,0.09730550692167428 -40073,0.4058799916424809,0.015951781447561705,0.17151598824150172,0.17556353647594863,0.4417052783201252,1.0942061763647875,0.01457282039896661,1.0304730297049067,0.16630377296957227,1.1104655915398687,0.010000191358858813,1.0570401152222657,0.09730550692167428 -40075,0.43453204706824067,0.019055704585314078,0.1894528685225748,0.19620895615921602,0.4416680646092539,1.3073838326449252,0.01457282039896661,1.1375145864162137,0.16630377296957227,1.3502830014048737,0.010000191358858813,1.2119211276262098,0.09730550692167428 -40077,0.41382531250733295,0.01760169009298564,0.1781523531497637,0.18723939245057647,0.44169499170835314,1.2067989286259864,0.01457282039896661,1.0704412094457527,0.16630377296957227,1.23331550203855,0.010000191358858813,1.1227740937964972,0.09730550692167428 -40079,0.409655444074735,0.015796157968312866,0.17284780974273412,0.17549281811063744,0.4417052363924632,1.0840326641665468,0.01457282039896661,1.0377753351690573,0.16630377296957227,1.0911660400563652,0.010000191358858813,1.0602957765096437,0.09730550692167428 -40081,0.41425123295303723,0.016204831412272525,0.1739379921971227,0.17578902977215466,0.441701417383376,1.1123558197904821,0.01457282039896661,1.045434903188866,0.16630377296957227,1.147707301049136,0.010000191358858813,1.088097412122531,0.09730550692167428 -40083,0.4002274554169502,0.014326070752607105,0.16534568114699164,0.1649002702969355,0.44171763100665173,0.983053787817,0.01457282039896661,0.9954250461299593,0.16630377296957227,0.985916264120654,0.010000191358858813,0.9996572620981696,0.09730550692167428 -40085,0.43095193125062237,0.01796518439429251,0.18595170382412257,0.1894232894053387,0.441677697659836,1.2323345429785455,0.01457282039896661,1.1160976938804938,0.16630377296957227,1.2602972019879606,0.010000191358858813,1.1727114000287413,0.09730550692167428 -40087,0.40705059585160375,0.014633742747973542,0.16733787199660713,0.16626919430822903,0.44171350374849283,1.0047111389334074,0.01457282039896661,1.0064366653789754,0.16630377296957227,1.0200919741916579,0.010000191358858813,1.0257245466942448,0.09730550692167428 -40089,0.4113876264620616,0.0163729001543493,0.17414127826763062,0.17821965368177037,0.4417047474593405,1.1232158932470333,0.01457282039896661,1.0449091446650662,0.16630377296957227,1.1459575800017854,0.010000191358858813,1.0821603805065103,0.09730550692167428 -40091,0.46096032050616154,0.022032679143123166,0.20646453008824672,0.2153789482548965,0.44162241864404655,1.5128310818982666,0.01457282039896661,1.2395225741258065,0.16630377296957227,1.5822051036861593,0.010000191358858813,1.3571916311731105,0.09730550692167428 -40093,0.4418799658132624,0.0200132809560548,0.1969805503745311,0.2043313587793782,0.4416477144302131,1.3732284717594452,0.01457282039896661,1.181256530517485,0.16630377296957227,1.3969748648333644,0.010000191358858813,1.2525784528784119,0.09730550692167428 -40095,0.4384697400652127,0.019192429509637312,0.19043931085293905,0.19617215164097268,0.44167103990474804,1.3167105342594314,0.01457282039896661,1.1418495635289028,0.16630377296957227,1.369686442835366,0.010000191358858813,1.2247645692602211,0.09730550692167428 -40097,0.41476128968351655,0.016454987164959783,0.17611617935146373,0.17953066400849008,0.4416982104388679,1.1291143333443734,0.01457282039896661,1.0572367893334507,0.16630377296957227,1.146082031113068,0.010000191358858813,1.0945631168579615,0.09730550692167428 -40099,0.429500739161246,0.01853249092329099,0.18650566262502194,0.19154281207288187,0.4416838297219252,1.270782222584751,0.01457282039896661,1.1168532831175146,0.16630377296957227,1.3109578757138243,0.010000191358858813,1.1802822306223857,0.09730550692167428 -40101,0.40835492149942526,0.01595434212317741,0.1729231534510832,0.17646844118490768,0.4417046688796762,1.0943017490972513,0.01457282039896661,1.0387724047807876,0.16630377296957227,1.1017682286847668,0.010000191358858813,1.0591758929027093,0.09730550692167428 -40103,0.42045659194898327,0.01747650461887876,0.18176913367959274,0.1864149308305004,0.44168798447572244,1.1982180326478622,0.01457282039896661,1.0904285251642647,0.16630377296957227,1.2143127012629928,0.010000191358858813,1.129435024967541,0.09730550692167428 -40105,0.423606811579195,0.017857635461118033,0.18222117574628036,0.1868508347533675,0.4416885090492747,1.224508501236437,0.01457282039896661,1.092858748484104,0.16630377296957227,1.2674321881813855,0.010000191358858813,1.1537383243076857,0.09730550692167428 -40107,0.42450291339148055,0.01748503532079134,0.18232742690443884,0.18589704711731003,0.4416827976715517,1.1992334856828069,0.01457282039896661,1.094906329724441,0.16630377296957227,1.2265775740509293,0.010000191358858813,1.1408172646131796,0.09730550692167428 -40109,0.38926602565319024,0.013805534720969534,0.1604959815850685,0.1616792466539957,0.441730977530312,0.9475770160687741,0.01457282039896661,0.9644077091156205,0.16630377296957227,0.9433078356088709,0.010000191358858813,0.9523216483204917,0.09730550692167428 -40111,0.41173859908038757,0.016824345915979436,0.17623004386580343,0.18186799199097559,0.4416988235990772,1.1537880441891128,0.01457282039896661,1.0581334871669617,0.16630377296957227,1.1706530984460426,0.010000191358858813,1.0925433071695545,0.09730550692167428 -40113,0.42091468881144256,0.01649075672680578,0.17839607452367273,0.17971148254688107,0.44169108230706977,1.1312720328632602,0.01457282039896661,1.0713398421270077,0.16630377296957227,1.1489543213134947,0.010000191358858813,1.1092057501263963,0.09730550692167428 -40115,0.416917700748728,0.017917021322819263,0.1803960382243959,0.18838778939434084,0.4416924750815233,1.2286743056616498,0.01457282039896661,1.0828183571999928,0.16630377296957227,1.2600882320387947,0.010000191358858813,1.1341425517097985,0.09730550692167428 -40117,0.42823898222853013,0.017684112603300772,0.1840770922800909,0.1880396089129172,0.4416816384289194,1.213560155073712,0.01457282039896661,1.1049608847254502,0.16630377296957227,1.2386401026921554,0.010000191358858813,1.160709353075736,0.09730550692167428 -40119,0.35984647174365036,0.011864385139777374,0.14427882975886164,0.14793290217913901,0.44175910695643295,0.813968294666279,0.01457282039896661,0.8709703891140219,0.16630377296957227,0.8055679173665568,0.010000191358858813,0.8233606635857331,0.09730550692167428 -40121,0.4316554727844662,0.018395741165095805,0.18838967383509003,0.19253237820945185,0.4416677368551726,1.2619663148797122,0.01457282039896661,1.1309764948485834,0.16630377296957227,1.2853099088426474,0.010000191358858813,1.1810751177921786,0.09730550692167428 -40123,0.40420756413874637,0.016130268759187518,0.17085220648332292,0.1757088400899319,0.44171053590208353,1.1063445545804855,0.01457282039896661,1.027026942801609,0.16630377296957227,1.1323644095092449,0.010000191358858813,1.0529062217768506,0.09730550692167428 -40125,0.40161669659802457,0.015260416271175537,0.16840870788082646,0.17148045510221288,0.4417136786959387,1.047523655461083,0.01457282039896661,1.011966022583521,0.16630377296957227,1.0556137236322154,0.010000191358858813,1.0269007609348595,0.09730550692167428 -40127,0.44452753548615714,0.019777674686378505,0.1943013714238282,0.2006208865329276,0.44165515730319366,1.3567584223763123,0.01457282039896661,1.166379513225185,0.16630377296957227,1.41134665026724,0.010000191358858813,1.2565430251323484,0.09730550692167428 -40129,0.4401824670093426,0.019158800168773298,0.19147946096779506,0.19677543735740477,0.4416661611559086,1.314499538503581,0.01457282039896661,1.148196521494355,0.16630377296957227,1.3599905694749508,0.010000191358858813,1.2294971116999323,0.09730550692167428 -40131,0.40050877885426794,0.014465045224267153,0.1654590046464774,0.16600048477678758,0.4417174965652454,0.992927486127859,0.01457282039896661,0.9956059999321367,0.16630377296957227,0.9970507849361578,0.010000191358858813,1.0048687257079816,0.09730550692167428 -40133,0.4127058450092296,0.01710637812982871,0.1762465687872043,0.18281681030919208,0.441700182730437,1.1731121993994096,0.01457282039896661,1.0585777733454023,0.16630377296957227,1.2043813611938607,0.010000191358858813,1.1065622105988346,0.09730550692167428 -40135,0.4094696221942631,0.015716646081688896,0.17145757502946107,0.17344244096984895,0.44170686863106157,1.078596352335214,0.01457282039896661,1.029765685065851,0.16630377296957227,1.1014316361087388,0.010000191358858813,1.0594046819107943,0.09730550692167428 -40137,0.42569938170479726,0.018347757127824466,0.18566586070375077,0.19157124018442862,0.441680365351118,1.258133101707365,0.01457282039896661,1.113820099514707,0.16630377296957227,1.2860752588069155,0.010000191358858813,1.1672758303389408,0.09730550692167428 -40139,0.3706796670661163,0.012283835565698117,0.14829168230358888,0.15072184598095284,0.44176003532792796,0.8433464022212427,0.01457282039896661,0.8931843823424607,0.16630377296957227,0.8409071727164759,0.010000191358858813,0.8704587736625439,0.09730550692167428 -40141,0.4221256240254069,0.018755103197797447,0.18560952755890897,0.19532430805982814,0.4416776999125624,1.2862618750476855,0.01457282039896661,1.114987645468545,0.16630377296957227,1.3122839845208776,0.010000191358858813,1.1733570796132757,0.09730550692167428 -40143,0.391357464177588,0.013937220951065848,0.16159400299920504,0.16252138843401764,0.4417279778834385,0.956701096184116,0.01457282039896661,0.9711482072178126,0.16630377296957227,0.9535347284862212,0.010000191358858813,0.9622157465873651,0.09730550692167428 -40145,0.40129796859699896,0.013943976961949675,0.163551681411104,0.16199108151196684,0.4417212722579732,0.9572837281298237,0.01457282039896661,0.9857910604254937,0.16630377296957227,0.9652929763749634,0.010000191358858813,0.9948941641578909,0.09730550692167428 -40147,0.42851625874642807,0.01886006858191002,0.18830994472980855,0.1954083952950978,0.44167354908560796,1.293727265913466,0.01457282039896661,1.130347004071698,0.16630377296957227,1.31979848985317,0.010000191358858813,1.1870501883372442,0.09730550692167428 -40149,0.4184757736698974,0.017994537020688747,0.18117013560163764,0.1884081792317467,0.44169087348118713,1.2335882748577733,0.01457282039896661,1.0876148866184367,0.16630377296957227,1.2698840771431485,0.010000191358858813,1.1413016107048968,0.09730550692167428 -40151,0.4224249098279451,0.018958764156604878,0.18717847097567192,0.195502700595736,0.4416691441530446,1.3012706112821446,0.01457282039896661,1.1240967054276192,0.16630377296957227,1.330563837509631,0.010000191358858813,1.1652112901595053,0.09730550692167428 -40153,0.4063077685692972,0.015593883733557176,0.17094246819810494,0.1726463106882024,0.4417095023740729,1.069627096917605,0.01457282039896661,1.0272794793038909,0.16630377296957227,1.085386273099265,0.010000191358858813,1.042650213308434,0.09730550692167428 -41001,0.46308964379203443,0.02203723064640164,0.2085588526637539,0.21705839978829491,0.4416168160316961,1.5126363296333754,0.01457282039896661,1.2521073418237796,0.16630377296957227,1.5640753004162526,0.010000191358858813,1.363207024523517,0.09730550692167428 -41003,0.38516926910050475,0.013722071354389284,0.1600279760363611,0.16200776093283964,0.44172367200585727,0.9417388115651248,0.01457282039896661,0.9622444079837624,0.16630377296957227,0.9308780941829502,0.010000191358858813,0.9403698691406145,0.09730550692167428 -41005,0.41467341164790905,0.01533900003683026,0.17421033450362,0.17296161454453585,0.4416964761918541,1.052255220162115,0.01457282039896661,1.0463347393832136,0.16630377296957227,1.0498086391890498,0.010000191358858813,1.0601534503377974,0.09730550692167428 -41007,0.43710986160537413,0.01813704176105793,0.18900416388021232,0.19110556628159037,0.4416633449562518,1.2445066659956767,0.01457282039896661,1.1348444445721109,0.16630377296957227,1.2690990684954517,0.010000191358858813,1.1914382513122002,0.09730550692167428 -41009,0.4180910914027758,0.015378271110626104,0.17436581742458204,0.17236352980841158,0.4416954851716657,1.054341750939321,0.01457282039896661,1.0479644130247758,0.16630377296957227,1.0638912054278424,0.010000191358858813,1.0734047627784267,0.09730550692167428 -41011,0.4623824004027587,0.021250006714104375,0.2067208975560137,0.21261871162541843,0.44161853315913413,1.4584656526527784,0.01457282039896661,1.2410129803629701,0.16630377296957227,1.4959259279415125,0.010000191358858813,1.3360353453050977,0.09730550692167428 -41013,0.4465636470229848,0.01938848395322621,0.1942582373331424,0.19839230062693294,0.44165348200444576,1.330267819597836,0.01457282039896661,1.1655666175126609,0.16630377296957227,1.3779215227029205,0.010000191358858813,1.2506054298547817,0.09730550692167428 -41015,0.5087030161704817,0.027151565931960317,0.23778465760813441,0.2511450058536249,0.44154235867960456,1.864048130920237,0.01457282039896661,1.4274940897562622,0.16630377296957227,1.9512904075104782,0.010000191358858813,1.6053254382264432,0.09730550692167428 -41017,0.41910493434932683,0.015669214615339863,0.1760384465942445,0.17464040929325414,0.44169358901032774,1.07495247222593,0.01457282039896661,1.0571534029005294,0.16630377296957227,1.0817909673132098,0.010000191358858813,1.0776616183239618,0.09730550692167428 -41019,0.4538625986335427,0.020888126868980637,0.20204437594951308,0.2088479780021118,0.44163260159557033,1.4345060284845181,0.01457282039896661,1.212903753425811,0.16630377296957227,1.4823925627740948,0.010000191358858813,1.3060623645552427,0.09730550692167428 -41021,0.4865023714560138,0.0231140208491577,0.2228119419773758,0.22544127254075452,0.4415698251930738,1.5861543327688161,0.01457282039896661,1.340411443477086,0.16630377296957227,1.6180844140554025,0.010000191358858813,1.4437597381309004,0.09730550692167428 -41023,0.47698069174962776,0.022948414645165366,0.2154552254494865,0.22318052028416535,0.4415942162183091,1.575633334681979,0.01457282039896661,1.293729397761368,0.16630377296957227,1.6370146289649288,0.010000191358858813,1.423289548462987,0.09730550692167428 -41025,0.4442448555154812,0.01886807022963069,0.19421064397073495,0.1958085577582019,0.4416477615811373,1.2945729024855677,0.01457282039896661,1.16542723881126,0.16630377296957227,1.321241033986292,0.010000191358858813,1.236085953979461,0.09730550692167428 -41027,0.3959918926896635,0.014402293253675433,0.16562492640681967,0.16641969268941487,0.4417195183039257,0.9892029091172085,0.01457282039896661,0.994469863858091,0.16630377296957227,0.975690662516871,0.010000191358858813,0.9867854342809856,0.09730550692167428 -41029,0.4317611345711777,0.018376196984744863,0.18850912681461765,0.19330465843780972,0.4416669466138248,1.2611762944035685,0.01457282039896661,1.1320635348560253,0.16630377296957227,1.2782605299846819,0.010000191358858813,1.182808003305092,0.09730550692167428 -41031,0.4117753788108715,0.015961726178948633,0.1721795181649831,0.17460731663787793,0.44170940058809105,1.0956521099235843,0.01457282039896661,1.0353880580329018,0.16630377296957227,1.1256016289644206,0.010000191358858813,1.0744631236135271,0.09730550692167428 -41033,0.46054757981094485,0.022197255287934946,0.2089330761890273,0.21901978906027786,0.44161690303725176,1.5232025641634626,0.01457282039896661,1.254498114514238,0.16630377296957227,1.5631906282588686,0.010000191358858813,1.3549450089595756,0.09730550692167428 -41035,0.4284447549952264,0.017738357479768416,0.1843975652376852,0.18789273093670966,0.4416783134750266,1.2171913498710798,0.01457282039896661,1.1072351267471927,0.16630377296957227,1.244807741923891,0.010000191358858813,1.1614062786291954,0.09730550692167428 -41037,0.46372260806843374,0.020515320168535717,0.20525663262078703,0.20665147067703812,0.44161612366144776,1.408826178477708,0.01457282039896661,1.232232003079222,0.16630377296957227,1.4501771299980848,0.010000191358858813,1.321414245303734,0.09730550692167428 -41039,0.4163361905211158,0.016271997385082858,0.17761171685564747,0.17928062814721551,0.44168817403964317,1.1162153843148048,0.01457282039896661,1.066910610360574,0.16630377296957227,1.1185310154415473,0.010000191358858813,1.0846102204960573,0.09730550692167428 -41041,0.47679936160954417,0.022105969539164053,0.21415163727197695,0.21813800749243428,0.44159602347045424,1.5179599587253927,0.01457282039896661,1.2861756390072405,0.16630377296957227,1.5634045899657598,0.010000191358858813,1.3974774939983017,0.09730550692167428 -41043,0.4146664919845772,0.016579600541299068,0.17732016652278085,0.18149436308420958,0.44169511148851487,1.1368142075709824,0.01457282039896661,1.06467513791554,0.16630377296957227,1.1403524048227656,0.010000191358858813,1.0918206446194325,0.09730550692167428 -41045,0.39974604965742644,0.01586508071061058,0.1697695473686912,0.17531323620880612,0.4417128897114756,1.0886332346331697,0.01457282039896661,1.018451921199027,0.16630377296957227,1.096622053464679,0.010000191358858813,1.0333760479435403,0.09730550692167428 -41047,0.39061676821504204,0.014495664766217116,0.16297473018910752,0.16690671389995376,0.4417270706607199,0.9951539715013389,0.01457282039896661,0.9791978054474486,0.16630377296957227,0.9899495286093969,0.010000191358858813,0.9764605216004787,0.09730550692167428 -41049,0.3976364406704723,0.014789387941242755,0.1647790972060058,0.16740356866512546,0.4417234366686599,1.0153031647304793,0.01457282039896661,0.9896209871497383,0.16630377296957227,1.0294355128553683,0.010000191358858813,1.0085094332463846,0.09730550692167428 -41051,0.3971990994101744,0.012944418331140916,0.16245067012319214,0.15661237636815267,0.44171770228539475,0.8876752099285232,0.01457282039896661,0.9763587913802418,0.16630377296957227,0.8669102731993741,0.010000191358858813,0.9410670962708634,0.09730550692167428 -41053,0.4041057824774339,0.01640042070217204,0.17343480150123464,0.18049577663034594,0.44170303584602966,1.1247247317948692,0.01457282039896661,1.0419446584445586,0.16630377296957227,1.1226261002115887,0.010000191358858813,1.0595619263373317,0.09730550692167428 -41055,0.4489528746566932,0.020022749374927463,0.19970910495974792,0.204501146300202,0.4416427740523359,1.3738119750018212,0.01457282039896661,1.1979978721650353,0.16630377296957227,1.395116689584889,0.010000191358858813,1.2687184842006185,0.09730550692167428 -41057,0.4630112717006677,0.021079284917942753,0.20617920463907785,0.21119461824542124,0.4416204379165607,1.4475088869833042,0.01457282039896661,1.2379594226363375,0.16630377296957227,1.488532225307843,0.010000191358858813,1.3363728689891954,0.09730550692167428 -41059,0.39248001838027907,0.014590133778989278,0.1638117058808302,0.16786727437764914,0.44172432130335104,1.0017383848058068,0.01457282039896661,0.9839242378525495,0.16630377296957227,0.9959555787844165,0.010000191358858813,0.9844804869834127,0.09730550692167428 -41061,0.41849078813704954,0.01762563126118253,0.1818119990288526,0.18862865027258643,0.4416861724305282,1.2082961490151534,0.01457282039896661,1.0927986507864813,0.16630377296957227,1.2161077644581328,0.010000191358858813,1.1306685855436807,0.09730550692167428 -41063,0.4813179995387956,0.023329994319935182,0.21973542008192462,0.22673362655014134,0.44158698172064903,1.6016136593191836,0.01457282039896661,1.3197250520268509,0.16630377296957227,1.6470483236104658,0.010000191358858813,1.4399365166932778,0.09730550692167428 -41065,0.4328927667735427,0.019004958125369203,0.19080085752146642,0.19877816851291957,0.44166317376443187,1.3036912117565804,0.01457282039896661,1.1463721002948324,0.16630377296957227,1.3142390260327343,0.010000191358858813,1.20115425634798,0.09730550692167428 -41067,0.38294626495874506,0.012035936326839788,0.1536694480297443,0.15021334789718266,0.44174087734324585,0.8259630602572098,0.01457282039896661,0.9252136985407065,0.16630377296957227,0.8046055777559704,0.010000191358858813,0.8881477182028825,0.09730550692167428 -41069,0.5137414809030196,0.027944610867710537,0.24241129421732652,0.2587757601777221,0.4415308160035909,1.9201252342943873,0.01457282039896661,1.4553471115754109,0.16630377296957227,1.9961018208380779,0.010000191358858813,1.6397912686423353,0.09730550692167428 -41071,0.39568259326182964,0.014732493249662307,0.1658400937652072,0.16851775596458518,0.4417182849037945,1.0111082665479505,0.01457282039896661,0.9954489641844831,0.16630377296957227,1.005409624367628,0.010000191358858813,0.9957192420632578,0.09730550692167428 -42001,0.4181311275161259,0.016408399377577477,0.17819311728315865,0.17931945957560647,0.44168845060457473,1.125469604509474,0.01457282039896661,1.0709459006321638,0.16630377296957227,1.1354222845412414,0.010000191358858813,1.097696636883652,0.09730550692167428 -42003,0.42866127263188014,0.01827551602794087,0.18842622106269336,0.19259551592391275,0.44166330285960775,1.2538673899561728,0.01457282039896661,1.131478021097561,0.16630377296957227,1.2626814364513064,0.010000191358858813,1.1661722973397488,0.09730550692167428 -42005,0.44254425511624773,0.019409345771440066,0.19626646046872664,0.20008549253051577,0.4416429826632904,1.3322181932725017,0.01457282039896661,1.1774308935966187,0.16630377296957227,1.352137053005511,0.010000191358858813,1.2356798420212298,0.09730550692167428 -42007,0.44231224058699903,0.019582039390220074,0.1965135671838698,0.20076329991576009,0.4416439674747812,1.3436275709353493,0.01457282039896661,1.1787368193579821,0.16630377296957227,1.3674340705302614,0.010000191358858813,1.2398976863149982,0.09730550692167428 -42009,0.43985732810678235,0.019001699337577685,0.1930549867277701,0.1968105052687789,0.4416544340075488,1.3039292997873027,0.01457282039896661,1.1581216053657057,0.16630377296957227,1.329987281701742,0.010000191358858813,1.2190959112424111,0.09730550692167428 -42011,0.4075880069911588,0.015913482567201105,0.17341796782038602,0.1763577191698416,0.4417006526820684,1.091487067126619,0.01457282039896661,1.0418559674813324,0.16630377296957227,1.09238534313941,0.010000191358858813,1.055934192444687,0.09730550692167428 -42013,0.4303056484943616,0.01867122007625072,0.18960339924124434,0.1952994422256944,0.44166464866048316,1.280845228864762,0.01457282039896661,1.1381991311496158,0.16630377296957227,1.2939688138664702,0.010000191358858813,1.1839118546576968,0.09730550692167428 -42015,0.4330772105956043,0.018396139210285954,0.18899619073309448,0.19293808374037774,0.44166527212769574,1.2618029270631106,0.01457282039896661,1.1342592098268744,0.16630377296957227,1.2824071249422182,0.010000191358858813,1.1879530861394072,0.09730550692167428 -42017,0.4192793987320647,0.016059103899068054,0.17825972975237264,0.17752319874764727,0.4416862804998417,1.1015397164902292,0.01457282039896661,1.072456128702305,0.16630377296957227,1.101254219373305,0.010000191358858813,1.0907025727271056,0.09730550692167428 -42019,0.4187510609808701,0.016577497319758137,0.17964741776542695,0.18113479096336768,0.4416848740434979,1.1366885072520407,0.01457282039896661,1.0794947807477748,0.16630377296957227,1.137504613583693,0.010000191358858813,1.101690854041153,0.09730550692167428 -42021,0.44181829917312837,0.019915526130897292,0.19752555327313648,0.2039637678735154,0.44164135139897176,1.3666972636874504,0.01457282039896661,1.1858961796627714,0.16630377296957227,1.385818200334792,0.010000191358858813,1.2452026121015325,0.09730550692167428 -42023,0.4597596657351466,0.02224775417710502,0.2096547564349615,0.21882761472743978,0.44161344572378836,1.5266283741554543,0.01457282039896661,1.2575773063508686,0.16630377296957227,1.5652380749979093,0.010000191358858813,1.3519254708997916,0.09730550692167428 -42025,0.4397784836901141,0.01865005969791675,0.19315507057337525,0.19514104833365226,0.441650146113965,1.2799775579902168,0.01457282039896661,1.1587413196711536,0.16630377296957227,1.2939927517031857,0.010000191358858813,1.207853979532999,0.09730550692167428 -42027,0.36643271403392097,0.012521935858276111,0.14889774329835395,0.1527118601004558,0.4417469109264753,0.8586009676338267,0.01457282039896661,0.8962370882565414,0.16630377296957227,0.852437726682334,0.010000191358858813,0.8611858421199162,0.09730550692167428 -42029,0.4030430528001052,0.014539487723464587,0.1677992348349729,0.16705582595374346,0.4417108295409728,0.9976408277319888,0.01457282039896661,1.009591312876577,0.16630377296957227,0.9918944273165375,0.010000191358858813,1.010835157594417,0.09730550692167428 -42031,0.41704809031239143,0.017185409930656627,0.17953336426803929,0.18388836065860326,0.4416861141794245,1.1793557029432256,0.01457282039896661,1.079284651451582,0.16630377296957227,1.2008892046734951,0.010000191358858813,1.1143543977905954,0.09730550692167428 -42033,0.43531779928276415,0.018455980273894702,0.190479158887993,0.1931176458428416,0.44165776841668036,1.2667725433777388,0.01457282039896661,1.1433026279348546,0.16630377296957227,1.28691625317476,0.010000191358858813,1.1900113839936375,0.09730550692167428 -42035,0.4131644607707059,0.017338855764903967,0.17910237849006058,0.18627109228351257,0.44168770864993956,1.1893531476718275,0.01457282039896661,1.0774520609681923,0.16630377296957227,1.1995966699037104,0.010000191358858813,1.1070079677653122,0.09730550692167428 -42037,0.4160853990200372,0.01703335085075454,0.17953151487067345,0.18378311274731401,0.44168391958449416,1.1689954112800693,0.01457282039896661,1.0793299434407224,0.16630377296957227,1.179780202447895,0.010000191358858813,1.1061722422912408,0.09730550692167428 -42039,0.42547787922035396,0.017606363943877983,0.18365998197371522,0.18774376263106873,0.44167882528129,1.207553261347492,0.01457282039896661,1.1028008981802455,0.16630377296957227,1.2260779039770064,0.010000191358858813,1.1486981695919436,0.09730550692167428 -42041,0.42035812453852395,0.016953974677929688,0.18086962373267684,0.18287826480996655,0.44168298380787296,1.163153451122477,0.01457282039896661,1.0860139670206272,0.16630377296957227,1.1747357117025796,0.010000191358858813,1.1127356377948843,0.09730550692167428 -42043,0.4127970798417039,0.015563271032673923,0.1741013446943947,0.17374757931055038,0.4416976935022036,1.0679451829935456,0.01457282039896661,1.0460705542666509,0.16630377296957227,1.0710094844872378,0.010000191358858813,1.0590777252964356,0.09730550692167428 -42045,0.4061221580644055,0.016045982923883456,0.17401755291974041,0.17771387270522482,0.44169917400388603,1.1011026217056255,0.01457282039896661,1.0444688871893333,0.16630377296957227,1.0974571075313426,0.010000191358858813,1.0551109344303196,0.09730550692167428 -42047,0.44417295444015237,0.019586107162316877,0.1974657065657532,0.20099022452412385,0.44164056006639074,1.3439015915644337,0.01457282039896661,1.1835261994106157,0.16630377296957227,1.3650090419760899,0.010000191358858813,1.2446157511007947,0.09730550692167428 -42049,0.4075917222750327,0.0161325630930313,0.17431199428107969,0.1780381617064829,0.441698463610879,1.1068012937074172,0.01457282039896661,1.0469387849300231,0.16630377296957227,1.107504466165814,0.010000191358858813,1.0618664196777714,0.09730550692167428 -42051,0.4405796976842101,0.01929566447610848,0.1952864311671903,0.19963775150591107,0.44164595740064894,1.323872971334909,0.01457282039896661,1.1720661342757261,0.16630377296957227,1.3401950395003177,0.010000191358858813,1.2253068695262277,0.09730550692167428 -42053,0.4500139922063733,0.018208595029120964,0.19576784838560873,0.19150726341740998,0.44162970935889384,1.2506959597653888,0.01457282039896661,1.172728397764311,0.16630377296957227,1.2738487741814226,0.010000191358858813,1.2130608838696588,0.09730550692167428 -42055,0.41978049436436526,0.01731580033730707,0.1810893040483492,0.18535249105127566,0.44168662340062337,1.1873843001130897,0.01457282039896661,1.086771608706138,0.16630377296957227,1.202897667261849,0.010000191358858813,1.1237314302321253,0.09730550692167428 -42057,0.42890044542512895,0.017495352201134438,0.18318112377187223,0.18517412965396973,0.4416833406634837,1.2005122118019458,0.01457282039896661,1.0997443204592856,0.16630377296957227,1.2363927428658643,0.010000191358858813,1.1539147827105771,0.09730550692167428 -42059,0.42537082802862636,0.016932391077960296,0.1830180932217168,0.18335714726787816,0.44167327477125096,1.1614071641145172,0.01457282039896661,1.0988275245490722,0.16630377296957227,1.1669975452694543,0.010000191358858813,1.124439523866912,0.09730550692167428 -42061,0.4295789007641819,0.01723803906553109,0.18392451432409768,0.18372708623204242,0.44167270188262314,1.1829337415860244,0.01457282039896661,1.1048914050974536,0.16630377296957227,1.2092152473047348,0.010000191358858813,1.1446717272420401,0.09730550692167428 -42063,0.4104472082172652,0.01682083621875129,0.17676081565435464,0.18234655882351464,0.44169165193605,1.1545166259477546,0.01457282039896661,1.0626650556323525,0.16630377296957227,1.1652261134174378,0.010000191358858813,1.087765759305765,0.09730550692167428 -42065,0.434769039615566,0.01897423493344425,0.19163874448420234,0.1964139290706933,0.4416580903711988,1.301902781810956,0.01457282039896661,1.1498258424888328,0.16630377296957227,1.325313555683102,0.010000191358858813,1.205040869178022,0.09730550692167428 -42067,0.42181661210092997,0.017509528571421802,0.18219248111223832,0.18638739150461364,0.44168483575673156,1.2005524459543824,0.01457282039896661,1.0932505274137843,0.16630377296957227,1.2196577993084023,0.010000191358858813,1.1344723484364037,0.09730550692167428 -42069,0.4305591066084361,0.018994705146612924,0.19153465263677788,0.1982025542035986,0.44165707609303023,1.3033900213937004,0.01457282039896661,1.150111887486618,0.16630377296957227,1.3102344316960415,0.010000191358858813,1.191044899921619,0.09730550692167428 -42071,0.4040211363968712,0.016098524440184604,0.1726959257748527,0.17772029276440826,0.4417056464557838,1.104330511812332,0.01457282039896661,1.03634173743301,0.16630377296957227,1.1046913613116733,0.010000191358858813,1.051655125782092,0.09730550692167428 -42073,0.4368710437360026,0.019740026384176122,0.1953995754702616,0.20267809652171448,0.4416499301755423,1.3542155703089178,0.01457282039896661,1.1725185373997,0.16630377296957227,1.3704294001040938,0.010000191358858813,1.2300489482266124,0.09730550692167428 -42075,0.42404398777343955,0.017887706782255784,0.1846006322670647,0.18949265864373216,0.44167928699832215,1.2266218756159442,0.01457282039896661,1.1079965275772297,0.16630377296957227,1.2417969632765713,0.010000191358858813,1.1485207027291149,0.09730550692167428 -42077,0.41207379766335656,0.016358489771884623,0.17649529232851432,0.17923673506174567,0.44169460037817976,1.1219274548931453,0.01457282039896661,1.0594201518085162,0.16630377296957227,1.1251127193506858,0.010000191358858813,1.0765651463816308,0.09730550692167428 -42079,0.4354785967407135,0.01917659746121044,0.19346129904206388,0.19880367719596645,0.44165071217004603,1.3157774373245905,0.01457282039896661,1.1613440398249826,0.16630377296957227,1.3298298946447686,0.010000191358858813,1.208809166685871,0.09730550692167428 -42081,0.42259959247703605,0.01758030260356936,0.18409145267604438,0.18806151435348634,0.44167524083621895,1.2059898802100828,0.01457282039896661,1.1056122505372303,0.16630377296957227,1.2119184616915684,0.010000191358858813,1.1365896404854778,0.09730550692167428 -42083,0.42678024249482427,0.017970036714096492,0.18687242066164667,0.19068351086413088,0.4416676416042492,1.2328688169108426,0.01457282039896661,1.1209651007594843,0.16630377296957227,1.2396913338452547,0.010000191358858813,1.1553850239638521,0.09730550692167428 -42085,0.43240719492848956,0.019269184535049055,0.19171283406217135,0.19907252109501922,0.4416594835819329,1.3221415656493982,0.01457282039896661,1.1511545616253676,0.16630377296957227,1.3424975398574541,0.010000191358858813,1.2056278255600956,0.09730550692167428 -42087,0.4320453084471063,0.01904647420424542,0.1896682585609688,0.19661947079504688,0.4416699549523728,1.3064376150619985,0.01457282039896661,1.1380019458940627,0.16630377296957227,1.338270410286113,0.010000191358858813,1.2006105367619622,0.09730550692167428 -42089,0.4047561143871737,0.014456868352863668,0.16751947102304038,0.1662632128070418,0.44170750230251143,0.9913899416665527,0.01457282039896661,1.0090051795317514,0.16630377296957227,0.991017774950218,0.010000191358858813,1.015652817829742,0.09730550692167428 -42091,0.4177426433483723,0.01659102100420487,0.17968537269889578,0.18136864097720912,0.4416859819196998,1.137752368016374,0.01457282039896661,1.0787197500939911,0.16630377296957227,1.1360599877385553,0.010000191358858813,1.0961814845380882,0.09730550692167428 -42093,0.44056462212691583,0.019482738494116386,0.1948411777661107,0.19890219128944492,0.4416525530250783,1.3371565021328342,0.01457282039896661,1.1682969120590259,0.16630377296957227,1.3708234767589573,0.010000191358858813,1.233979023909574,0.09730550692167428 -42095,0.41892111040043356,0.016904316183302674,0.18079730152854323,0.18346013285420265,0.441683840493843,1.159313894669081,0.01457282039896661,1.0848289234286146,0.16630377296957227,1.1613630062689528,0.010000191358858813,1.1081459579402724,0.09730550692167428 -42097,0.44042494378635144,0.01948946729872738,0.19577461955417702,0.20095558273869465,0.44164560235151484,1.3370571954413633,0.01457282039896661,1.1749902366837344,0.16630377296957227,1.3542487622457853,0.010000191358858813,1.2289239216465075,0.09730550692167428 -42099,0.41793955086836354,0.015332814474775493,0.1746833423829512,0.1719428000745996,0.441694152303603,1.051663610447589,0.01457282039896661,1.0499899187358461,0.16630377296957227,1.0583733528646093,0.010000191358858813,1.0694491080748474,0.09730550692167428 -42101,0.3875455691002101,0.014015605521282747,0.16086510243130897,0.16316387955166833,0.44172682830294874,0.9623444967966548,0.01457282039896661,0.9679561002828125,0.16630377296957227,0.9568892563162735,0.010000191358858813,0.9527483588626549,0.09730550692167428 -42103,0.4279062701981893,0.016846311823768164,0.18145874521307914,0.18136395492012714,0.44167946965824256,1.1555786296231294,0.01457282039896661,1.0919348982314778,0.16630377296957227,1.1819994231688127,0.010000191358858813,1.1382312286897873,0.09730550692167428 -42105,0.4401444498844198,0.019681580680748136,0.195287100185212,0.20245948916396844,0.44165079051887823,1.350438890101588,0.01457282039896661,1.172096537494717,0.16630377296957227,1.3716614689077893,0.010000191358858813,1.2406092140062435,0.09730550692167428 -42107,0.440594134813129,0.0192471410457732,0.1956337214643014,0.19957110019706648,0.44164463354365024,1.3207421559268648,0.01457282039896661,1.1733748961906274,0.16630377296957227,1.332598295513948,0.010000191358858813,1.2211011197868165,0.09730550692167428 -42109,0.40988827435929154,0.016299694248917685,0.17486375631978673,0.17839063710279607,0.4416970109890421,1.118073329638162,0.01457282039896661,1.0511681474781027,0.16630377296957227,1.1295002458055918,0.010000191358858813,1.0756777354522489,0.09730550692167428 -42111,0.44476930596685205,0.01945687801870117,0.19724558808537673,0.2005531896533001,0.441639627878455,1.335064074333387,0.01457282039896661,1.1836934573547753,0.16630377296957227,1.3537791711439011,0.010000191358858813,1.2398606593601396,0.09730550692167428 -42113,0.4732797782753306,0.02336629576875226,0.216570185089957,0.22679989645987547,0.44158998349436485,1.6038376718277902,0.01457282039896661,1.3013458690194608,0.16630377296957227,1.6536435607017947,0.010000191358858813,1.4192990523459992,0.09730550692167428 -42115,0.44264932961688586,0.018614466313786146,0.1925045431582232,0.19437506232368124,0.4416515862424646,1.2773745204416311,0.01457282039896661,1.1560430956082741,0.16630377296957227,1.3038802858915188,0.010000191358858813,1.2198418368702741,0.09730550692167428 -42117,0.43162200932212313,0.0184586525390492,0.1880836295840223,0.19285848455196924,0.4416661668773267,1.2670149823055519,0.01457282039896661,1.130009285254502,0.16630377296957227,1.2953132987320646,0.010000191358858813,1.1861605293882183,0.09730550692167428 -42119,0.4107151601905026,0.015995555621205138,0.17509094227936167,0.17605955117847566,0.44169128438936706,1.0977041702337322,0.01457282039896661,1.0522726460610037,0.16630377296957227,1.1043914725923067,0.010000191358858813,1.061493650896417,0.09730550692167428 -42121,0.44036310476221796,0.019143260438839092,0.19401489995373458,0.1979651383760283,0.4416515002472785,1.3136749205094258,0.01457282039896661,1.1645460480607475,0.16630377296957227,1.337382332966913,0.010000191358858813,1.2263124361927105,0.09730550692167428 -42123,0.44560729112445996,0.019391006382986783,0.1963186745010569,0.19916660831884758,0.44164518091635274,1.3307436753078614,0.01457282039896661,1.1780278490860263,0.16630377296957227,1.3592631447988501,0.010000191358858813,1.2456173170327052,0.09730550692167428 -42125,0.43714317379376,0.018826759666060608,0.1927451264480476,0.19639121956182895,0.4416525848909322,1.2917055097847427,0.01457282039896661,1.1564472071629859,0.16630377296957227,1.3057457294613217,0.010000191358858813,1.207284593880894,0.09730550692167428 -42127,0.4536171151375549,0.019522446502294618,0.19882975576282763,0.19923147603752273,0.44163294257154395,1.3401726316979006,0.01457282039896661,1.193284497810696,0.16630377296957227,1.3807337851358341,0.010000191358858813,1.2698624824910307,0.09730550692167428 -42129,0.4473480765165061,0.019862174252406047,0.19922035229675433,0.20317467717562265,0.4416359869613485,1.363270626903144,0.01457282039896661,1.1952201264050593,0.16630377296957227,1.3848764405363343,0.010000191358858813,1.2599530736519178,0.09730550692167428 -42131,0.42877990512599423,0.017071562117090426,0.18322085303811264,0.18412238227261102,0.44167627591257225,1.1714048037946867,0.01457282039896661,1.1003281784442398,0.16630377296957227,1.1880401175844302,0.010000191358858813,1.1418254614856127,0.09730550692167428 -42133,0.4134142378594249,0.015569764242265877,0.17436941268758244,0.17405231100731236,0.44169674608879206,1.0682298934175334,0.01457282039896661,1.0485939161851179,0.16630377296957227,1.06854035425913,0.010000191358858813,1.0615914142029386,0.09730550692167428 -44001,0.42549217753051805,0.018245337076110108,0.1871391872712594,0.19277067330127037,0.4416674008281183,1.2515598803659211,0.01457282039896661,1.123618136133031,0.16630377296957227,1.260140988222748,0.010000191358858813,1.163873043397087,0.09730550692167428 -44003,0.43023166961735904,0.01735131377566647,0.186623279335786,0.18652175783703628,0.44166392123329073,1.1903905004116586,0.01457282039896661,1.1206157205729033,0.16630377296957227,1.1915376437334226,0.010000191358858813,1.1473903175119546,0.09730550692167428 -44005,0.43541936272465337,0.017986140445300853,0.18972055029682316,0.19079642479574027,0.441655697112024,1.234753583522072,0.01457282039896661,1.1392360008091376,0.16630377296957227,1.2458418336128831,0.010000191358858813,1.1813600975579934,0.09730550692167428 -44007,0.39870798739144997,0.01513078043454837,0.1689888144235802,0.17157741877665694,0.4417082726841132,1.038358380466673,0.01457282039896661,1.0146782076671157,0.16630377296957227,1.0285902553182145,0.010000191358858813,1.0076714502029505,0.09730550692167428 -44009,0.4200140725110715,0.01641112794615946,0.17934500810216691,0.18004503967648655,0.4416822143179615,1.1259444172020519,0.01457282039896661,1.0782764241968272,0.16630377296957227,1.129360698110335,0.010000191358858813,1.1034602112171776,0.09730550692167428 -45001,0.425693708110341,0.017583318516461166,0.1828657608078127,0.18595163400376766,0.4416831802529063,1.2057157483906984,0.01457282039896661,1.0980605879902903,0.16630377296957227,1.237484031402078,0.010000191358858813,1.1511911853889876,0.09730550692167428 -45003,0.41804224344153185,0.01635674722673532,0.17727630673516567,0.1785796150499735,0.44169253968982425,1.122295398016215,0.01457282039896661,1.0644975271183632,0.16630377296957227,1.1391040496588318,0.010000191358858813,1.0962058265669232,0.09730550692167428 -45005,0.40713225708523493,0.014929802223974449,0.17087716938411618,0.1712637033449289,0.44170126099704454,1.024404436870873,0.01457282039896661,1.0259595577571097,0.16630377296957227,1.0119450877589693,0.010000191358858813,1.0282388375449933,0.09730550692167428 -45007,0.415151624836791,0.016239301008046686,0.17624709946635486,0.17824667207647402,0.4416958562826059,1.113769974222609,0.01457282039896661,1.0581866974506555,0.16630377296957227,1.1231902993350982,0.010000191358858813,1.0843647640528338,0.09730550692167428 -45009,0.41146189638739505,0.017481768329638617,0.17935595593807196,0.1884633656956797,0.4416939331985644,1.198784737977062,0.01457282039896661,1.0754665989386272,0.16630377296957227,1.1969308618939805,0.010000191358858813,1.107425506234515,0.09730550692167428 -45011,0.4067521782496999,0.01539174999188722,0.17084903169371318,0.17248976331558158,0.4417063934381256,1.056212337585857,0.01457282039896661,1.0272645736549086,0.16630377296957227,1.0630991771922913,0.010000191358858813,1.04479939610945,0.09730550692167428 -45013,0.43526803822654,0.019322242986323058,0.18982998833001452,0.19808126880139476,0.4416700849228632,1.325438609588335,0.01457282039896661,1.1391555872570316,0.16630377296957227,1.3729433212215643,0.010000191358858813,1.214135650370097,0.09730550692167428 -45015,0.38347848942383744,0.011953684690194536,0.15183800782621515,0.14826343892144933,0.4417456962420491,0.820407773685482,0.01457282039896661,0.9154779451067718,0.16630377296957227,0.8173067786175534,0.010000191358858813,0.8917284155292526,0.09730550692167428 -45017,0.4338478707245502,0.017228886192793946,0.1852362628738196,0.18519846759854802,0.44167025012614397,1.1824158800248155,0.01457282039896661,1.1130860193367647,0.16630377296957227,1.2027925206805246,0.010000191358858813,1.1614552520889907,0.09730550692167428 -45019,0.40034070529255744,0.01427225582421352,0.1659237428299333,0.16459057523058407,0.4417145535052467,0.97962825923966,0.01457282039896661,0.996546949220283,0.16630377296957227,0.9821934467010893,0.010000191358858813,0.991369997772451,0.09730550692167428 -45021,0.40512674594947257,0.014762609323073508,0.16813777742819166,0.16769521992940917,0.4417130059491462,1.0132956322077042,0.01457282039896661,1.0088301083583058,0.16630377296957227,1.020695600109235,0.010000191358858813,1.0196514367938943,0.09730550692167428 -45023,0.4135774345964463,0.015876694993092785,0.17414912123034093,0.17492392738038315,0.4416980841382522,1.088972688636918,0.01457282039896661,1.0472073465216014,0.16630377296957227,1.1064186486276282,0.010000191358858813,1.0747703331040284,0.09730550692167428 -45025,0.4092610554734144,0.015128360913901703,0.16977522188033456,0.17008845252461827,0.4417081148557439,1.0379241645915687,0.01457282039896661,1.019973332019427,0.16630377296957227,1.052533350129245,0.010000191358858813,1.0418881098630672,0.09730550692167428 -45027,0.4264818420391313,0.017464221284888674,0.18209192599654495,0.18636987268770033,0.441682463844529,1.1983572926006194,0.01457282039896661,1.094954255709057,0.16630377296957227,1.2280944899654558,0.010000191358858813,1.1499306233951243,0.09730550692167428 -45029,0.4162475851864784,0.016270638644845025,0.17600141231624483,0.1783419014621294,0.44169625768331916,1.1164263587765095,0.01457282039896661,1.0569605988973916,0.16630377296957227,1.133717270817828,0.010000191358858813,1.0925467176520938,0.09730550692167428 -45031,0.41223836475941866,0.01556439582155576,0.17269999874789263,0.1731588181296442,0.44170372744931086,1.0679849277285944,0.01457282039896661,1.0364556604444493,0.16630377296957227,1.0816389618776432,0.010000191358858813,1.0604110486173817,0.09730550692167428 -45033,0.3968112954255981,0.01449455166511454,0.1646248627140714,0.16718109155634775,0.44172263619171903,0.995508781947744,0.01457282039896661,0.9904301854424367,0.16630377296957227,0.9924882379428511,0.010000191358858813,0.9965377513975278,0.09730550692167428 -45035,0.3857337028650119,0.012230374208684835,0.15361902780560982,0.1506136399963061,0.44174007981950103,0.8391355294189167,0.01457282039896661,0.9274235911334496,0.16630377296957227,0.8327135199834808,0.010000191358858813,0.9071916568926528,0.09730550692167428 -45037,0.4190637205854429,0.015051555333486458,0.17363235225688575,0.16960668508864085,0.44169370551990417,1.0320954521028867,0.01457282039896661,1.0446691866863556,0.16630377296957227,1.0435079223892132,0.010000191358858813,1.062385914297864,0.09730550692167428 -45039,0.423469105579286,0.016627938348169616,0.18049517095292167,0.18002258865957135,0.4416863304080634,1.140129128896219,0.01457282039896661,1.0845029149832586,0.16630377296957227,1.1554057281539114,0.010000191358858813,1.1177734827995902,0.09730550692167428 -45041,0.40297542162282785,0.01461765348573579,0.16706063213810635,0.1669135655508096,0.44171517962623996,1.0033308055503078,0.01457282039896661,1.0032941913081883,0.16630377296957227,1.0083281372199444,0.010000191358858813,1.0109604705832975,0.09730550692167428 -45043,0.4507652372225922,0.019868586880977965,0.19743527364761415,0.2026288570498306,0.44164661794018306,1.3631205751197863,0.01457282039896661,1.1850690615375905,0.16630377296957227,1.4047643151146543,0.010000191358858813,1.2732914132720468,0.09730550692167428 -45045,0.40024102388720784,0.014230202863267427,0.1652999427825057,0.1644467374124531,0.4417173015171796,0.9770424585440369,0.01457282039896661,0.9943136418494145,0.16630377296957227,0.977606719620715,0.010000191358858813,0.992734704615343,0.09730550692167428 -45047,0.4081044927700884,0.016195037276572902,0.17360503864875082,0.1774009905305335,0.44170325296402246,1.110775877659805,0.01457282039896661,1.0426004348615256,0.16630377296957227,1.123722899984006,0.010000191358858813,1.0645692654831158,0.09730550692167428 -45049,0.4044759843426645,0.014926619497873276,0.16872341905378696,0.16936642603352114,0.44170836919079715,1.0243160905008155,0.01457282039896661,1.0138724966154333,0.16630377296957227,1.0283184030382557,0.010000191358858813,1.0236872829029078,0.09730550692167428 -45051,0.4336451087674445,0.01740574065090373,0.18476625935391128,0.18442918542009262,0.4416737738924475,1.1946444952930158,0.01457282039896661,1.109443624914964,0.16630377296957227,1.2332734431689438,0.010000191358858813,1.1608272137636206,0.09730550692167428 -45053,0.38892660376330224,0.013126045893633122,0.15852460734311707,0.1582834728555832,0.44173084006429075,0.901136666896851,0.01457282039896661,0.9545701005502474,0.16630377296957227,0.8856054060395306,0.010000191358858813,0.9354645784382375,0.09730550692167428 -45055,0.4151857372436036,0.015688164948390378,0.17411151581800538,0.17372135735786415,0.441699234980375,1.0764918644772101,0.01457282039896661,1.0470467671314079,0.16630377296957227,1.0924128286830674,0.010000191358858813,1.073882825386126,0.09730550692167428 -45057,0.41910874160196665,0.015973143990594997,0.17545952745716598,0.1750685732940942,0.44169675637782824,1.0959354830795442,0.01457282039896661,1.0527381138413685,0.16630377296957227,1.1221069825365029,0.010000191358858813,1.0853130775436135,0.09730550692167428 -45059,0.41654235569806425,0.01621891307437724,0.17623042225830737,0.1776926784057289,0.44169351019725533,1.1126980568323885,0.01457282039896661,1.0600287431428415,0.16630377296957227,1.128256230733816,0.010000191358858813,1.090145834066961,0.09730550692167428 -45061,0.4073612554223154,0.014923732719770252,0.169944315757554,0.169486595189901,0.4417066522085448,1.0242191921862456,0.01457282039896661,1.0204302311947426,0.16630377296957227,1.026920454019617,0.010000191358858813,1.0287469218470635,0.09730550692167428 -45063,0.40083069876683786,0.01376321017967263,0.1642315822290446,0.16167650555304855,0.44171785609016617,0.9449322724689588,0.01457282039896661,0.9890675264862607,0.16630377296957227,0.9405389534211455,0.010000191358858813,0.9842785670168168,0.09730550692167428 -45065,0.4911261213855239,0.021601030822792813,0.21565520472249716,0.21226624857838677,0.44158598463569576,1.4825953744608258,0.01457282039896661,1.292970305337506,0.16630377296957227,1.5594135169746175,0.010000191358858813,1.4155557304005644,0.09730550692167428 -45067,0.4154618225313229,0.0160763495309504,0.17498095955510712,0.17683475473646154,0.44169842096399287,1.102985914021366,0.01457282039896661,1.0508691839170734,0.16630377296957227,1.1207864697149748,0.010000191358858813,1.0842138786944617,0.09730550692167428 -45069,0.4119564776226999,0.014711012367324479,0.1703453545065567,0.16720024447729176,0.4417047157569518,1.0087444103819774,0.01457282039896661,1.023535329296561,0.16630377296957227,1.0178960288191417,0.010000191358858813,1.034216190615728,0.09730550692167428 -45071,0.41854252678716675,0.016782447913398706,0.17869088964477114,0.1820533892195098,0.4416905176360541,1.1510743827867402,0.01457282039896661,1.073187752477338,0.16630377296957227,1.1647331396099991,0.010000191358858813,1.1073775596837272,0.09730550692167428 -45073,0.4437681175652822,0.018886811580489965,0.19198752321884227,0.19493581484174966,0.44165762143099685,1.2963316914486018,0.01457282039896661,1.1525465809085473,0.16630377296957227,1.3414091955494651,0.010000191358858813,1.2282194887707967,0.09730550692167428 -45075,0.40581964792270353,0.015758673914489683,0.17123484768829206,0.17519650830498845,0.4417061837328907,1.0813956298250922,0.01457282039896661,1.0297376954965445,0.16630377296957227,1.0904726441650556,0.010000191358858813,1.0510903334862356,0.09730550692167428 -45077,0.3916882523281794,0.014440621446097548,0.16255731413892227,0.16549789329219372,0.44172115281546287,0.9912965699137732,0.01457282039896661,0.9785159028609176,0.16630377296957227,0.9998204429318853,0.010000191358858813,0.9787313910059221,0.09730550692167428 -45079,0.37616369194185506,0.011909021752665064,0.15029170117205992,0.14852197519193733,0.4417463073399556,0.8171179212939477,0.01457282039896661,0.9053031220579772,0.16630377296957227,0.8065735189913994,0.010000191358858813,0.8692438755562657,0.09730550692167428 -45081,0.42258128811026313,0.017143576812842336,0.17973946099270516,0.18305042801682428,0.44169086957832515,1.175883502381394,0.01457282039896661,1.079562884079898,0.16630377296957227,1.209789403264743,0.010000191358858813,1.1281231742196494,0.09730550692167428 -45083,0.4042960064295993,0.014797241238900704,0.16784586662304307,0.16787034668783424,0.4417128075703334,1.0154627216475802,0.01457282039896661,1.0089399120825358,0.16630377296957227,1.0237240334907156,0.010000191358858813,1.0193326221725236,0.09730550692167428 -45085,0.39323739796105694,0.01424188123137772,0.16198496200326418,0.16379644482135763,0.44172800139788804,0.9775635086059972,0.01457282039896661,0.9751328029609859,0.16630377296957227,0.9868935321835368,0.010000191358858813,0.9787223008092631,0.09730550692167428 -45087,0.4286453698156959,0.017826792421875258,0.18610177850695037,0.1896557648427472,0.441671924728089,1.2225456602982248,0.01457282039896661,1.1172692265290798,0.16630377296957227,1.2348706141327255,0.010000191358858813,1.159887349530726,0.09730550692167428 -45089,0.41554585603290195,0.015958242903914555,0.17549052493737755,0.17660618494975772,0.4416971122609878,1.0946356347612984,0.01457282039896661,1.0542011599861474,0.16630377296957227,1.1042097392722399,0.010000191358858813,1.081804282825595,0.09730550692167428 -45091,0.3937013323113123,0.013118607481812409,0.15898712313405658,0.1562514335296667,0.4417299722980952,0.900499170953917,0.01457282039896661,0.9586224890504462,0.16630377296957227,0.9017862918072899,0.010000191358858813,0.9501144924133056,0.09730550692167428 -46003,0.4302007612410298,0.019173460024696498,0.18964806937039416,0.19672988293523394,0.4416738094896444,1.315081477094354,0.01457282039896661,1.1353954813823994,0.16630377296957227,1.3482045945078829,0.010000191358858813,1.1982636001254972,0.09730550692167428 -46005,0.42628447620161447,0.01894161328806332,0.18907570825671677,0.1973971175548681,0.4416680579174578,1.299619573422775,0.01457282039896661,1.135849793692832,0.16630377296957227,1.3123795991331777,0.010000191358858813,1.1812299504750785,0.09730550692167428 -46007,0.37843427498594273,0.016006646186518272,0.16203055461628393,0.1768867884621116,0.44174058130546334,1.0995473330033025,0.01457282039896661,0.9741500273207747,0.16630377296957227,1.1007484715674882,0.010000191358858813,0.9914721775524125,0.09730550692167428 -46009,0.4445880676876425,0.02063242123286288,0.20105361556396242,0.20788190999179476,0.4416330872615728,1.4154355328993788,0.01457282039896661,1.2067606690620347,0.16630377296957227,1.4388512262051796,0.010000191358858813,1.2641876262917358,0.09730550692167428 -46011,0.3524208344691254,0.011672635944007737,0.14126469778729658,0.14737181684194536,0.44176643518475545,0.8008543853634886,0.01457282039896661,0.8534047318431269,0.16630377296957227,0.784819386974263,0.010000191358858813,0.8016126863733002,0.09730550692167428 -46013,0.412076704024402,0.017957625239417324,0.18207225737050942,0.1910266246147786,0.4416853086633322,1.2319542125930822,0.01457282039896661,1.0925721309414647,0.16630377296957227,1.2312551135615062,0.010000191358858813,1.1170879801178089,0.09730550692167428 -46015,0.4077781315381701,0.018072098576557616,0.1797407725997252,0.19187317015429367,0.4416973950207188,1.2397378601418017,0.01457282039896661,1.0774782468110402,0.16630377296957227,1.244067700757706,0.010000191358858813,1.1213476469634382,0.09730550692167428 -46017,0.3164855518267824,0.007874194370929424,0.11484709697251183,0.12047732336207001,0.44184215366558643,0.5404223561788688,0.01457282039896661,0.6946734084339903,0.16630377296957227,0.5173656538282481,0.010000191358858813,0.630632562026709,0.09730550692167428 -46019,0.4212268341277161,0.01724044992835136,0.17983739620897546,0.1832354203884788,0.4416930287171556,1.182648427363493,0.01457282039896661,1.0794246033410153,0.16630377296957227,1.218026729808555,0.010000191358858813,1.1331591537509702,0.09730550692167428 -46021,0.4762905777663471,0.024391945275337203,0.21862560812456747,0.22859289169470787,0.4415951441084058,1.673264198214755,0.01457282039896661,1.31080719582136,0.16630377296957227,1.7684954236501205,0.010000191358858813,1.4595480156349279,0.09730550692167428 -46023,0.4060033786090618,0.018170308309862493,0.1790104159138421,0.19235233188015033,0.44170143523528205,1.247157479007941,0.01457282039896661,1.0732595011265929,0.16630377296957227,1.2525195825394055,0.010000191358858813,1.1146374897646973,0.09730550692167428 -46025,0.4426221401566548,0.02170268595989132,0.20372543047649022,0.21855974907074366,0.441635204171126,1.489124394741276,0.01457282039896661,1.2225161439300996,0.16630377296957227,1.49257217039279,0.010000191358858813,1.2959545257485088,0.09730550692167428 -46027,0.3491856337545106,0.011679830752122488,0.14004134986921657,0.14764661488938324,0.4417684998102609,0.8014717140249401,0.01457282039896661,0.8462027339481017,0.16630377296957227,0.7845635170579999,0.010000191358858813,0.7961574062342556,0.09730550692167428 -46029,0.4044567746335149,0.016101865115652488,0.17351787205655927,0.1782462885265519,0.44170301341628493,1.1049885788787035,0.01457282039896661,1.040820261757104,0.16630377296957227,1.099525678509779,0.010000191358858813,1.0510260664649405,0.09730550692167428 -46031,0.35536985461751935,0.012096451292947969,0.1418040853853784,0.14998469555200683,0.44177938272627715,0.8296571944984685,0.01457282039896661,0.8564393414273183,0.16630377296957227,0.8214113164603287,0.010000191358858813,0.8390634350753734,0.09730550692167428 -46033,0.4875918596948188,0.022328281086554935,0.21696571461583958,0.21859767513955447,0.44158784368377524,1.5321795164436183,0.01457282039896661,1.3020473657866916,0.16630377296957227,1.5979304987345992,0.010000191358858813,1.4321237331478933,0.09730550692167428 -46035,0.41052220170267306,0.01769398145084177,0.18008850483599403,0.18804576803081183,0.4416911288053232,1.2138343012465567,0.01457282039896661,1.0797659620884614,0.16630377296957227,1.2218111321161647,0.010000191358858813,1.1081492064832508,0.09730550692167428 -46037,0.45995741719145533,0.02364131065286425,0.2152510294221024,0.23087599820060475,0.44160687331206977,1.6218403216989006,0.01457282039896661,1.291154039261848,0.16630377296957227,1.6408698858213957,0.010000191358858813,1.3843083029107277,0.09730550692167428 -46039,0.43883762197555465,0.020139454527331124,0.1956023922120971,0.2045283713743139,0.44165384325553336,1.3818316183976207,0.01457282039896661,1.1735839295022925,0.16630377296957227,1.4150155260738075,0.010000191358858813,1.2481879717374094,0.09730550692167428 -46041,0.34631670163908707,0.011111163973286323,0.137051054411655,0.1450846205458075,0.4417858644726707,0.7621714632708358,0.01457282039896661,0.8271834731517058,0.16630377296957227,0.7297092643577245,0.010000191358858813,0.7848391389851361,0.09730550692167428 -46043,0.4603935174459064,0.024153198042281818,0.2168210316696115,0.23503956556863526,0.4416016572611743,1.6573486095144212,0.01457282039896661,1.3007306020280898,0.16630377296957227,1.6743987132850178,0.010000191358858813,1.4027516827119912,0.09730550692167428 -46045,0.4664467137799436,0.024480020434895024,0.21625451822836106,0.232470505914396,0.44160755155655196,1.6787098596835914,0.01457282039896661,1.296770483411031,0.16630377296957227,1.7448078951732233,0.010000191358858813,1.4266219056494274,0.09730550692167428 -46047,0.4814505702418169,0.024935846853570632,0.22608407411946246,0.2377399879342156,0.4415720666749844,1.7124384845989176,0.01457282039896661,1.3562619526349886,0.16630377296957227,1.7529088936081345,0.010000191358858813,1.4804921033893743,0.09730550692167428 -46049,0.44006310375503266,0.021177274588794363,0.20112333972381508,0.21351300534060624,0.44163937439155043,1.4518400185932672,0.01457282039896661,1.206184027889622,0.16630377296957227,1.4653474362321013,0.010000191358858813,1.2732156058912039,0.09730550692167428 -46051,0.43771658873423336,0.019748389391526594,0.19685442601320602,0.20438530969138857,0.44164503772632624,1.3546914986648106,0.01457282039896661,1.1804868177059533,0.16630377296957227,1.35568658394544,0.010000191358858813,1.232566209165899,0.09730550692167428 -46053,0.46550688927187356,0.024960897977265858,0.2214903392232656,0.2395355106487586,0.4415869209030989,1.7122589855995867,0.01457282039896661,1.3279971205298595,0.16630377296957227,1.737839316525565,0.010000191358858813,1.431323262923654,0.09730550692167428 -46055,0.4764067301183089,0.025426122074827792,0.2305305068908069,0.24752506514032735,0.44155988645476474,1.7443123633580497,0.01457282039896661,1.3816022060368973,0.16630377296957227,1.718280309141123,0.010000191358858813,1.4654039024904435,0.09730550692167428 -46057,0.4053099885058587,0.018736602566283185,0.1795880092909664,0.1950839452882553,0.44170301409823254,1.286326671746352,0.01457282039896661,1.0762864007526103,0.16630377296957227,1.3054279581968022,0.010000191358858813,1.1278605634175753,0.09730550692167428 -46059,0.46683404239182624,0.025401604802613484,0.22197730748839212,0.24022194882987216,0.441588999698982,1.7446307472724392,0.01457282039896661,1.330643707236342,0.16630377296957227,1.7934864672304598,0.010000191358858813,1.447369666322593,0.09730550692167428 -46061,0.38608362842605526,0.014655760225452806,0.1613257334015883,0.16766657166027682,0.44173643585241323,1.0061098197187628,0.01457282039896661,0.9699694982880779,0.16630377296957227,1.0000633737412103,0.010000191358858813,0.9753103842784164,0.09730550692167428 -46063,0.4409111147177267,0.01927777663763173,0.19513310686445354,0.19804631570793624,0.4416407970612041,1.321737800375692,0.01457282039896661,1.1715501114442026,0.16630377296957227,1.3444744857144837,0.010000191358858813,1.2370463552598756,0.09730550692167428 -46065,0.4134415118058362,0.015819398911500214,0.1761880599121971,0.17700032722064846,0.4416930633931982,1.0848125070840569,0.01457282039896661,1.0578377771776255,0.16630377296957227,1.0733868245642961,0.010000191358858813,1.0672726008397093,0.09730550692167428 -46067,0.4551895272207604,0.024908986566431035,0.21725469540534093,0.2384507696145698,0.4416067899186753,1.708586366769981,0.01457282039896661,1.301563354063601,0.16630377296957227,1.7369307888940217,0.010000191358858813,1.4036615941732808,0.09730550692167428 -46069,0.4486318525925053,0.023540916077781773,0.21007635498320315,0.2295831230991922,0.4416300666175543,1.6148595689261325,0.01457282039896661,1.259963650664509,0.16630377296957227,1.6376548028382754,0.010000191358858813,1.3551234289772043,0.09730550692167428 -46071,0.34553029404625046,0.011383329582208182,0.13618749234451052,0.14548428714734563,0.44178308821868106,0.780963010630784,0.01457282039896661,0.822897159186146,0.16630377296957227,0.7679634919474506,0.010000191358858813,0.7952585901160245,0.09730550692167428 -46073,0.48797035688353196,0.027705434343745547,0.236880819199771,0.2566753527728862,0.44155608499654597,1.9012615822479653,0.01457282039896661,1.4194713595656756,0.16630377296957227,1.9426656710639705,0.010000191358858813,1.5556406532629237,0.09730550692167428 -46075,0.4278151340217916,0.01735135899649024,0.1832387889726669,0.18628336864925127,0.4416812618024494,1.1901098511867263,0.01457282039896661,1.101468025386831,0.16630377296957227,1.2091307567009477,0.010000191358858813,1.1505821959518616,0.09730550692167428 -46077,0.4588019056305931,0.02257371627381729,0.21139062346301746,0.21953070817945308,0.44161168930045525,1.5489166267651222,0.01457282039896661,1.2668971951776073,0.16630377296957227,1.5912303451396954,0.010000191358858813,1.3564152402150365,0.09730550692167428 -46079,0.411148834839668,0.017680945851734083,0.18015667852682282,0.18930505778563533,0.44168736951278303,1.2129350579513527,0.01457282039896661,1.0826901391105368,0.16630377296957227,1.2151620069378186,0.010000191358858813,1.1127322532541517,0.09730550692167428 -46081,0.4184788854989162,0.017123558934316625,0.18019442020766246,0.184414436573884,0.4416828805371996,1.175136232555483,0.01457282039896661,1.0832349995183541,0.16630377296957227,1.1887048424130364,0.010000191358858813,1.1185507162108534,0.09730550692167428 -46083,0.36790040500608523,0.0111710848135587,0.14528159183991085,0.1437259771381521,0.4417658312577434,0.7657297452083878,0.01457282039896661,0.8747569083015584,0.16630377296957227,0.7442759157715583,0.010000191358858813,0.8285701727789612,0.09730550692167428 -46085,0.3880245277520853,0.015261054992741545,0.16429629110449923,0.17321181383316395,0.44172843070411627,1.0483826023228922,0.01457282039896661,0.9873774713242126,0.16630377296957227,1.0383926609381635,0.010000191358858813,0.9954640585625669,0.09730550692167428 -46087,0.42688664225462836,0.019729279945274947,0.19287238609063853,0.20324258304825923,0.4416648108333221,1.3529861990146692,0.01457282039896661,1.154560309604211,0.16630377296957227,1.3558990522309493,0.010000191358858813,1.2038384852851436,0.09730550692167428 -46089,0.466351532389915,0.02773987289989561,0.22939128872943723,0.2574724045837393,0.4415813946489533,1.904068702795168,0.01457282039896661,1.3745081145885516,0.16630377296957227,1.94352456711476,0.010000191358858813,1.5067471825388408,0.09730550692167428 -46091,0.43359282731097903,0.02050248269237937,0.19461391563383804,0.20793049079025702,0.4416619411904182,1.4068036844475156,0.01457282039896661,1.1684762908771893,0.16630377296957227,1.4334895966722434,0.010000191358858813,1.2476387391553052,0.09730550692167428 -46093,0.3944493318525868,0.01375245953373867,0.1620802835180991,0.16157457802550051,0.4417242096098202,0.9436928157008913,0.01457282039896661,0.9766092160104077,0.16630377296957227,0.9378091692550414,0.010000191358858813,0.969585246841815,0.09730550692167428 -46095,0.3837504496364673,0.015480728286909107,0.16033104630987222,0.17069242781235183,0.4417451989758088,1.0635747825665955,0.01457282039896661,0.965158485596062,0.16630377296957227,1.090918233774468,0.010000191358858813,0.9999276098982917,0.09730550692167428 -46097,0.4734084439384788,0.024917557289946192,0.22233366645379243,0.23538082200305674,0.4415883320169152,1.7093968814582767,0.01457282039896661,1.3316955827121035,0.16630377296957227,1.766180256039938,0.010000191358858813,1.455440950860674,0.09730550692167428 -46099,0.38566018586469886,0.013082279778063814,0.15799014749419138,0.15747181775945865,0.4417325235178311,0.8982678038743088,0.01457282039896661,0.9512217788123911,0.16630377296957227,0.8808284308798678,0.010000191358858813,0.9235869836943322,0.09730550692167428 -46101,0.4132203339041143,0.01634455897888338,0.17612858310619933,0.17936693857121644,0.4416977290375429,1.1208127230459226,0.01457282039896661,1.0584163812684793,0.16630377296957227,1.1261491472503677,0.010000191358858813,1.0872467355373159,0.09730550692167428 -46103,0.4001799445690398,0.015025455961490262,0.16807639677864544,0.17006913119792605,0.44171389949964446,1.031266277582187,0.01457282039896661,1.0094763563946654,0.16630377296957227,1.0317521322837564,0.010000191358858813,1.0145901775205028,0.09730550692167428 -46105,0.45926202831956464,0.022767296293834553,0.21135214406678593,0.22428357135378157,0.44161398444899075,1.5623136572321308,0.01457282039896661,1.2688013354645729,0.16630377296957227,1.5872009561990892,0.010000191358858813,1.365947756501103,0.09730550692167428 -46107,0.4798392102160345,0.02661788724006995,0.23209615122734395,0.25133697667847055,0.44155428021596077,1.826220859948068,0.01457282039896661,1.3904079281523485,0.16630377296957227,1.8529025882165433,0.010000191358858813,1.5130560631439653,0.09730550692167428 -46109,0.41206468544956854,0.017613446426134407,0.17801667896576984,0.1876985517006507,0.4416984190345138,1.2076634495379133,0.01457282039896661,1.0684598084697703,0.16630377296957227,1.228527741081906,0.010000191358858813,1.1195997643670264,0.09730550692167428 -46111,0.43099159825553757,0.02032129851121884,0.19477209143302626,0.20665487609988514,0.44166056014672905,1.3937939879705203,0.01457282039896661,1.1676545621122751,0.16630377296957227,1.4102948281804415,0.010000191358858813,1.2330192166476706,0.09730550692167428 -46113,0.3065722306056057,0.007251422537679134,0.10905051733314042,0.11563453571836149,0.44185215770515807,0.4980751873887712,0.01457282039896661,0.6602522610543459,0.16630377296957227,0.47816492993961823,0.010000191358858813,0.5870800802127472,0.09730550692167428 -46115,0.4383120801772626,0.02118227821756449,0.19985275550826131,0.2131573620187382,0.44164394328730283,1.4531488823927337,0.01457282039896661,1.199030892630929,0.16630377296957227,1.4719983584940721,0.010000191358858813,1.2725685563799183,0.09730550692167428 -46117,0.43431029157333,0.016336626087533817,0.1816773619562622,0.17853931259697953,0.4416783805554074,1.1196499215920568,0.01457282039896661,1.0870005947927335,0.16630377296957227,1.1470555231381967,0.010000191358858813,1.138883680950276,0.09730550692167428 -46119,0.4553239843612523,0.018882369263788685,0.19795562722634602,0.19662658510389264,0.4416238276948831,1.2964665254727685,0.01457282039896661,1.193806715787341,0.16630377296957227,1.3205642050446396,0.010000191358858813,1.2640516476172095,0.09730550692167428 -46121,0.31625535859294746,0.008066215607683228,0.11556976392616389,0.12133280578779516,0.4418438672024746,0.5540699423087709,0.01457282039896661,0.6982524438951867,0.16630377296957227,0.5317679057568194,0.010000191358858813,0.6386856475746449,0.09730550692167428 -46123,0.4404142449092129,0.020964327517958153,0.1988007241170094,0.20861218208649251,0.4416469028432318,1.438188799031423,0.01457282039896661,1.1914053155446003,0.16630377296957227,1.4801394860426982,0.010000191358858813,1.2692118980602975,0.09730550692167428 -46125,0.43637634491486144,0.01984280299837359,0.19526993445927746,0.203269799519033,0.44165528813972144,1.3611192235887115,0.01457282039896661,1.1705206927163672,0.16630377296957227,1.379775795257483,0.010000191358858813,1.2334904423372395,0.09730550692167428 -46127,0.41605712649891347,0.01638146558604459,0.17748329611086194,0.17987104153985498,0.44169280394017785,1.123272856994956,0.01457282039896661,1.0663963939125765,0.16630377296957227,1.1262624979298843,0.010000191358858813,1.0919597821901696,0.09730550692167428 -46129,0.46366934394442305,0.02436928504357268,0.2174354115595667,0.23428159162441603,0.441610209726843,1.6709737606110586,0.01457282039896661,1.3045699308597691,0.16630377296957227,1.7064442698450693,0.010000191358858813,1.4096841701326843,0.09730550692167428 -46135,0.4237495094778745,0.01765583047021448,0.1847835417471284,0.18791941607093632,0.4416732341659436,1.211061759496496,0.01457282039896661,1.1091238591238093,0.16630377296957227,1.2203895519874788,0.010000191358858813,1.140455496205342,0.09730550692167428 -46137,0.33253127136091465,0.009461702925702298,0.12552315388651425,0.1312123458544589,0.441822949911204,0.6489387930489923,0.01457282039896661,0.7578767391086378,0.16630377296957227,0.6314189828181671,0.010000191358858813,0.7101705360149602,0.09730550692167428 -47001,0.4320128022352278,0.01841889858300656,0.1892965179350778,0.1931610927080779,0.44166312694492055,1.2637006066496612,0.01457282039896661,1.135844254730404,0.16630377296957227,1.2797151051419147,0.010000191358858813,1.1830708167744155,0.09730550692167428 -47003,0.3926859890233304,0.01411178728653929,0.16209354705531925,0.163492160848692,0.4417294548131321,0.9686000740227013,0.01457282039896661,0.9749049921000146,0.16630377296957227,0.968697226669383,0.010000191358858813,0.9714301797338958,0.09730550692167428 -47005,0.45560975474911475,0.020099121556517083,0.20053189430448704,0.20319081824240717,0.4416354968861581,1.3799212345881624,0.01457282039896661,1.2029074283697831,0.16630377296957227,1.4262465771970734,0.010000191358858813,1.2886447346681202,0.09730550692167428 -47007,0.43334391618450285,0.016460805388324992,0.1827628668425419,0.17935865317211908,0.4416681434661667,1.1293174941815618,0.01457282039896661,1.0993783858089248,0.16630377296957227,1.1494273250218092,0.010000191358858813,1.1350157503285576,0.09730550692167428 -47009,0.42693558453902297,0.01688774787850107,0.18172248815049585,0.18180982362812137,0.4416803299074209,1.158722042445874,0.01457282039896661,1.0921782617646645,0.16630377296957227,1.1817722386659106,0.010000191358858813,1.131865526223572,0.09730550692167428 -47011,0.41066574574351716,0.015400369641065524,0.17042759357821174,0.17026314170409584,0.44170837211951597,1.0570617617293643,0.01457282039896661,1.0244392551021422,0.16630377296957227,1.0873750213916344,0.010000191358858813,1.0501095430427867,0.09730550692167428 -47013,0.4333674873856471,0.01775279640299372,0.18540372027801255,0.1871703886206066,0.4416731652503383,1.2185016005054288,0.01457282039896661,1.1127688402288358,0.16630377296957227,1.2566402224304545,0.010000191358858813,1.1703070048766466,0.09730550692167428 -47015,0.42604967826123397,0.016931283417094718,0.18076846436896987,0.18030735110327065,0.44168370350649305,1.1615873474247822,0.01457282039896661,1.087265594580494,0.16630377296957227,1.1996663717914964,0.010000191358858813,1.1317268110288476,0.09730550692167428 -47017,0.4289963650740675,0.01843457032020192,0.18706454998507557,0.1933133105741196,0.44167132667334175,1.2650034049680192,0.01457282039896661,1.123711727592259,0.16630377296957227,1.289479764807356,0.010000191358858813,1.1774916193646958,0.09730550692167428 -47019,0.4338841415048166,0.017851579342623918,0.1872096013971285,0.18816162477323395,0.441665136515024,1.2256424444007583,0.01457282039896661,1.1241901146872522,0.16630377296957227,1.2552208812650096,0.010000191358858813,1.1733210151813989,0.09730550692167428 -47021,0.4005396110753888,0.013140316217273428,0.16207387108030236,0.15663236134220754,0.44171779528923827,0.9010708763498392,0.01457282039896661,0.9801359177576603,0.16630377296957227,0.896458437224259,0.010000191358858813,0.9697636772673779,0.09730550692167428 -47023,0.4010654349268984,0.015268397711552958,0.16715813160587312,0.17123510669422143,0.4417159163689808,1.0479263279482187,0.01457282039896661,1.0045512995152552,0.16630377296957227,1.0633696274989406,0.010000191358858813,1.0270625359911076,0.09730550692167428 -47025,0.42811332718722545,0.016904703910291904,0.18182256745611292,0.18189771738269028,0.4416779690400283,1.1597135047627494,0.01457282039896661,1.0920831856784667,0.16630377296957227,1.1871195636535208,0.010000191358858813,1.1350545094998128,0.09730550692167428 -47027,0.4754164808153717,0.021962653876018604,0.21068370642892345,0.21366616373752834,0.4416035209977901,1.507450220701017,0.01457282039896661,1.2648393024093156,0.16630377296957227,1.5930584465485333,0.010000191358858813,1.3906142913690234,0.09730550692167428 -47029,0.43471187039305714,0.017051750122313518,0.18419589987781398,0.1823045420204266,0.4416747126832005,1.1701562863427446,0.01457282039896661,1.1053930163802201,0.16630377296957227,1.2034521006824852,0.010000191358858813,1.1550775198313117,0.09730550692167428 -47031,0.4160682766270251,0.016555291521452214,0.1763078807287866,0.1789561092465768,0.4416978592154053,1.135736568925871,0.01457282039896661,1.0581959744463139,0.16630377296957227,1.1633626744266157,0.010000191358858813,1.0968288574850131,0.09730550692167428 -47033,0.4164582014648358,0.017341410954516516,0.1802393506416484,0.18626902913090193,0.4416870642326097,1.1894683935794088,0.01457282039896661,1.0823903812599882,0.16630377296957227,1.1997988395786856,0.010000191358858813,1.116543143411521,0.09730550692167428 -47035,0.47789816804083096,0.023730919848215667,0.21612594960605042,0.22601950930797093,0.44160109833027716,1.6294251260271513,0.01457282039896661,1.2961658333987705,0.16630377296957227,1.7171006543319696,0.010000191358858813,1.440449561065433,0.09730550692167428 -47037,0.3872403241577218,0.012608497599874872,0.15699251902327066,0.1532424999284629,0.44173285083455316,0.8650797230611899,0.01457282039896661,0.9440638146186671,0.16630377296957227,0.8535885539881733,0.010000191358858813,0.9090247347485139,0.09730550692167428 -47039,0.4465129392206531,0.020027970858661273,0.19830053391379993,0.2040563524045052,0.4416424172660518,1.3744967717565906,0.01457282039896661,1.190413324574073,0.16630377296957227,1.403452263511884,0.010000191358858813,1.262906962136665,0.09730550692167428 -47041,0.422631161022729,0.016645202542179733,0.17979219236371874,0.18070691801091765,0.4416859550298619,1.1419381281669236,0.01457282039896661,1.0789508694339436,0.16630377296957227,1.1581196391970527,0.010000191358858813,1.1125902933272491,0.09730550692167428 -47043,0.40342831449988537,0.014483240764222144,0.16681860904219634,0.16565836741392143,0.4417153238525372,0.9942155163118938,0.01457282039896661,1.0034402604267159,0.16630377296957227,0.999894099025985,0.010000191358858813,1.010327440258593,0.09730550692167428 -47045,0.41198776994482544,0.015905228510024478,0.1729445500140488,0.1745027010658624,0.4417020292263816,1.0914513181106797,0.01457282039896661,1.0403840782465972,0.16630377296957227,1.1158678544893457,0.010000191358858813,1.0703993936319884,0.09730550692167428 -47047,0.42188515615151767,0.015792228064521067,0.17662092748082928,0.1749502680636843,0.44169449360804186,1.0828733387806135,0.01457282039896661,1.0601829051671712,0.16630377296957227,1.0973995603589375,0.010000191358858813,1.0899323866809247,0.09730550692167428 -47049,0.43162669676836807,0.017362815083685146,0.18468211905690446,0.1856239383046689,0.4416785339627288,1.1912524677430394,0.01457282039896661,1.1082234127682387,0.16630377296957227,1.2131108323193445,0.010000191358858813,1.156349914634073,0.09730550692167428 -47051,0.42816165019509206,0.017981726782130163,0.1846024323162767,0.18826147723137832,0.44167839185269175,1.233351517270431,0.01457282039896661,1.1080337678170715,0.16630377296957227,1.2720502900602797,0.010000191358858813,1.1651134540552115,0.09730550692167428 -47053,0.41942615967249025,0.01770078264078427,0.18182591928733602,0.18760256622479488,0.4416876724707855,1.213878540102883,0.01457282039896661,1.0908819597899666,0.16630377296957227,1.2350386182570534,0.010000191358858813,1.1337054712939751,0.09730550692167428 -47055,0.42913772963156616,0.017308239084751376,0.1836229705009959,0.18590792253293276,0.44167518784790105,1.1878867701823381,0.01457282039896661,1.1033134333805799,0.16630377296957227,1.2088231005560945,0.010000191358858813,1.1515220961467092,0.09730550692167428 -47057,0.43041879572905284,0.01654291642039024,0.1817212228460307,0.17981523416492315,0.4416793453379862,1.1345744985905672,0.01457282039896661,1.0923246210807531,0.16630377296957227,1.1554317780889933,0.010000191358858813,1.1301254548247233,0.09730550692167428 -47059,0.43518766459030644,0.01780268298939715,0.18725483622812195,0.1878744050468699,0.44166772151499745,1.2217467423355204,0.01457282039896661,1.1239012325656608,0.16630377296957227,1.251449455194792,0.010000191358858813,1.1768536695929868,0.09730550692167428 -47061,0.4272133358704401,0.017509509189120923,0.1836227418839292,0.18553445270296687,0.4416801179410254,1.2006790709018484,0.01457282039896661,1.1025785241439932,0.16630377296957227,1.2289251797073577,0.010000191358858813,1.1514428046909473,0.09730550692167428 -47063,0.4167609792957272,0.01648644366590745,0.17727544183372512,0.17963920456056168,0.4416945910985835,1.1305598970819797,0.01457282039896661,1.0637359025545718,0.16630377296957227,1.144417769154682,0.010000191358858813,1.0919445680024764,0.09730550692167428 -47065,0.41707967192092554,0.01616629503010067,0.17691222488378155,0.1774887080596385,0.4416919506143838,1.109213188787641,0.01457282039896661,1.0622968741988372,0.16630377296957227,1.1205707663772386,0.010000191358858813,1.084554300652194,0.09730550692167428 -47067,0.43842421418506927,0.017991240335661948,0.1902926783950754,0.19101498706682107,0.44165609218753565,1.234797537286541,0.01457282039896661,1.1430644168664004,0.16630377296957227,1.2475718144042323,0.010000191358858813,1.1890980476083084,0.09730550692167428 -47069,0.41507054151519757,0.015371844188372574,0.17444242607616348,0.17298343784553172,0.4416925765000791,1.054252631606989,0.01457282039896661,1.049787399403029,0.16630377296957227,1.0548677543688796,0.010000191358858813,1.0573821060561857,0.09730550692167428 -47071,0.4388456975990055,0.01850911066638946,0.19035617366440258,0.19324741518294203,0.44166118086121553,1.2700773709926576,0.01457282039896661,1.1426380593412182,0.16630377296957227,1.3013530711192924,0.010000191358858813,1.2066045454818297,0.09730550692167428 -47073,0.43226716117477676,0.017300057870206678,0.18453861450714226,0.18437574041189608,0.44167505158434545,1.1870181599959388,0.01457282039896661,1.1086940826522134,0.16630377296957227,1.2152904788773828,0.010000191358858813,1.1566850603610987,0.09730550692167428 -47075,0.4051973318452824,0.015211310098226512,0.1700503101196988,0.17213113585105067,0.4417115576898147,1.0443792197802404,0.01457282039896661,1.0217733722863915,0.16630377296957227,1.0428201114883882,0.010000191358858813,1.0346238833329022,0.09730550692167428 -47077,0.41956581381305313,0.016068228263292825,0.17572471141173895,0.17492588100665316,0.4416976212131178,1.1024880598937452,0.01457282039896661,1.056175575226622,0.16630377296957227,1.1344097391183223,0.010000191358858813,1.0914503561078501,0.09730550692167428 -47079,0.4456515117598028,0.019804379583092287,0.1960407543384628,0.20102668182685013,0.4416523869873368,1.3591364204961776,0.01457282039896661,1.1760089399829323,0.16630377296957227,1.40350447728536,0.010000191358858813,1.25530098547872,0.09730550692167428 -47081,0.41402439922381773,0.014800895768084056,0.17094046074120653,0.1667049826443725,0.44170018238878184,1.015006168202249,0.01457282039896661,1.0287902372217919,0.16630377296957227,1.0338140943507457,0.010000191358858813,1.0455625484297562,0.09730550692167428 -47083,0.4293404503393928,0.01852381285384446,0.18635703535995363,0.19253388823074186,0.44167726503822946,1.2705249708693371,0.01457282039896661,1.1185218840289046,0.16630377296957227,1.3100754909274634,0.010000191358858813,1.1843299100911402,0.09730550692167428 -47085,0.43133397569864507,0.017487119313646503,0.18417769989549815,0.18601572782199807,0.44168100199778404,1.1999669775064339,0.01457282039896661,1.1048146679025357,0.16630377296957227,1.2304382008321435,0.010000191358858813,1.1606150159660165,0.09730550692167428 -47087,0.44757983597910056,0.01841060909114152,0.1927091895490582,0.1910130255359365,0.4416539862917821,1.2624485082346988,0.01457282039896661,1.1584173051685567,0.16630377296957227,1.303330147151847,0.010000191358858813,1.2261431242203735,0.09730550692167428 -47089,0.42129056984182567,0.016305658057453314,0.17694804799012182,0.1776817837756257,0.4416926961712053,1.1187098833880005,0.01457282039896661,1.062596572735465,0.16630377296957227,1.147975793571044,0.010000191358858813,1.1040012977289972,0.09730550692167428 -47091,0.4507139904088254,0.01878094470863064,0.1959035602609256,0.19466042932185793,0.4416418323779912,1.2895612191254116,0.01457282039896661,1.1749876077059027,0.16630377296957227,1.3203225007052657,0.010000191358858813,1.2342351990496523,0.09730550692167428 -47093,0.40448591094954867,0.01465612976446069,0.16810270126255836,0.16707505422590452,0.4417099505322205,1.0057142542834159,0.01457282039896661,1.010936824407446,0.16630377296957227,1.0108330271901091,0.010000191358858813,1.0126074733200146,0.09730550692167428 -47095,0.42700514978131715,0.01527217978845525,0.17766849162713277,0.1683811204680765,0.4416789650930038,1.048273985144768,0.01457282039896661,1.0651531576311708,0.16630377296957227,1.0802374767380458,0.010000191358858813,1.0773863711669516,0.09730550692167428 -47097,0.3952595443311131,0.013853576807371256,0.16235233101269125,0.16165222107941946,0.44172198000645035,0.9507784462589681,0.01457282039896661,0.9782458207103899,0.16630377296957227,0.9511435956478109,0.010000191358858813,0.9700430590391982,0.09730550692167428 -47099,0.414720891040427,0.01694541110362745,0.17679109767183526,0.18176711071222704,0.4416987706606327,1.1622392363874825,0.01457282039896661,1.0607697556770184,0.16630377296957227,1.1916303601636113,0.010000191358858813,1.104841603496699,0.09730550692167428 -47101,0.42248523694805207,0.016887096824623377,0.1789188989161289,0.18115437695991932,0.44169337895110994,1.1587255255792757,0.01457282039896661,1.0746685426572307,0.16630377296957227,1.1928884077180801,0.010000191358858813,1.1255335050943618,0.09730550692167428 -47103,0.427408325610025,0.017943785340491798,0.18456537260081154,0.18800732173797186,0.4416804750757602,1.2301196123737261,0.01457282039896661,1.1068101536591284,0.16630377296957227,1.2651879758522957,0.010000191358858813,1.1598419246022766,0.09730550692167428 -47105,0.4613138852200288,0.020800274238763832,0.2025414628918179,0.20644082793978968,0.44163081435500773,1.4278329779579932,0.01457282039896661,1.2151014741067185,0.16630377296957227,1.499148185519188,0.010000191358858813,1.3252712425863176,0.09730550692167428 -47107,0.42644399319223847,0.017249751154915165,0.18283257412858722,0.18495613625738289,0.44168106565587284,1.1834962384733996,0.01457282039896661,1.09734112919294,0.16630377296957227,1.2029817753278311,0.010000191358858813,1.140650153455608,0.09730550692167428 -47109,0.43229426663187415,0.018000632250904782,0.1854662145167025,0.18930303395127723,0.44167700845580876,1.2355998432883488,0.01457282039896661,1.1133963760388015,0.16630377296957227,1.2743792171197836,0.010000191358858813,1.1772888906620753,0.09730550692167428 -47111,0.4040909558396597,0.014975551735331171,0.1683544343173859,0.17017488422440563,0.4417114821446222,1.0279491678904031,0.01457282039896661,1.0114747471805123,0.16630377296957227,1.031365773408632,0.010000191358858813,1.0247359042429005,0.09730550692167428 -47113,0.39661603164660897,0.014409578373528797,0.1650188889397277,0.16637634734645743,0.44171832062375127,0.9893094354599716,0.01457282039896661,0.9920404668267411,0.16630377296957227,0.9843299855099681,0.010000191358858813,0.9905033114038514,0.09730550692167428 -47115,0.43150199775449016,0.01707037846691617,0.1833753239352679,0.18237407549796364,0.4416766094060287,1.1712575325996673,0.01457282039896661,1.1010950437825704,0.16630377296957227,1.2026514281921075,0.010000191358858813,1.148201307690028,0.09730550692167428 -47117,0.408600540539502,0.01496168871085673,0.17028198217574703,0.16958703904370498,0.4417051363604789,1.0268008480815545,0.01457282039896661,1.0240553042702036,0.16630377296957227,1.0300579582944895,0.010000191358858813,1.035067219916244,0.09730550692167428 -47119,0.4064180367757457,0.014605104662741068,0.16836063406870877,0.16643604564137252,0.441710375297666,1.0019563272701233,0.01457282039896661,1.0121152879481201,0.16630377296957227,1.0089168929959946,0.010000191358858813,1.0207454146373407,0.09730550692167428 -47121,0.4335481807201048,0.01666649250585414,0.183078117404131,0.18137439304036673,0.4416717828856359,1.142602750932932,0.01457282039896661,1.09842224896357,0.16630377296957227,1.1628503658936564,0.010000191358858813,1.1410162268534259,0.09730550692167428 -47123,0.4274841022015022,0.01692971361227754,0.18085273815251013,0.1812583675887632,0.44168669059473575,1.1614907669035577,0.01457282039896661,1.0850104135150014,0.16630377296957227,1.1978597567693532,0.010000191358858813,1.1356252489533762,0.09730550692167428 -47125,0.35538454121436747,0.010129630804308511,0.13761402701561387,0.13611729413966406,0.44177915234586657,0.6947651349022524,0.01457282039896661,0.8288681077181788,0.16630377296957227,0.6763693902790369,0.010000191358858813,0.7703431399359115,0.09730550692167428 -47127,0.4387755085841504,0.018994730002250902,0.19071464126388074,0.19701128166862047,0.4416601151628291,1.3029402251865552,0.01457282039896661,1.144804688479529,0.16630377296957227,1.3411290924616628,0.010000191358858813,1.2219753584372552,0.09730550692167428 -47129,0.41979057402554565,0.015156365633749377,0.17419882288447466,0.16938906921038535,0.4416938817704271,1.0392412106126345,0.01457282039896661,1.046637168054438,0.16630377296957227,1.0572500284903241,0.010000191358858813,1.065627800015789,0.09730550692167428 -47131,0.42779589879404223,0.017534458381567405,0.18435602312055735,0.1876969520787206,0.4416773144734189,1.202580800737437,0.01457282039896661,1.1068015378468505,0.16630377296957227,1.2163945976176955,0.010000191358858813,1.1492358811658097,0.09730550692167428 -47133,0.4318340210934529,0.017631135664071276,0.1841246869931855,0.18508124082281985,0.4416790601977656,1.209702305072093,0.01457282039896661,1.1058143138098644,0.16630377296957227,1.2561300034524896,0.010000191358858813,1.1667403971902133,0.09730550692167428 -47135,0.44265435894440197,0.01846386680769228,0.1903026284511175,0.19158276130229154,0.44166096407964184,1.2667359076216418,0.01457282039896661,1.1419027431321223,0.16630377296957227,1.3132644068063781,0.010000191358858813,1.215130096906313,0.09730550692167428 -47137,0.4351575920897558,0.01930977250162008,0.19208739881153686,0.19737949604570182,0.44166265764866,1.3249986684585302,0.01457282039896661,1.1520391898339795,0.16630377296957227,1.360529087420586,0.010000191358858813,1.2159763368510346,0.09730550692167428 -47139,0.4389478160963346,0.0180389499563371,0.1879299293466278,0.18911906292201067,0.4416622763712326,1.2382866260130392,0.01457282039896661,1.1282359590842037,0.16630377296957227,1.2815316026200048,0.010000191358858813,1.194016397916951,0.09730550692167428 -47141,0.40112077422111764,0.015279853785617373,0.16780457610161462,0.17073469568090405,0.4417119176838076,1.0487121475635852,0.01457282039896661,1.0083984589158315,0.16630377296957227,1.06647286304064,0.010000191358858813,1.0219775448232835,0.09730550692167428 -47143,0.41947055217448415,0.016664046052346324,0.1777927804495234,0.18045710817470878,0.4416918171385219,1.14318170334889,0.01457282039896661,1.0683544492629888,0.16630377296957227,1.169141540034187,0.010000191358858813,1.1095605787652794,0.09730550692167428 -47145,0.4481312267335358,0.018951431197825844,0.19525349185991753,0.19677175729340407,0.44164614039948624,1.3006933855948646,0.01457282039896661,1.1719212192113122,0.16630377296957227,1.3288989865779834,0.010000191358858813,1.2409583501097305,0.09730550692167428 -47147,0.3957788632647633,0.013372080790028211,0.16065222711437432,0.1579466474204121,0.441726663716467,0.9177170839165012,0.01457282039896661,0.9681053976305196,0.16630377296957227,0.9198966649240383,0.010000191358858813,0.9629200054062286,0.09730550692167428 -47149,0.36487533588675153,0.01037066010613686,0.14144881244369895,0.13772545499771993,0.4417663092836279,0.7113338903597337,0.01457282039896661,0.8534878973432489,0.16630377296957227,0.6947291741453795,0.010000191358858813,0.8001592121659435,0.09730550692167428 -47151,0.4058259602078629,0.015271513224069933,0.16908496830825778,0.17066547235550644,0.4417123572975153,1.0481533482171075,0.01457282039896661,1.0145364645934372,0.16630377296957227,1.0649635590583617,0.010000191358858813,1.0346817267962838,0.09730550692167428 -47153,0.4223333299696088,0.015649337885331856,0.174310841074708,0.17264372628242125,0.4416979787786389,1.0733759513075622,0.01457282039896661,1.0446892850980094,0.16630377296957227,1.1088192248593072,0.010000191358858813,1.089327438926103,0.09730550692167428 -47155,0.42697960065740825,0.016241679868963847,0.17933310115803758,0.17697184368296848,0.4416849006397322,1.114306825917691,0.01457282039896661,1.0779150020137762,0.16630377296957227,1.1403627360348856,0.010000191358858813,1.1142313920995148,0.09730550692167428 -47157,0.3802479404165372,0.012384439134588416,0.15298777534026725,0.1521922939998649,0.44174394730682837,0.8495326717302591,0.01457282039896661,0.9214563198722254,0.16630377296957227,0.8371039923541845,0.010000191358858813,0.8956713942406287,0.09730550692167428 -47159,0.4111384356739827,0.01515364606008909,0.17158313659312333,0.17072246640078956,0.4417028704668926,1.039900596411568,0.01457282039896661,1.0315336625414235,0.16630377296957227,1.0460565865068214,0.010000191358858813,1.0454511566932694,0.09730550692167428 -47161,0.4320354246602772,0.01751421036480176,0.18493478491516974,0.18645492293194466,0.44167289571036655,1.2016343772417213,0.01457282039896661,1.112124081196518,0.16630377296957227,1.2278826560951752,0.010000191358858813,1.165319731374077,0.09730550692167428 -47163,0.44305021707810777,0.01901821233240724,0.19378897695747685,0.19631534702255118,0.4416506935888861,1.3054924924995788,0.01457282039896661,1.1627133168995019,0.16630377296957227,1.338319781840854,0.010000191358858813,1.2267948201335797,0.09730550692167428 -47165,0.4039358620234604,0.014238638502280507,0.1660902489937321,0.16388302452099393,0.4417145136865349,0.9770656048897748,0.01457282039896661,1.0005971084048024,0.16630377296957227,0.9827856981482975,0.010000191358858813,1.0061309763082247,0.09730550692167428 -47167,0.3891840281034649,0.012998269093649404,0.15716444362315066,0.15574891450186273,0.4417327725376181,0.8917979952207313,0.01457282039896661,0.9491685806008099,0.16630377296957227,0.8887719138439463,0.010000191358858813,0.9379545781585816,0.09730550692167428 -47169,0.40903891323564734,0.014930591456991058,0.1683647190970774,0.1674042241318943,0.4417089260450472,1.0237439531545798,0.01457282039896661,1.0112660337006638,0.16630377296957227,1.0517553002575253,0.010000191358858813,1.0431107993691948,0.09730550692167428 -47171,0.45383327476398483,0.019998974099830244,0.19899577607159602,0.2010359098321224,0.44163601672466823,1.37344553448262,0.01457282039896661,1.1933573820907908,0.16630377296957227,1.4353352664686616,0.010000191358858813,1.2829495088134941,0.09730550692167428 -47173,0.4152540998409631,0.015264239807943801,0.1727980329342454,0.1716629940561317,0.4417017219161393,1.047057784919412,0.01457282039896661,1.0380801078218922,0.16630377296957227,1.056128253670956,0.010000191358858813,1.0593094212710374,0.09730550692167428 -47175,0.4384159888769371,0.017148929286017515,0.18566125375993625,0.18348588821217748,0.44166892000303726,1.176427625934003,0.01457282039896661,1.1156604586049679,0.16630377296957227,1.2063954382833537,0.010000191358858813,1.169722929666719,0.09730550692167428 -47177,0.41604862772329687,0.016245213303394734,0.1753357601066879,0.17671796076564567,0.4417008933187008,1.114755217619646,0.01457282039896661,1.0524645250806466,0.16630377296957227,1.1414682681312698,0.010000191358858813,1.0861057446451634,0.09730550692167428 -47179,0.4186418044454041,0.016135334277795517,0.17756541837263873,0.1772732528053007,0.44168828829715356,1.1069678568317163,0.01457282039896661,1.0666790314448023,0.16630377296957227,1.1179181223743537,0.010000191358858813,1.0866162385519695,0.09730550692167428 -47181,0.4307377009058999,0.016586694248320516,0.18197799371398407,0.17915731353900452,0.4416729447685068,1.1383346690405416,0.01457282039896661,1.093882092485303,0.16630377296957227,1.165781003463071,0.010000191358858813,1.1285022757381316,0.09730550692167428 -47183,0.4079911383309487,0.016599639312361282,0.17480502349511268,0.18030209196860586,0.44169773924175015,1.1391728446724123,0.01457282039896661,1.0510694516699628,0.16630377296957227,1.1540378598914205,0.010000191358858813,1.0750151848321734,0.09730550692167428 -47185,0.4318811901552142,0.01814663300060706,0.186453925345126,0.18995335918807957,0.4416745434103446,1.245267721907985,0.01457282039896661,1.1185117421053057,0.16630377296957227,1.2812675976220818,0.010000191358858813,1.1785076140324393,0.09730550692167428 -47187,0.3896280929764623,0.012152714757139652,0.15527396177435665,0.15032701945235433,0.4417372159362366,0.8336147094735868,0.01457282039896661,0.9373087262517774,0.16630377296957227,0.8204576789330638,0.010000191358858813,0.9195868524215528,0.09730550692167428 -47189,0.40538733235733104,0.013823060532339532,0.1653006997022713,0.16100903495065638,0.44171564326896484,0.9485000293856769,0.01457282039896661,0.9964942271531461,0.16630377296957227,0.9526131342587374,0.010000191358858813,0.9991686233441414,0.09730550692167428 -48001,0.41115648287212253,0.014129393882656379,0.170131278335951,0.16413280424088827,0.4416976067285068,0.9690843551519777,0.01457282039896661,1.0256449937663952,0.16630377296957227,0.9604860481461879,0.010000191358858813,1.010314576974877,0.09730550692167428 -48003,0.38232671607564284,0.013562606050981904,0.1550233270872844,0.1579975459969286,0.4417457439299237,0.9311171709609616,0.01457282039896661,0.9362038276102091,0.16630377296957227,0.9477960397143512,0.010000191358858813,0.9405932283275209,0.09730550692167428 -48005,0.39458142496667936,0.014844861977248842,0.16455539410611042,0.16854973785525565,0.4417243670657361,1.0194624674891353,0.01457282039896661,0.9885596798093875,0.16630377296957227,1.025202487450628,0.010000191358858813,0.997825594884081,0.09730550692167428 -48007,0.4693570301969791,0.02289803143421385,0.21137338041120524,0.22102593834005285,0.44161482347406145,1.572496429200875,0.01457282039896661,1.2686904192399941,0.16630377296957227,1.6491424023068173,0.010000191358858813,1.400333956857311,0.09730550692167428 -48009,0.42105047612936486,0.017101795315893932,0.18055138751653194,0.18372093724954208,0.4416860150548108,1.172923125697234,0.01457282039896661,1.0845235586288242,0.16630377296957227,1.1916495622649381,0.010000191358858813,1.1277793750975509,0.09730550692167428 -48011,0.4420492160918427,0.021015574278429483,0.1990027974229009,0.21117761534748208,0.4416542835873357,1.4419914816118444,0.01457282039896661,1.1944697882004958,0.16630377296957227,1.4717175133834144,0.010000191358858813,1.2746892914954007,0.09730550692167428 -48013,0.3885809474622699,0.014085967683142575,0.16019640284130615,0.1634319692384974,0.4417328220815262,0.9665897773997032,0.01457282039896661,0.96458909297899,0.16630377296957227,0.967544153072152,0.010000191358858813,0.96694407140344,0.09730550692167428 -48015,0.42064591141023755,0.017302270874405112,0.18016662781560322,0.18392461121095932,0.4416906418252553,1.1861752908052727,0.01457282039896661,1.0807382420416436,0.16630377296957227,1.217626005272866,0.010000191358858813,1.1307191981807283,0.09730550692167428 -48017,0.37481404968959753,0.01373209635369086,0.1529651548899472,0.16139482447419884,0.4417539005801961,0.9429618073871433,0.01457282039896661,0.9218849818570141,0.16630377296957227,0.9478542501593167,0.010000191358858813,0.9343576204753035,0.09730550692167428 -48019,0.46842015966244355,0.020890138746885722,0.20701601612897416,0.2079694542602028,0.4416144893620807,1.4340498847162761,0.01457282039896661,1.2437834783648531,0.16630377296957227,1.4885379827612304,0.010000191358858813,1.3473450797441333,0.09730550692167428 -48021,0.39856572440524185,0.01381071018774119,0.16358027002639514,0.16184380753251748,0.44172172201651194,0.9480442724041578,0.01457282039896661,0.9847696631380979,0.16630377296957227,0.9430104154213589,0.010000191358858813,0.9813119140035993,0.09730550692167428 -48023,0.45783174856757425,0.02349212399291522,0.21201608648758188,0.23110370988587797,0.4416059841818303,1.6126502925285662,0.01457282039896661,1.275772922134908,0.16630377296957227,1.6358482555007072,0.010000191358858813,1.3867800437086313,0.09730550692167428 -48025,0.3899177931556809,0.012295331228473825,0.15657697605068643,0.15058464521817488,0.44172891997692976,0.843327350584799,0.01457282039896661,0.9452282637390648,0.16630377296957227,0.8339578381564557,0.010000191358858813,0.9072155370266339,0.09730550692167428 -48027,0.35419935530628927,0.010583101578037856,0.13820702254798103,0.1392284076140742,0.44178115129806195,0.7260377340858738,0.01457282039896661,0.8319493429996662,0.16630377296957227,0.711541215546667,0.010000191358858813,0.7800963326924557,0.09730550692167428 -48029,0.37305133403484025,0.012138429868313524,0.1494235904110959,0.15030891019799625,0.44175399312429436,0.8325516386073362,0.01457282039896661,0.8997493514437828,0.16630377296957227,0.8219594690822434,0.010000191358858813,0.8690879083892704,0.09730550692167428 -48031,0.4509860655965091,0.01919427636267393,0.19702052706564882,0.19957638881991305,0.44164454788482277,1.3169948856960483,0.01457282039896661,1.1823855197119948,0.16630377296957227,1.338968159251042,0.010000191358858813,1.254165876206819,0.09730550692167428 -48033,0.4507439070037058,0.022563827210047013,0.2047966550634803,0.21339231588580243,0.4416158648640289,1.5471617589502045,0.01457282039896661,1.2290804195224534,0.16630377296957227,1.6474366354372605,0.010000191358858813,1.3357976346359064,0.09730550692167428 -48035,0.4442812721494289,0.020459613679443087,0.19956324169414041,0.20949452946273445,0.4416417545454978,1.4043794976926023,0.01457282039896661,1.198342232264002,0.16630377296957227,1.4138902011615477,0.010000191358858813,1.268571516342588,0.09730550692167428 -48037,0.4057793351046485,0.01556454010106098,0.17137636824263425,0.17372825564103828,0.4417065055691578,1.0677873377709255,0.01457282039896661,1.0287617475189523,0.16630377296957227,1.0716605277892408,0.010000191358858813,1.0403614914069372,0.09730550692167428 -48039,0.3795258685471861,0.01168755055058298,0.1501728047554853,0.14682725344335462,0.44174927158124644,0.8017264261029712,0.01457282039896661,0.906032328583263,0.16630377296957227,0.7902728535428034,0.010000191358858813,0.8759204504952156,0.09730550692167428 -48041,0.32768134788311576,0.008812446706476223,0.1233670956250561,0.12674717251645892,0.44180428641685354,0.6039399782394201,0.01457282039896661,0.7459457211877525,0.16630377296957227,0.5849358646426139,0.010000191358858813,0.6606949700341161,0.09730550692167428 -48043,0.4297224679021369,0.017131779344854513,0.18414475619208182,0.18449655609679766,0.4416744178388371,1.1751009791586653,0.01457282039896661,1.105674677565018,0.16630377296957227,1.1892072122941069,0.010000191358858813,1.1425480773411647,0.09730550692167428 -48045,0.45673218249823094,0.022869848287093656,0.20672583922798998,0.21743513562976718,0.44163186535591215,1.5676043236801331,0.01457282039896661,1.2381595616901393,0.16630377296957227,1.66197433742546,0.010000191358858813,1.3664882156144316,0.09730550692167428 -48047,0.40132658421265144,0.017231934167539625,0.1714962954909397,0.1838467185895936,0.44171799257415434,1.1822587903197812,0.01457282039896661,1.02986874795487,0.16630377296957227,1.214570960027035,0.010000191358858813,1.0832119044193242,0.09730550692167428 -48049,0.41608829634512184,0.017863549163323424,0.1806884803502638,0.1884193337860113,0.44169121752778423,1.2249390942874345,0.01457282039896661,1.08386108079999,0.16630377296957227,1.2485052387485167,0.010000191358858813,1.130399172327949,0.09730550692167428 -48051,0.4304582046122516,0.018218880964571617,0.18584707051253047,0.18885432787359963,0.4416805327732506,1.2491903265407536,0.01457282039896661,1.1138365088683773,0.16630377296957227,1.2953122365521001,0.010000191358858813,1.1783916549222866,0.09730550692167428 -48053,0.4373806323823068,0.01918884472169144,0.1915811487985381,0.19779108169437942,0.44166378957233976,1.3164378274664335,0.01457282039896661,1.1495284628421136,0.16630377296957227,1.3521664979050723,0.010000191358858813,1.2215854449726207,0.09730550692167428 -48055,0.38324159797427304,0.013525673372652414,0.15747811563623282,0.15993600965651406,0.44173535810167636,0.9284513987400546,0.01457282039896661,0.9472112301584068,0.16630377296957227,0.9218464551425641,0.010000191358858813,0.9335988382723728,0.09730550692167428 -48057,0.41034845473068504,0.016243944211562705,0.17271228208479739,0.17632029006017913,0.4417093444825353,1.1150642555423476,0.01457282039896661,1.0382625719500345,0.16630377296957227,1.1469094659740307,0.010000191358858813,1.0773380350119295,0.09730550692167428 -48059,0.4361308857385898,0.01846619252450416,0.1867483106674918,0.1886985693818412,0.4416773200823101,1.2671777376917222,0.01457282039896661,1.120268412368215,0.16630377296957227,1.3378578408036454,0.010000191358858813,1.2024072516794801,0.09730550692167428 -48061,0.3578498983921836,0.012403490822092023,0.14302676901301214,0.15118662877335184,0.44177740828149836,0.8509315735138534,0.01457282039896661,0.8628459401920152,0.16630377296957227,0.8511425144399565,0.010000191358858813,0.8468324747180627,0.09730550692167428 -48063,0.4110484101266265,0.016670726741847393,0.1746122462979504,0.18097522888566642,0.4417044637624339,1.1433960390162778,0.01457282039896661,1.0482553351597637,0.16630377296957227,1.1628865402250392,0.010000191358858813,1.0900715527320188,0.09730550692167428 -48065,0.42521167837538454,0.018812418456776087,0.18842192361305943,0.19860343151102902,0.4416664985439577,1.291020478197506,0.01457282039896661,1.1312073919932155,0.16630377296957227,1.2895113136239116,0.010000191358858813,1.1793373077445581,0.09730550692167428 -48067,0.43766179108343306,0.01915468462111363,0.19188580539090505,0.19771805827337222,0.44166077311512186,1.3135927055554113,0.01457282039896661,1.1515484579879038,0.16630377296957227,1.3446406096950982,0.010000191358858813,1.2208094421260727,0.09730550692167428 -48069,0.3834621099908898,0.014509848319104474,0.1593711884831463,0.16595429338492312,0.44174423404533936,0.9960403344665183,0.01457282039896661,0.9588598131224636,0.16630377296957227,0.99686731152581,0.010000191358858813,0.9653619368201418,0.09730550692167428 -48071,0.38220578007749806,0.011703938638822863,0.15099923973591778,0.14710767428239324,0.4417470898960537,0.8029162984517808,0.01457282039896661,0.9097534716349118,0.16630377296957227,0.7921372151019476,0.010000191358858813,0.8880004404024169,0.09730550692167428 -48073,0.4064086691630233,0.016159234027486362,0.17234662259972028,0.1776248960169472,0.44170761389731644,1.1086084922718227,0.01457282039896661,1.034621543216783,0.16630377296957227,1.1215747930544004,0.010000191358858813,1.0632097156873501,0.09730550692167428 -48075,0.39016709043525544,0.013933540964412088,0.1606248502830197,0.16011105240062812,0.4417251899183988,0.9559525708234514,0.01457282039896661,0.9655716978333457,0.16630377296957227,0.9738488210214264,0.010000191358858813,0.9542836055027692,0.09730550692167428 -48077,0.44050948548204405,0.01818216217594191,0.18921979275724354,0.18976786047850824,0.4416630504577171,1.24682725899563,0.01457282039896661,1.136602368445692,0.16630377296957227,1.2874722126936078,0.010000191358858813,1.2057746326478673,0.09730550692167428 -48079,0.3852008471450852,0.014899873337656775,0.16066405904842654,0.16863907669192588,0.4417330576996177,1.0227672141935087,0.01457282039896661,0.9661908041648235,0.16630377296957227,1.0320749722395974,0.010000191358858813,0.9792842893367513,0.09730550692167428 -48081,0.4581459735861899,0.02289386042308419,0.20848113017454034,0.22284579527634696,0.44161906535669265,1.5710675131247882,0.01457282039896661,1.2525743636899487,0.16630377296957227,1.6301152794717324,0.010000191358858813,1.3730582597959147,0.09730550692167428 -48083,0.4487508054910634,0.021806115742529664,0.2035837132856195,0.21696844137611673,0.44163753489117963,1.496438204837963,0.01457282039896661,1.221149010987118,0.16630377296957227,1.5305026625582383,0.010000191358858813,1.3128900671622725,0.09730550692167428 -48085,0.3687670947291255,0.009791494531458576,0.141335302188791,0.1340331341326304,0.4417663803245928,0.6718598834645907,0.01457282039896661,0.8539669305012738,0.16630377296957227,0.6469049596437918,0.010000191358858813,0.7973829380978363,0.09730550692167428 -48087,0.41147524158088433,0.019681051696830234,0.18283285756343304,0.2008517970640149,0.44170233948361215,1.3507042090625425,0.01457282039896661,1.0954357391351288,0.16630377296957227,1.3830115718887526,0.010000191358858813,1.165812913351875,0.09730550692167428 -48089,0.43357152868136406,0.019433034411073403,0.19210063388469756,0.19976780380411246,0.4416626948128518,1.3334970673219577,0.01457282039896661,1.152844033746213,0.16630377296957227,1.3598818629089986,0.010000191358858813,1.216294096471221,0.09730550692167428 -48091,0.4267931323897094,0.01672583620165157,0.18119031585810952,0.18081560728431878,0.44168116574840355,1.1469747818943254,0.01457282039896661,1.0897467271090564,0.16630377296957227,1.1680761700586375,0.010000191358858813,1.1316546510854275,0.09730550692167428 -48093,0.4378185441865706,0.02042547019994033,0.19505268744645982,0.20726448160326932,0.44165881821478337,1.4017115462492575,0.01457282039896661,1.1710732095124219,0.16630377296957227,1.4346188871471863,0.010000191358858813,1.2537443089857314,0.09730550692167428 -48095,0.4445157474797261,0.014885220337316884,0.1838642592692709,0.16646279934170716,0.4416495669793014,1.0211301757121851,0.01457282039896661,1.1047139791481602,0.16630377296957227,1.0316986497647047,0.010000191358858813,1.1050672937346113,0.09730550692167428 -48097,0.4133627280532713,0.017254086307733722,0.17709814190939638,0.18363246237332384,0.4416991071945101,1.1827655217871533,0.01457282039896661,1.0631914032404146,0.16630377296957227,1.2144255947517952,0.010000191358858813,1.1104301502015286,0.09730550692167428 -48099,0.34612150380245743,0.00921048171470128,0.13148653213165398,0.12909260396733332,0.44179338574602484,0.6322931983404096,0.01457282039896661,0.7912273053677992,0.16630377296957227,0.6158653600873816,0.010000191358858813,0.7210759773317024,0.09730550692167428 -48101,0.4574593814662512,0.024756776045463093,0.21229529650530787,0.23245858404481276,0.4416189432883596,1.6969586002769095,0.01457282039896661,1.272109891605254,0.16630377296957227,1.7858049370243174,0.010000191358858813,1.416142536158863,0.09730550692167428 -48103,0.39475524427930186,0.0157738986128078,0.167924301236277,0.17528194448698314,0.4417152379365571,1.0829140831737343,0.01457282039896661,1.0100469057085635,0.16630377296957227,1.084657905103775,0.010000191358858813,1.0258151671378295,0.09730550692167428 -48105,0.3782210330405408,0.015180256116669759,0.1586706701062387,0.1696667372623168,0.4417500422143354,1.0421767491676963,0.01457282039896661,0.953051516262093,0.16630377296957227,1.0489235112758966,0.010000191358858813,0.9587620729213739,0.09730550692167428 -48107,0.4020869519762386,0.017323755320883635,0.17433518555371288,0.1863738803446079,0.44170951838714617,1.1891260072918608,0.01457282039896661,1.0460076180074278,0.16630377296957227,1.1964845631768437,0.010000191358858813,1.084636338849895,0.09730550692167428 -48109,0.371779562403239,0.012667694370143992,0.14765269191292557,0.15049660602730877,0.44176095337634996,0.8694359168530403,0.01457282039896661,0.8896188475083717,0.16630377296957227,0.9009669041702795,0.010000191358858813,0.9037075824020435,0.09730550692167428 -48111,0.36403015394137866,0.011132964104441215,0.14373373289955244,0.1442131641797645,0.4417709279851353,0.7631012398553844,0.01457282039896661,0.8657481924326735,0.16630377296957227,0.7347910816102969,0.010000191358858813,0.827687916912766,0.09730550692167428 -48113,0.3657210694159837,0.010817702827002649,0.14336469308299254,0.14130593875643427,0.4417658436265809,0.7416178800669243,0.01457282039896661,0.863792547010277,0.16630377296957227,0.7216893536830858,0.010000191358858813,0.8140814255149122,0.09730550692167428 -48115,0.3908636416037111,0.015558342286073994,0.16669325089843523,0.17260116239127352,0.4417189450728206,1.0681639056080123,0.01457282039896661,0.9995956209791677,0.16630377296957227,1.0738818890052206,0.010000191358858813,0.9963932121332995,0.09730550692167428 -48117,0.3647101396547697,0.013097119014474398,0.14720347003528478,0.15536435976257051,0.44176922101218163,0.89866203896568,0.01457282039896661,0.8882520049746083,0.16630377296957227,0.9066138482275382,0.010000191358858813,0.882294968683814,0.09730550692167428 -48119,0.43776585956797964,0.01997750853126628,0.192836070292489,0.19957181886605715,0.4416615813918221,1.3707538254791078,0.01457282039896661,1.155305489143529,0.16630377296957227,1.437408947073425,0.010000191358858813,1.244552939792409,0.09730550692167428 -48121,0.3593392972329984,0.009115577701332752,0.13624836918969185,0.12943276077936514,0.44177709149508537,0.6256466624018839,0.01457282039896661,0.8228283479813331,0.16630377296957227,0.5980271666184769,0.010000191358858813,0.7545165945940656,0.09730550692167428 -48123,0.4361398148074712,0.018957312441324023,0.19246851632471648,0.1980795907135432,0.44165510651912543,1.3005476690813256,0.01457282039896661,1.155202632897248,0.16630377296957227,1.312823651692323,0.010000191358858813,1.2080150698894356,0.09730550692167428 -48125,0.44183299174151847,0.01938973049420878,0.19418796093069374,0.19741617800736733,0.4416497147752603,1.3316376603386861,0.01457282039896661,1.1636450749905083,0.16630377296957227,1.378341988972759,0.010000191358858813,1.2322877643315193,0.09730550692167428 -48127,0.3864253128714996,0.014854197972245353,0.16274859891108578,0.17106892095320972,0.4417309246555898,1.0198906453205954,0.01457282039896661,0.9771353808795122,0.16630377296957227,0.9988304570482041,0.010000191358858813,0.9833533029589865,0.09730550692167428 -48129,0.4228102409965233,0.020294870583791095,0.18760485008612132,0.20467539225624642,0.44167254763178065,1.3927230054027016,0.01457282039896661,1.1284513546567208,0.16630377296957227,1.4476198904324797,0.010000191358858813,1.222531497623901,0.09730550692167428 -48131,0.3980121265073893,0.015497742340949604,0.16740828706656335,0.1735899605596734,0.4417144988568703,1.0634455841519954,0.01457282039896661,1.0069041025511645,0.16630377296957227,1.071930861986186,0.010000191358858813,1.0268023373983945,0.09730550692167428 -48133,0.4273255169779886,0.019636734860742668,0.18861756520449363,0.20030659260284622,0.44167316673408663,1.3475458470704946,0.01457282039896661,1.1330450270543975,0.16630377296957227,1.3891552237467035,0.010000191358858813,1.2095838230570801,0.09730550692167428 -48135,0.36777177547068096,0.012150677490126646,0.1470688590031058,0.14995592928748436,0.44176330659643537,0.8338294212750005,0.01457282039896661,0.8859441434563985,0.16630377296957227,0.8279964067342316,0.010000191358858813,0.8606892886260789,0.09730550692167428 -48137,0.4304076473508899,0.018848615400419263,0.18995770871393158,0.20073629310188873,0.44166488933606685,1.2922794417337047,0.01457282039896661,1.1418228740646374,0.16630377296957227,1.2820069213270124,0.010000191358858813,1.1959446232156805,0.09730550692167428 -48139,0.376983811429556,0.011948761425485666,0.1497261125371308,0.14859232954710141,0.4417527038225793,0.8198730817534768,0.01457282039896661,0.9029043569076489,0.16630377296957227,0.8108914201860447,0.010000191358858813,0.8809895974358684,0.09730550692167428 -48141,0.36275594498435904,0.011940907551802205,0.1445278078369801,0.1485356428699836,0.4417682115753231,0.8191424164978267,0.01457282039896661,0.8707187365548563,0.16630377296957227,0.8122396435817615,0.010000191358858813,0.8425301609972968,0.09730550692167428 -48143,0.3791727786578931,0.013979015711953376,0.1566912048869,0.16148101914711038,0.4417374116323863,0.9595051141248194,0.01457282039896661,0.9442615745191587,0.16630377296957227,0.9694972588663959,0.010000191358858813,0.9348740844045534,0.09730550692167428 -48145,0.41283968765314427,0.017312832705723508,0.1780800407676381,0.18481198388500175,0.4416917057310403,1.1877375184186025,0.01457282039896661,1.068916783202434,0.16630377296957227,1.2111788578995268,0.010000191358858813,1.108491247800326,0.09730550692167428 -48147,0.42547652186507456,0.01752850986139942,0.18368039788010077,0.18684261819796172,0.44167821613076236,1.2022855731574686,0.01457282039896661,1.1026123854880452,0.16630377296957227,1.2200918690555886,0.010000191358858813,1.1430362583170828,0.09730550692167428 -48149,0.4560964127435415,0.02213916713140817,0.20749683751684295,0.21898764525261033,0.4416242829816105,1.5188432491418096,0.01457282039896661,1.2458941985925345,0.16630377296957227,1.554631705852012,0.010000191358858813,1.3414402045906106,0.09730550692167428 -48151,0.4517361956244479,0.02185290963602162,0.20440122090058832,0.2145641599320664,0.4416318722459994,1.4989074856603763,0.01457282039896661,1.225010267358905,0.16630377296957227,1.5514456475645795,0.010000191358858813,1.3251372685647684,0.09730550692167428 -48153,0.4054262609162711,0.018033133922275367,0.1768770284804145,0.19042857730422608,0.44170603345207354,1.2375103571008785,0.01457282039896661,1.0602154854191204,0.16630377296957227,1.2553334561331448,0.010000191358858813,1.1091166292793324,0.09730550692167428 -48155,0.43431561753335857,0.021971629132351324,0.20004756091806536,0.21650851472267044,0.44164670988038346,1.5064854457202694,0.01457282039896661,1.2002217890411986,0.16630377296957227,1.5417025676037417,0.010000191358858813,1.2721085136777253,0.09730550692167428 -48157,0.36888737364082436,0.010025951075027706,0.1420943712224486,0.13614948019745088,0.44176543209240027,0.6878167428315749,0.01457282039896661,0.8574051192628596,0.16630377296957227,0.6613817762843821,0.010000191358858813,0.8106164584652383,0.09730550692167428 -48159,0.42417670545006386,0.01819740213282002,0.1834068432266583,0.19226346155535595,0.4416851957957827,1.248375468983915,0.01457282039896661,1.1019974518387317,0.16630377296957227,1.2740173378587172,0.010000191358858813,1.1654978132341443,0.09730550692167428 -48161,0.4241694435715382,0.016886014512601813,0.18135791695832357,0.18233867006662452,0.44168460894496353,1.1580963155350723,0.01457282039896661,1.0893821645868025,0.16630377296957227,1.1731305178502753,0.010000191358858813,1.1258845216273938,0.09730550692167428 -48163,0.376735755073632,0.012826765194843714,0.1520476527065242,0.1534658238129625,0.44174637266652017,0.8804844145254793,0.01457282039896661,0.9147954765198842,0.16630377296957227,0.8884365510370598,0.010000191358858813,0.8988150281618843,0.09730550692167428 -48165,0.3469564487600272,0.010887963609201658,0.13577872754444953,0.14108725086961504,0.44179163182875686,0.746255659795023,0.01457282039896661,0.819355463616892,0.16630377296957227,0.7301249559595412,0.010000191358858813,0.7792516725971698,0.09730550692167428 -48167,0.39576716377922927,0.013404197344445097,0.161340831579136,0.15910572078428953,0.4417244967828682,0.9201197749924963,0.01457282039896661,0.9720178338138782,0.16630377296957227,0.9144175739177582,0.010000191358858813,0.9632346982133022,0.09730550692167428 -48169,0.3990283309472962,0.01332664486645558,0.1619245351704347,0.1568353451952856,0.44171952336089676,0.9146118262045388,0.01457282039896661,0.9729511635884524,0.16630377296957227,0.9230165910216415,0.010000191358858813,0.9555968024285955,0.09730550692167428 -48171,0.48000142954461833,0.02508221003772596,0.22280781899184282,0.23653035171503106,0.4415852665220124,1.7205558199824105,0.01457282039896661,1.3365096969128267,0.16630377296957227,1.7907899514335832,0.010000191358858813,1.4792756688221624,0.09730550692167428 -48173,0.38792799256467647,0.014428311289700894,0.15946352786913748,0.16347410109152055,0.4417215801623876,0.9897641120450318,0.01457282039896661,0.9664845401643016,0.16630377296957227,1.012731844703716,0.010000191358858813,0.9857391358478094,0.09730550692167428 -48175,0.4476229859809039,0.019838224883798904,0.19799604472256047,0.20305063641713283,0.44164291822686164,1.360942510592961,0.01457282039896661,1.1882036611886648,0.16630377296957227,1.3879019054597528,0.010000191358858813,1.268555398871258,0.09730550692167428 -48177,0.4009673905649991,0.01659495990323342,0.17191075600489722,0.1803679954538429,0.4417147050178296,1.1391316886311231,0.01457282039896661,1.0310995921126036,0.16630377296957227,1.1491711012504662,0.010000191358858813,1.058602730166084,0.09730550692167428 -48179,0.4155662186685692,0.016792405244213802,0.17775332557675044,0.18160167330908603,0.4416956630088099,1.1515819372951461,0.01457282039896661,1.0667138988786316,0.16630377296957227,1.167288520582224,0.010000191358858813,1.0981470751161875,0.09730550692167428 -48181,0.41332948938732245,0.01671582713319698,0.1771220091866001,0.18141589303671032,0.4416951793956082,1.1461886522185267,0.01457282039896661,1.0634872400116309,0.16630377296957227,1.157691056889457,0.010000191358858813,1.092242325589528,0.09730550692167428 -48183,0.39388067144410865,0.015046473282010666,0.16559809434411038,0.16973830954085156,0.44172177809381075,1.032775921340101,0.01457282039896661,0.9942589769558519,0.16630377296957227,1.0365422940267326,0.010000191358858813,0.9988358816366116,0.09730550692167428 -48185,0.4142652192891592,0.015254987530943521,0.1731280255678127,0.17068820306939275,0.441699956188801,1.0460380457372214,0.01457282039896661,1.0398141590427246,0.16630377296957227,1.0558140112033092,0.010000191358858813,1.0529833921797624,0.09730550692167428 -48187,0.39004670421965987,0.013339188717526134,0.15832315717297787,0.15809087825459534,0.44173290674830135,0.915897321099957,0.01457282039896661,0.95438372556162,0.16630377296957227,0.916123102926312,0.010000191358858813,0.9493443176871674,0.09730550692167428 -48189,0.37396885311219996,0.013544275700971574,0.15365425991496096,0.15990008972224173,0.4417499202861648,0.9295583637627268,0.01457282039896661,0.9254353474595562,0.16630377296957227,0.9255845257868038,0.010000191358858813,0.9116820217409214,0.09730550692167428 -48191,0.43520853963298234,0.02146603428828154,0.1970483719647279,0.21226693245984785,0.4416586387371553,1.4719898782824075,0.01457282039896661,1.1812818432068668,0.16630377296957227,1.5206740745519958,0.010000191358858813,1.2783723467264139,0.09730550692167428 -48193,0.4573956669549484,0.02327967608444389,0.21169725875641804,0.22800297018842167,0.44161429467507723,1.5979325634939552,0.01457282039896661,1.271390835948424,0.16630377296957227,1.6268591948086577,0.010000191358858813,1.3686681665203744,0.09730550692167428 -48195,0.3885741852656016,0.01557410492726987,0.16439596091209518,0.1732738204092531,0.4417257560937,1.0690642371043748,0.01457282039896661,0.987379671647306,0.16630377296957227,1.0782371049998831,0.010000191358858813,1.008906366937351,0.09730550692167428 -48197,0.44742861129843237,0.021802707622665438,0.20303362305207076,0.21607349040670576,0.44164844882480836,1.4960821225645706,0.01457282039896661,1.2173996831421912,0.16630377296957227,1.5313088499298546,0.010000191358858813,1.3122735832878352,0.09730550692167428 -48199,0.40144203248035554,0.014737670243551132,0.16745320402311892,0.16887490710895192,0.4417149614931988,1.0119054280825468,0.01457282039896661,1.006089239181712,0.16630377296957227,1.007652777595455,0.010000191358858813,1.0123160282632524,0.09730550692167428 -48201,0.3632447913988173,0.010353823815771235,0.14103565174722704,0.13806677937398412,0.4417707402501253,0.7099334185924646,0.01457282039896661,0.8496059061569983,0.16630377296957227,0.6893108285047316,0.010000191358858813,0.7975831759299203,0.09730550692167428 -48203,0.40314577734624046,0.014884276205423957,0.16738156812876975,0.16829268967899455,0.4417158075978931,1.0216855164031142,0.01457282039896661,1.0059931266489819,0.16630377296957227,1.0338553959416463,0.010000191358858813,1.0220345922484202,0.09730550692167428 -48205,0.41977297361194943,0.014425089716890903,0.17324019562040227,0.16470167273687425,0.4416896791263838,0.9893635236196704,0.01457282039896661,1.0449434296188422,0.16630377296957227,0.9905613006624661,0.010000191358858813,1.0395695832376286,0.09730550692167428 -48207,0.4551940252590143,0.02314392173876411,0.20933697337009885,0.22236075672366035,0.4416221098615627,1.5864396729646608,0.01457282039896661,1.253559002620996,0.16630377296957227,1.6481637645968241,0.010000191358858813,1.3579461847397734,0.09730550692167428 -48209,0.36054611785536705,0.0105551151457683,0.1406088160482409,0.13912947302053374,0.4417687392431128,0.7242798193991085,0.01457282039896661,0.846677107130397,0.16630377296957227,0.7104455944276855,0.010000191358858813,0.7964157139941781,0.09730550692167428 -48211,0.4196221095893945,0.016351976563264762,0.17715177160121395,0.17771476037981093,0.441693793015288,1.1216199545898586,0.01457282039896661,1.0651477260455238,0.16630377296957227,1.1470000092551227,0.010000191358858813,1.1057000692775114,0.09730550692167428 -48213,0.4367735764260161,0.01917422909584114,0.19069016676260864,0.19746454301464872,0.44166507106707964,1.315118892623949,0.01457282039896661,1.1449237807049117,0.16630377296957227,1.354927511995987,0.010000191358858813,1.218601622835287,0.09730550692167428 -48215,0.34083264518690615,0.010787496786388143,0.132233911688906,0.14009258056132368,0.441801485486367,0.7397525060208244,0.01457282039896661,0.7989258265671739,0.16630377296957227,0.7304771818638205,0.010000191358858813,0.7592900461264134,0.09730550692167428 -48217,0.42338917841245993,0.018247487181684945,0.18396239851818286,0.1912476586526934,0.44168404070475764,1.2512676240982863,0.01457282039896661,1.1044459657304233,0.16630377296957227,1.2795202077422974,0.010000191358858813,1.1598850073949891,0.09730550692167428 -48219,0.38243584338938297,0.013921651085905151,0.1560774799622531,0.16105338737006816,0.44174374656871623,0.9555048949049123,0.01457282039896661,0.9398704228152746,0.16630377296957227,0.9722470487194284,0.010000191358858813,0.9494388367627622,0.09730550692167428 -48221,0.45667032270683516,0.02058520050384745,0.20058708264406533,0.20554271724167616,0.4416385076620004,1.4126912333009833,0.01457282039896661,1.2033938442174743,0.16630377296957227,1.4771720611505037,0.010000191358858813,1.3090728599436834,0.09730550692167428 -48223,0.41163058051030665,0.016591797485538122,0.1757953326290153,0.18060912352022274,0.4416988153623124,1.137771490225659,0.01457282039896661,1.0552772745009529,0.16630377296957227,1.1509308250165433,0.010000191358858813,1.0868758498124342,0.09730550692167428 -48225,0.4291134656684362,0.019553306587719945,0.1909134880872857,0.20128617448627883,0.44166701664860475,1.341398951760366,0.01457282039896661,1.1466957197218832,0.16630377296957227,1.3642719019775846,0.010000191358858813,1.2080365641036679,0.09730550692167428 -48227,0.4094215420368824,0.014783543948351534,0.1705560519585766,0.16768166163742562,0.4417040952711338,1.0141883554179436,0.01457282039896661,1.0255826265838186,0.16630377296957227,1.0173366500622296,0.010000191358858813,1.0269301905545887,0.09730550692167428 -48229,0.3905718631446268,0.01606865477829831,0.16478392939848027,0.1773300369939886,0.44172908497426666,1.1035877109516976,0.01457282039896661,0.989935752856941,0.16630377296957227,1.1208581333343948,0.010000191358858813,1.0352835694574403,0.09730550692167428 -48231,0.4026919948099643,0.015060870418017739,0.16790453356276366,0.16957461690776654,0.4417143776829493,1.0337590537991859,0.01457282039896661,1.0093520437686772,0.16630377296957227,1.0451268794643709,0.010000191358858813,1.023651360874578,0.09730550692167428 -48233,0.4087615889697528,0.01667589128615919,0.17472470672423518,0.18058208266982023,0.44170359325270975,1.1434597458601075,0.01457282039896661,1.0482779954787211,0.16630377296957227,1.1610392239332858,0.010000191358858813,1.0822681610837956,0.09730550692167428 -48235,0.44735242410378734,0.01717269684231932,0.19149039126801737,0.18627118061273884,0.44165042529441945,1.1772857295182169,0.01457282039896661,1.1481055697277194,0.16630377296957227,1.1775787435376128,0.010000191358858813,1.1915318106446495,0.09730550692167428 -48237,0.41599098445635474,0.016041543164255514,0.1750752256621243,0.17470693845984148,0.44169304022086586,1.1004325791177891,0.01457282039896661,1.0536672713936635,0.16630377296957227,1.1286005399430181,0.010000191358858813,1.0823726786291075,0.09730550692167428 -48239,0.4115830186156555,0.017059204565828844,0.17754852604181676,0.18390098590518728,0.44169863027717604,1.1700986932122044,0.01457282039896661,1.0649176531397893,0.16630377296957227,1.1807788668559027,0.010000191358858813,1.098309575437363,0.09730550692167428 -48241,0.42260352679543767,0.01744610130656648,0.18009949514130957,0.1838746362298363,0.44169237154923036,1.1965831622511858,0.01457282039896661,1.0801079823939312,0.16630377296957227,1.242072113052691,0.010000191358858813,1.138826542330622,0.09730550692167428 -48243,0.4626190837560436,0.021915764328541382,0.20558034584588175,0.21433390156392096,0.44162555575169526,1.5043763602630644,0.01457282039896661,1.233868542003073,0.16630377296957227,1.5827413198006788,0.010000191358858813,1.3690226356393187,0.09730550692167428 -48245,0.396780109102299,0.014589837329970011,0.16585736002161255,0.1672533254717165,0.44171694117426447,1.0013019215036083,0.01457282039896661,0.997318245776604,0.16630377296957227,0.9977524853824377,0.010000191358858813,0.9926130492244918,0.09730550692167428 -48247,0.3992529745262452,0.016786904715315385,0.16882515847810164,0.1779246436139409,0.4417182572346907,1.1513796018235727,0.01457282039896661,1.0162460400020676,0.16630377296957227,1.208067975033913,0.010000191358858813,1.0581510044450244,0.09730550692167428 -48249,0.38263185478065753,0.01418036570098618,0.15807104169578146,0.1641877738446464,0.44174051952576776,0.9731624724848149,0.01457282039896661,0.951636817654496,0.16630377296957227,0.9744373953106866,0.010000191358858813,0.953647639303929,0.09730550692167428 -48251,0.3881261263357074,0.01293307565145018,0.15671939485136965,0.1554429102890233,0.4417364310856512,0.8876860747422923,0.01457282039896661,0.9444211685901345,0.16630377296957227,0.8836200617724406,0.010000191358858813,0.9328923055457181,0.09730550692167428 -48253,0.41707600695619823,0.014898877374101973,0.17442294135368103,0.1680161690161683,0.4416872690030628,1.0228622056641998,0.01457282039896661,1.0485942916445419,0.16630377296957227,1.0274280566114233,0.010000191358858813,1.043649949698724,0.09730550692167428 -48255,0.4279954464736685,0.01477439833958413,0.18082348896548953,0.16721515091355724,0.44165812381641895,1.0146021583870237,0.01457282039896661,1.0830816026058017,0.16630377296957227,1.0086970967276196,0.010000191358858813,1.049064811649779,0.09730550692167428 -48257,0.3813303873788111,0.01199669581071056,0.15154632030139076,0.1492459190342281,0.4417483340198679,0.8228136189758419,0.01457282039896661,0.9135876570855495,0.16630377296957227,0.8117033290296829,0.010000191358858813,0.8917823403309295,0.09730550692167428 -48259,0.4315977498704844,0.01770906154322779,0.1865644154740909,0.1896426800525153,0.44166743728348,1.2145023923599276,0.01457282039896661,1.1212242053447823,0.16630377296957227,1.2239532112398646,0.010000191358858813,1.1703415369389563,0.09730550692167428 -48261,0.49425134967979334,0.025169550157067774,0.22587151473173106,0.23467809500130274,0.44157525581130785,1.728087757780112,0.01457282039896661,1.356122494111277,0.16630377296957227,1.832023633874096,0.010000191358858813,1.527766184329086,0.09730550692167428 -48263,0.4627277833372404,0.023945064821234305,0.215382326829619,0.23160524320299752,0.4416027909867605,1.6428323730523873,0.01457282039896661,1.29467853137758,0.16630377296957227,1.682592215612164,0.010000191358858813,1.4057235609078813,0.09730550692167428 -48265,0.46302898086571165,0.024008376643392643,0.2143545314748468,0.23007069932935448,0.44161053100636305,1.6476055922357777,0.01457282039896661,1.2864399347690583,0.16630377296957227,1.7036085490705828,0.010000191358858813,1.4042571424676185,0.09730550692167428 -48267,0.48947021140942765,0.022123724960750477,0.21874028627480513,0.21884097214711967,0.4415721167917418,1.5188105433216414,0.01457282039896661,1.3167413131359789,0.16630377296957227,1.5622189760660978,0.010000191358858813,1.4361552533490163,0.09730550692167428 -48269,0.4531664220505646,0.014881872347485916,0.18190961960108393,0.16571497974632415,0.44166247467724906,1.0199504649887945,0.01457282039896661,1.091983263316549,0.16630377296957227,1.0724407006032615,0.010000191358858813,1.1386185407146159,0.09730550692167428 -48271,0.4581306209227038,0.022714715765566426,0.20526291674819425,0.21829689587231654,0.441642684805125,1.5576460873141933,0.01457282039896661,1.2260317305027235,0.16630377296957227,1.650441421411501,0.010000191358858813,1.3695142586930207,0.09730550692167428 -48273,0.36506319367327555,0.01297414651737799,0.149007415644367,0.15601279818236938,0.44175750844852735,0.8906734772736983,0.01457282039896661,0.8968943593040364,0.16630377296957227,0.8855410890559152,0.010000191358858813,0.8746075607976196,0.09730550692167428 -48275,0.43982308294931294,0.022037402683200258,0.20296061953137584,0.21728100812581452,0.4416397062822292,1.512104332956536,0.01457282039896661,1.2161953424707859,0.16630377296957227,1.5414928945008548,0.010000191358858813,1.2854619627008113,0.09730550692167428 -48277,0.41677002534410595,0.017209240310748698,0.17873271391340995,0.18376360639321315,0.44169374274210643,1.1796779330380405,0.01457282039896661,1.0721990714094591,0.16630377296957227,1.2060486120717155,0.010000191358858813,1.1169554569104245,0.09730550692167428 -48279,0.3954017658079829,0.01658864477185585,0.16983428417452318,0.18067607288607695,0.4417182055815779,1.138700153852644,0.01457282039896661,1.0195101562274629,0.16630377296957227,1.1483145639332302,0.010000191358858813,1.0484129820006869,0.09730550692167428 -48281,0.413220749207342,0.016435563593978717,0.17678098241681478,0.180579645944827,0.44169352143244706,1.127099918949555,0.01457282039896661,1.0624198576651276,0.16630377296957227,1.1279968362414032,0.010000191358858813,1.087163187651477,0.09730550692167428 -48283,0.38578583710241376,0.014064820254994588,0.15874549493698697,0.16129545634230516,0.4417384416110131,0.9652527727810811,0.01457282039896661,0.9546562354497381,0.16630377296957227,0.981892367382678,0.010000191358858813,0.951658011042799,0.09730550692167428 -48285,0.44500671121411417,0.021432345733063286,0.20219165711812506,0.21414176812841482,0.44164240710771707,1.4700272029514534,0.01457282039896661,1.213384837229476,0.16630377296957227,1.4965741569774567,0.010000191358858813,1.2937783524333586,0.09730550692167428 -48287,0.4105475215983544,0.01663754088082137,0.17642776129286403,0.18192868470262064,0.4416949066537644,1.1407780889030752,0.01457282039896661,1.059639823076814,0.16630377296957227,1.1440931845864553,0.010000191358858813,1.090375543798881,0.09730550692167428 -48289,0.45450457716571124,0.02171339371963029,0.2033846611640795,0.21324018257699873,0.4416350509652862,1.4902098037232654,0.01457282039896661,1.2205342056018522,0.16630377296957227,1.55575365368081,0.010000191358858813,1.3307395736904528,0.09730550692167428 -48291,0.3913793299687678,0.013065935020185809,0.15804980320055295,0.15590949346549815,0.44173324488911453,0.8971872924978213,0.01457282039896661,0.9515565927727768,0.16630377296957227,0.8985613680268877,0.010000191358858813,0.9425517073753347,0.09730550692167428 -48293,0.4170551250004898,0.016587495170187545,0.17772248070989682,0.1802896661930759,0.44169412893751697,1.1374214601229486,0.01457282039896661,1.066710907173539,0.16630377296957227,1.1514766431832817,0.010000191358858813,1.0971504538701096,0.09730550692167428 -48295,0.40237880795317316,0.01679763123826033,0.17452207944099513,0.1830392812446432,0.4417023317661106,1.1526950163615164,0.01457282039896661,1.0488520882334105,0.16630377296957227,1.1531157757068338,0.010000191358858813,1.07180454302864,0.09730550692167428 -48297,0.4388782580997786,0.018872100276625003,0.19231309899039997,0.19493528447163322,0.4416543757217595,1.2958877322549758,0.01457282039896661,1.1542288647117882,0.16630377296957227,1.3273265889876447,0.010000191358858813,1.2099368828141857,0.09730550692167428 -48299,0.5189787987094585,0.029350372589211644,0.24669473618264837,0.26543999303954124,0.4415322276792105,2.014338076760957,0.01457282039896661,1.4801262143648635,0.16630377296957227,2.121734581943022,0.010000191358858813,1.6898233977124018,0.09730550692167428 -48301,0.39529435874547486,0.005318811209145899,0.14672005523109588,0.10462867186515797,0.44171199885106716,0.3638178222101165,0.01457282039896661,0.8910591804371468,0.16630377296957227,0.2825176767989174,0.010000191358858813,0.7236426760586527,0.09730550692167428 -48303,0.37030582360297387,0.012618518504159706,0.15020448029760103,0.1533257956638811,0.44175272878398103,0.8660858712294517,0.01457282039896661,0.9034829474740271,0.16630377296957227,0.8595982851537238,0.010000191358858813,0.8745422917740628,0.09730550692167428 -48305,0.4079067121001362,0.016637765739471844,0.17307243940318318,0.1787452719805479,0.44170568498167684,1.1417629574334804,0.01457282039896661,1.0440445701422183,0.16630377296957227,1.17555815103001,0.010000191358858813,1.0873521562608386,0.09730550692167428 -48307,0.4410563242156108,0.020818000972642713,0.1984445955689971,0.2089228485610567,0.4416483355071425,1.4286548485722084,0.01457282039896661,1.190311520444292,0.16630377296957227,1.4643661151894936,0.010000191358858813,1.2713859115983497,0.09730550692167428 -48309,0.3791606117612488,0.013820230748356031,0.15707555984295102,0.16224985499751093,0.44173859730009907,0.9491100158940704,0.01457282039896661,0.9459288737362382,0.16630377296957227,0.9404569187283969,0.010000191358858813,0.9316132460965671,0.09730550692167428 -48311,0.4241444653068753,0.017826341927672084,0.18533366519524286,0.18559047691048097,0.4416649305344007,1.2234542961293853,0.01457282039896661,1.107817366572843,0.16630377296957227,1.2539629304128432,0.010000191358858813,1.1203454102818378,0.09730550692167428 -48313,0.3967940758202092,0.01496617834524799,0.16576915594330754,0.16863767262527218,0.4417166547509094,1.0268362496245818,0.01457282039896661,0.9958189568231842,0.16630377296957227,1.041487798368185,0.010000191358858813,0.9992816658960588,0.09730550692167428 -48315,0.4747017691344928,0.02198525405944831,0.21246148773263135,0.21656636381693167,0.4416040615125736,1.509051982324938,0.01457282039896661,1.2753911501409667,0.16630377296957227,1.5625628992873053,0.010000191358858813,1.3886523325322946,0.09730550692167428 -48317,0.38651439347002847,0.014503727992571195,0.16099931475897727,0.1666155212567642,0.44172568727268435,0.9954944613206586,0.01457282039896661,0.9731000992310253,0.16630377296957227,0.9942936323519744,0.010000191358858813,0.9665343291175126,0.09730550692167428 -48319,0.4640094198007725,0.025673101708194986,0.21798516958426079,0.2394234202500694,0.44160373566888206,1.7604576362783009,0.01457282039896661,1.3075523127825792,0.16630377296957227,1.845545341601735,0.010000191358858813,1.4544755412581512,0.09730550692167428 -48321,0.4027851595721901,0.015426825147040924,0.16899912580684728,0.17255786558459651,0.441712806861376,1.0583823608410372,0.01457282039896661,1.0155959219783304,0.16630377296957227,1.0680233030608448,0.010000191358858813,1.0374894474392011,0.09730550692167428 -48323,0.3550150819429567,0.012083110882018492,0.14116750369412176,0.14916361456760424,0.441779353497358,0.8288138956087705,0.01457282039896661,0.851596629714541,0.16630377296957227,0.8263849554199743,0.010000191358858813,0.8326414580288808,0.09730550692167428 -48325,0.3996497203170579,0.014749056418273966,0.16637210739325495,0.16780490394294312,0.4417173349572526,1.0119592066517673,0.01457282039896661,1.0008930422364246,0.16630377296957227,1.0159561581510528,0.010000191358858813,1.0100727993884964,0.09730550692167428 -48327,0.48730386890347355,0.02371003893948296,0.220843885299773,0.22994752548271674,0.441577613151214,1.6279430757691773,0.01457282039896661,1.326897412204103,0.16630377296957227,1.6874524091155634,0.010000191358858813,1.474620839318046,0.09730550692167428 -48329,0.3807640298070674,0.013209840003440117,0.1553635830256854,0.1574464861745971,0.44174352282300766,0.905918728930327,0.01457282039896661,0.9347128957719641,0.16630377296957227,0.900866085471131,0.010000191358858813,0.9208246036475558,0.09730550692167428 -48331,0.4204530345177657,0.018490512549638252,0.1838268793136122,0.19354462312298343,0.44168536299499245,1.2679766528251646,0.01457282039896661,1.103098956988028,0.16630377296957227,1.2914801863451464,0.010000191358858813,1.1585268960614652,0.09730550692167428 -48333,0.4718205580930177,0.022913792824476517,0.2137040511562951,0.22175010848636362,0.441603890691207,1.5727128237862866,0.01457282039896661,1.2823912754598685,0.16630377296957227,1.6384077502226528,0.010000191358858813,1.4046199104132038,0.09730550692167428 -48335,0.40301001533503433,0.015070476927092765,0.16976651020327801,0.16860053236858696,0.44170316962997525,1.0339370527454523,0.01457282039896661,1.0221432474577339,0.16630377296957227,1.0427918649588548,0.010000191358858813,1.0050810791567888,0.09730550692167428 -48337,0.44420479963349163,0.020223846847461147,0.19574382064543638,0.20344543347146,0.4416564616597074,1.3878554925746058,0.01457282039896661,1.1743319890798274,0.16630377296957227,1.4435513436710217,0.010000191358858813,1.265218314078473,0.09730550692167428 -48339,0.3860272799632346,0.012342558911810575,0.15403947995126394,0.15138857719843463,0.44174133770583446,0.8468190004151588,0.01457282039896661,0.9289339236106301,0.16630377296957227,0.8400934243696137,0.010000191358858813,0.9118242809231389,0.09730550692167428 -48341,0.35961684715738124,0.012083895132377613,0.14360886740998122,0.14910143103006562,0.44177412659782067,0.8287239900469379,0.01457282039896661,0.8655006376986667,0.16630377296957227,0.8231232284084045,0.010000191358858813,0.8390305217492207,0.09730550692167428 -48343,0.43610680568421556,0.019430971953684782,0.19173392960666724,0.19896167680975052,0.4416609644894281,1.333176971090848,0.01457282039896661,1.1511295864895525,0.16630377296957227,1.3730995973049582,0.010000191358858813,1.2256671557887966,0.09730550692167428 -48345,0.45139655490452396,0.023313205256795443,0.2034433977690977,0.22073828300378928,0.4416481449460829,1.5986423262023575,0.01457282039896661,1.2194191573609021,0.16630377296957227,1.7074667344662013,0.010000191358858813,1.3642284722393547,0.09730550692167428 -48347,0.37146756013119603,0.013226294189000364,0.1519021829025488,0.15729333532632261,0.44174793225338727,0.9077371314000711,0.01457282039896661,0.9155101344802565,0.16630377296957227,0.9079736110155163,0.010000191358858813,0.899175381943766,0.09730550692167428 -48349,0.3974357278665407,0.01523640450984582,0.16663968642558694,0.171591672786367,0.441719992735517,1.0462931998584932,0.01457282039896661,1.0005086949528157,0.16630377296957227,1.0508398408172925,0.010000191358858813,1.0172689390516432,0.09730550692167428 -48351,0.4243016599662549,0.016863003085551047,0.17977131159498544,0.1809431762133913,0.4416905445286178,1.1568635621706425,0.01457282039896661,1.078640417983834,0.16630377296957227,1.1896197122945709,0.010000191358858813,1.1279913531684573,0.09730550692167428 -48353,0.4144555069202326,0.017443331786036218,0.17893597913146508,0.18646487573091702,0.44169529104504945,1.1961770925945645,0.01457282039896661,1.0735772941173427,0.16630377296957227,1.2122434491502307,0.010000191358858813,1.1156656389699215,0.09730550692167428 -48355,0.3888391408954206,0.013712447957209748,0.15952834868906496,0.16102814311226665,0.4417328680128638,0.9412169812655379,0.01457282039896661,0.9593969927827626,0.16630377296957227,0.9394491672305355,0.010000191358858813,0.9523741099675102,0.09730550692167428 -48357,0.36714523063475535,0.012559406254388962,0.1469868198205762,0.15147674399686,0.44177002746290084,0.8617627879237857,0.01457282039896661,0.8861741189478791,0.16630377296957227,0.8676739266236912,0.010000191358858813,0.8717389834013061,0.09730550692167428 -48359,0.3932318507940896,0.015450001930268515,0.1631550848401997,0.17003508294915898,0.4417250264204855,1.0603828017473882,0.01457282039896661,0.9834718692716756,0.16630377296957227,1.09962446163751,0.010000191358858813,1.0243811570720733,0.09730550692167428 -48361,0.40846541658971425,0.015448580249114486,0.17054144856670794,0.17147411850002736,0.44170780169553026,1.0601835555653234,0.01457282039896661,1.0254181410946466,0.16630377296957227,1.0804852181411388,0.010000191358858813,1.048625628607578,0.09730550692167428 -48363,0.42047659812248206,0.017254930402239736,0.17975784862817068,0.1836096798914146,0.44169061895352757,1.1830694605915646,0.01457282039896661,1.0789520611607981,0.16630377296957227,1.216448448842403,0.010000191358858813,1.129921705900144,0.09730550692167428 -48365,0.41498200468398605,0.016986429842656754,0.17796588307466252,0.18338321987750972,0.44169436911967297,1.1646114942583479,0.01457282039896661,1.0685579074917262,0.16630377296957227,1.1799042524439836,0.010000191358858813,1.1071895041999174,0.09730550692167428 -48367,0.4020094981908432,0.013934312727022651,0.16402466310931296,0.16175803116890275,0.44171842204438,0.9560291419751734,0.01457282039896661,0.9898151812315166,0.16630377296957227,0.9628909928423218,0.010000191358858813,0.9966847701159132,0.09730550692167428 -48369,0.3742877689079739,0.01371075873249785,0.15283241114705715,0.1596915157497535,0.44175485585323054,0.9410508635236983,0.01457282039896661,0.9212363617022726,0.16630377296957227,0.9511807444778785,0.010000191358858813,0.9221041397348438,0.09730550692167428 -48371,0.39616111641105667,0.013392299745797198,0.1611059975025572,0.15893224553586993,0.44172528131469313,0.9197566733596525,0.01457282039896661,0.9712724428588821,0.16630377296957227,0.9168880371326011,0.010000191358858813,0.9612024182686268,0.09730550692167428 -48373,0.4495984736736066,0.019777750081188504,0.19628987419085014,0.20042779035932698,0.44164835929664564,1.3573178159155523,0.01457282039896661,1.177753611658738,0.16630377296957227,1.4115017682164681,0.010000191358858813,1.264824303130838,0.09730550692167428 -48375,0.37559136323008546,0.012779057242277764,0.15243641602987634,0.15474369732316562,0.44174977361727086,0.8767288337077533,0.01457282039896661,0.9170054413278335,0.16630377296957227,0.8674752467386877,0.010000191358858813,0.892416783333225,0.09730550692167428 -48377,0.4031816348456138,0.01758063296517,0.17611111332511,0.18876421529640514,0.4417042449568367,1.206495416467254,0.01457282039896661,1.0552865317136384,0.16630377296957227,1.207899557828274,0.010000191358858813,1.097547052276834,0.09730550692167428 -48379,0.4511219240561905,0.019946349746799014,0.19623670436124466,0.20057397692001705,0.4416479072100943,1.3681267577742058,0.01457282039896661,1.1780154141437458,0.16630377296957227,1.4377216722825057,0.010000191358858813,1.2797401637862094,0.09730550692167428 -48381,0.39361809407069304,0.014104850557224664,0.16202742199715225,0.16297456563235557,0.44172595359587874,0.9679218618927179,0.01457282039896661,0.9738917155484674,0.16630377296957227,0.9750257196556398,0.010000191358858813,0.9748649334178614,0.09730550692167428 -48383,0.3589005016102478,0.01030468615620907,0.1394088264847388,0.13899082868974005,0.4417753083610258,0.7063442929899904,0.01457282039896661,0.8413827875731226,0.16630377296957227,0.6764533163881454,0.010000191358858813,0.7937980615491786,0.09730550692167428 -48385,0.4737373275317153,0.02483543463798442,0.21870550251249063,0.2352119150278944,0.44159721729640494,1.7041070555781588,0.01457282039896661,1.3128863896449505,0.16630377296957227,1.7795046223789321,0.010000191358858813,1.4624804653379802,0.09730550692167428 -48387,0.4449266005111238,0.02004719281543866,0.19802489149943053,0.20492840097122203,0.4416425278274272,1.3759170878613305,0.01457282039896661,1.1888226154581472,0.16630377296957227,1.3998461087977279,0.010000191358858813,1.259610010757359,0.09730550692167428 -48389,0.38395145765718663,0.014216910411726104,0.1582065306446459,0.16257104606281667,0.44173243246120397,0.9759076055649704,0.01457282039896661,0.9534877469840233,0.16630377296957227,0.9944559502240498,0.010000191358858813,0.9564820969582872,0.09730550692167428 -48391,0.43189733081248594,0.018963805744109656,0.18957371286318064,0.19602794195730394,0.44166576508497074,1.3011897753567374,0.01457282039896661,1.1388967209071286,0.16630377296957227,1.333602882694807,0.010000191358858813,1.2026517098144134,0.09730550692167428 -48393,0.4521590893595643,0.018480283513217517,0.19217102498250122,0.19278982697462205,0.4416457905837936,1.2665455785144184,0.01457282039896661,1.1527026084509984,0.16630377296957227,1.3238703985341762,0.010000191358858813,1.247273078488902,0.09730550692167428 -48395,0.4169040390174889,0.01782293688048739,0.18155571273598514,0.1897740489560779,0.44168793785229754,1.222387413363799,0.01457282039896661,1.0901477388585554,0.16630377296957227,1.2339123678117587,0.010000191358858813,1.1321558642718934,0.09730550692167428 -48397,0.3772850141337699,0.011614387546499572,0.1487496280522661,0.1460202218474502,0.441755184230611,0.7967300427873985,0.01457282039896661,0.8972063402124055,0.16630377296957227,0.7879169899532916,0.010000191358858813,0.8711656941551262,0.09730550692167428 -48399,0.4338283915072083,0.019765771562074666,0.19416591836015257,0.2044426273012297,0.4416591305432094,1.355820093233714,0.01457282039896661,1.1658550739547255,0.16630377296957227,1.3626467966183926,0.010000191358858813,1.2253600876138557,0.09730550692167428 -48401,0.41094362813845386,0.01607544864491499,0.1753160479280982,0.17782909339860148,0.4416956341225064,1.1023393380823823,0.01457282039896661,1.0531683828682574,0.16630377296957227,1.1013630460235349,0.010000191358858813,1.067028987498549,0.09730550692167428 -48403,0.48936699791216476,0.025915503020833827,0.22557442918852183,0.2408179060340923,0.4415813657664445,1.7793151683637427,0.01457282039896661,1.3518645118678703,0.16630377296957227,1.883779817442444,0.010000191358858813,1.5281164799356264,0.09730550692167428 -48405,0.45695996456951954,0.022898911614057438,0.2074869775606709,0.22115388851682016,0.44162460732104925,1.5711010470607079,0.01457282039896661,1.2451862161617049,0.16630377296957227,1.6442814910835475,0.010000191358858813,1.3712541905482907,0.09730550692167428 -48407,0.4333584158951593,0.018270182460225295,0.1866855907026147,0.1913838350283838,0.4416750557655878,1.2537087124459159,0.01457282039896661,1.1203499507689205,0.16630377296957227,1.2896147045006323,0.010000191358858813,1.18931270498785,0.09730550692167428 -48409,0.38666700778989793,0.013930435805610243,0.1589922014343622,0.16256033242152054,0.4417354268549907,0.955988297890902,0.01457282039896661,0.9568205336117646,0.16630377296957227,0.9563427462956273,0.010000191358858813,0.9564726946962508,0.09730550692167428 -48411,0.4385124675200567,0.020571663037697502,0.1947524234011409,0.20540436514385593,0.4416564858677772,1.4121565626322328,0.01457282039896661,1.166971500169455,0.16630377296957227,1.469839857954787,0.010000191358858813,1.2549405868832455,0.09730550692167428 -48413,0.3953960986569076,0.014816614181527486,0.16313164966402566,0.1677173247980714,0.44173051953411124,1.0172858867034238,0.01457282039896661,0.9781051675853147,0.16630377296957227,1.034042215779872,0.010000191358858813,1.0051022171501964,0.09730550692167428 -48415,0.40299988815572274,0.015290809018187024,0.16911213701812167,0.17117510239624623,0.44171223355917943,1.049343487547465,0.01457282039896661,1.015790633162629,0.16630377296957227,1.0585218639589762,0.010000191358858813,1.0308622993960959,0.09730550692167428 -48417,0.4154956863205769,0.01846155845408312,0.1833185028724319,0.1927800509543528,0.441683203369359,1.2659427150009925,0.01457282039896661,1.0998766982881019,0.16630377296957227,1.2884688423824646,0.010000191358858813,1.14867069021598,0.09730550692167428 -48419,0.41065301400243337,0.016893703952844855,0.1760278658677471,0.18196639165317763,0.44170128115312235,1.1582225735383624,0.01457282039896661,1.055824027949426,0.16630377296957227,1.1775948953457385,0.010000191358858813,1.0921841682693887,0.09730550692167428 -48421,0.39052407059492256,0.014565382577497853,0.16017361624251186,0.16404090505892238,0.44173792937970147,1.0005516571783704,0.01457282039896661,0.9638729081228905,0.16630377296957227,1.0287303519124849,0.010000191358858813,0.9862875912062463,0.09730550692167428 -48423,0.39652646444436634,0.015384200803047851,0.16709645875515444,0.17222073774963412,0.4417195473870466,1.0557679706246232,0.01457282039896661,1.003502425003704,0.16630377296957227,1.061952759082072,0.010000191358858813,1.0154983168820604,0.09730550692167428 -48425,0.4092300287600965,0.016511716992509244,0.17514697277523,0.17985030478170866,0.441697927456398,1.1324580463553113,0.01457282039896661,1.0520879526487672,0.16630377296957227,1.143009466500457,0.010000191358858813,1.0815368165417387,0.09730550692167428 -48427,0.3478987035348355,0.011512448365161536,0.13665180242103087,0.1449105047597254,0.4417903862241026,0.7901336779916353,0.01457282039896661,0.8251498925107131,0.16630377296957227,0.7884277683903509,0.010000191358858813,0.7998128054231741,0.09730550692167428 -48429,0.42361191622882954,0.018576509470957875,0.18485465938620355,0.19300007439882566,0.4416832512826319,1.2739278660339626,0.01457282039896661,1.1099664214554092,0.16630377296957227,1.3073176854741242,0.010000191358858813,1.1661402712116429,0.09730550692167428 -48431,0.4232613648267167,0.017903485989039448,0.18407032222587605,0.1898109396495847,0.44168526849747447,1.2270716975733211,0.01457282039896661,1.1037129387873097,0.16630377296957227,1.2416594784110786,0.010000191358858813,1.1586027514607293,0.09730550692167428 -48433,0.4642891287093544,0.022873863047640934,0.2111882408097097,0.22344506730168356,0.4416168606371169,1.569651359147905,0.01457282039896661,1.2681634704258034,0.16630377296957227,1.6183799594314505,0.010000191358858813,1.3843355166868796,0.09730550692167428 -48435,0.38781943508721384,0.013823764505905164,0.1598435365396753,0.1632717342423658,0.4417264330241474,0.9486881961807183,0.01457282039896661,0.9611723626223027,0.16630377296957227,0.9375566762009624,0.010000191358858813,0.9627944891070823,0.09730550692167428 -48437,0.4114518355938316,0.01836005386531593,0.17847332561233764,0.19014898901192717,0.4417036588814429,1.2592947281701163,0.01457282039896661,1.0714195830748459,0.16630377296957227,1.3044670704767718,0.010000191358858813,1.129600039850116,0.09730550692167428 -48439,0.36955544388175654,0.011060552430268041,0.14519870467701662,0.1430822615859461,0.44176125556047974,0.7580968363574887,0.01457282039896661,0.8759915362451574,0.16630377296957227,0.7399385292819953,0.010000191358858813,0.8328576207086256,0.09730550692167428 -48441,0.3850796841632236,0.014427280662967414,0.15965606897423612,0.16479529124425168,0.44173440314443946,0.990571038079344,0.01457282039896661,0.9617123801261123,0.16630377296957227,1.0024758351572742,0.010000191358858813,0.9616958312243231,0.09730550692167428 -48443,0.45335736594489484,0.02165278849130966,0.20683070676109294,0.21877886541305752,0.441614124279325,1.4871069271267232,0.01457282039896661,1.2410429676301877,0.16630377296957227,1.4932585746698566,0.010000191358858813,1.3234868696427093,0.09730550692167428 -48445,0.3974783599339121,0.01588005311764605,0.16826578097918116,0.17518216258773345,0.4417187508199593,1.0894192212469953,0.01457282039896661,1.0105599492480333,0.16630377296957227,1.1022333233990858,0.010000191358858813,1.0312077536572426,0.09730550692167428 -48447,0.47027661802522225,0.023618468301100322,0.2177882653118487,0.2308942952870936,0.44159288568104776,1.62153216464338,0.01457282039896661,1.3068926757373116,0.16630377296957227,1.6469421362067445,0.010000191358858813,1.4168131509252748,0.09730550692167428 -48449,0.3692537851787644,0.013158422520605728,0.14999346962801696,0.15707802621719197,0.44175941265612506,0.903014496186076,0.01457282039896661,0.9036535015956533,0.16630377296957227,0.9000017454624156,0.010000191358858813,0.8923349971804769,0.09730550692167428 -48451,0.3919076806738122,0.01496543704888801,0.16401877173824125,0.1691065748345934,0.4417245031265736,1.027197562376616,0.01457282039896661,0.9863498250992985,0.16630377296957227,1.035171494953808,0.010000191358858813,0.9912878199039418,0.09730550692167428 -48453,0.362456002311522,0.009600124994248577,0.13960433406626757,0.1325446081182292,0.4417692671164648,0.6582575941316792,0.01457282039896661,0.8406039248411985,0.16630377296957227,0.6320975469521066,0.010000191358858813,0.7672782907208164,0.09730550692167428 -48455,0.45858436949304693,0.021369718659767903,0.20381537678485953,0.21105908258491837,0.4416291806196099,1.4671311086226808,0.01457282039896661,1.223712086826044,0.16630377296957227,1.5328023007853049,0.010000191358858813,1.337130526967952,0.09730550692167428 -48457,0.43954895045792175,0.019067173917223373,0.1910246901540063,0.19586801524269865,0.4416586036210176,1.309146841378247,0.01457282039896661,1.1467882924142423,0.16630377296957227,1.3573934358129645,0.010000191358858813,1.2189983140857228,0.09730550692167428 -48459,0.4210068649889605,0.01657440585717726,0.1784179300168957,0.17977565316266442,0.4416908115181974,1.1371566359106091,0.01457282039896661,1.0724461464389725,0.16630377296957227,1.160026782923476,0.010000191358858813,1.1124063258301429,0.09730550692167428 -48461,0.41732650809868177,0.01584190811197781,0.17815533654335763,0.17758123278085886,0.4416901306119835,1.0862993260556273,0.01457282039896661,1.0669518181407365,0.16630377296957227,1.0698633807076323,0.010000191358858813,1.0720076414208615,0.09730550692167428 -48463,0.38774054535774993,0.015336107626534002,0.16314465665068179,0.17168550060559665,0.441732342941202,1.053041053914661,0.01457282039896661,0.9801727164406919,0.16630377296957227,1.0587772457319602,0.010000191358858813,0.9948033353670463,0.09730550692167428 -48465,0.37448679437701593,0.013643461043013071,0.15288487155019748,0.15960064372567573,0.4417532823411786,0.9363399477325056,0.01457282039896661,0.9213560491830397,0.16630377296957227,0.9440487468966652,0.010000191358858813,0.9179081958455666,0.09730550692167428 -48467,0.4317942500929127,0.01876605690335275,0.18809140013231052,0.1938646739336711,0.44167226382228475,1.2872594560088033,0.01457282039896661,1.128488000852423,0.16630377296957227,1.3290969600023874,0.010000191358858813,1.1978000004457665,0.09730550692167428 -48469,0.39609991953353274,0.014699996898243781,0.1645516140129905,0.16731602611700552,0.4417244806120645,1.0089365725380994,0.01457282039896661,0.988920106297984,0.16630377296957227,1.0162892704289084,0.010000191358858813,0.9987530350961009,0.09730550692167428 -48471,0.38792145143306445,0.011956351320434308,0.1553993968877635,0.14815537250314542,0.4417276777710054,0.8192297507639652,0.01457282039896661,0.9346784199671117,0.16630377296957227,0.8138669164399661,0.010000191358858813,0.8943984862000431,0.09730550692167428 -48473,0.3755024208677179,0.012083038608392719,0.15100011641071154,0.15043285700145767,0.44174756915423175,0.8289970729612286,0.01457282039896661,0.9094722815433228,0.16630377296957227,0.8135912253381066,0.010000191358858813,0.8747162248431231,0.09730550692167428 -48475,0.39463169625353334,0.015876483881013183,0.1678765513161869,0.17578866868570048,0.44171748991504955,1.089386633706496,0.01457282039896661,1.0078360961460033,0.16630377296957227,1.095296300068991,0.010000191358858813,1.0265591962185172,0.09730550692167428 -48477,0.4215274260180675,0.018802739443941677,0.18494466575149276,0.19488160081817926,0.44168296276882474,1.289749682376835,0.01457282039896661,1.1097910829024744,0.16630377296957227,1.3214545460652625,0.010000191358858813,1.1740059534692324,0.09730550692167428 -48479,0.33239142276245776,0.00957088960835871,0.12610587673685666,0.13230158670611428,0.4418132849154869,0.656502930283149,0.01457282039896661,0.762095338737262,0.16630377296957227,0.637409154976563,0.010000191358858813,0.706294586805942,0.09730550692167428 -48481,0.3990512154144734,0.015676681195141963,0.1692068183270556,0.17481913240452918,0.44171501326926155,1.0758572494461451,0.01457282039896661,1.0156142495035794,0.16630377296957227,1.0771144265928794,0.010000191358858813,1.0309348306300143,0.09730550692167428 -48483,0.4228552038305225,0.018330091445752233,0.1837727363978215,0.1908206163863763,0.44168644364959936,1.2564413761165447,0.01457282039896661,1.1019985744873724,0.16630377296957227,1.2928283361777733,0.010000191358858813,1.16163895525147,0.09730550692167428 -48485,0.3883599453017659,0.014344344251412277,0.1610327712628276,0.1642417803645141,0.4417295580682853,0.9844649778655185,0.01457282039896661,0.9692702108916929,0.16630377296957227,0.9931853539415283,0.010000191358858813,0.9653404887544399,0.09730550692167428 -48487,0.4020226394160714,0.01639014278439115,0.1712667560923341,0.17806868631005188,0.4417123509130119,1.1243284856732103,0.01457282039896661,1.0277103445306766,0.16630377296957227,1.1442058174002596,0.010000191358858813,1.0592026776273982,0.09730550692167428 -48489,0.3691384523531296,0.012850050779645721,0.15006954978886827,0.1548944971379666,0.44175476562148214,0.8818955251065055,0.01457282039896661,0.9031228600134131,0.16630377296957227,0.8750133070569033,0.010000191358858813,0.8793669237434272,0.09730550692167428 -48491,0.3698063242514198,0.010712389448034177,0.14392514724113847,0.13971075921651666,0.4417642412229579,0.7347033506174191,0.01457282039896661,0.8679768419385965,0.16630377296957227,0.7196889952259212,0.010000191358858813,0.8225792665372402,0.09730550692167428 -48493,0.4049936547534089,0.01437997591805289,0.16607025641705142,0.16465303121957187,0.4417144170078048,0.9866096639716613,0.01457282039896661,1.000395241294451,0.16630377296957227,0.9987520736305664,0.010000191358858813,1.0181203937781147,0.09730550692167428 -48495,0.39013656358070536,0.014906655403790263,0.1611988452793373,0.1666471811258562,0.4417397345856397,1.0241082108350201,0.01457282039896661,0.9697830022138767,0.16630377296957227,1.0502307265313564,0.010000191358858813,0.9934236283390325,0.09730550692167428 -48497,0.397768324502327,0.013690022653897817,0.16176033534562906,0.1600972930788431,0.4417244847299949,0.9396743923119959,0.01457282039896661,0.975615391722116,0.16630377296957227,0.9457241712264788,0.010000191358858813,0.9794898362314346,0.09730550692167428 -48499,0.465454007864171,0.02281255980315052,0.2095827625028694,0.22100291603193506,0.44161961253872123,1.5662283909765766,0.01457282039896661,1.258254122581767,0.16630377296957227,1.6402526867291427,0.010000191358858813,1.3860963811823224,0.09730550692167428 -48501,0.3685827069211268,0.012809918713783185,0.14947412867823084,0.15512869675443502,0.44176282077126383,0.8788965718809597,0.01457282039896661,0.8999613606177381,0.16630377296957227,0.8671110634811878,0.010000191358858813,0.8797503825641414,0.09730550692167428 -48503,0.42944582337139636,0.019188711526967342,0.19008193062676557,0.19809573499647806,0.4416691937386721,1.3165167105355922,0.01457282039896661,1.1402776726936525,0.16630377296957227,1.34011250846927,0.010000191358858813,1.1990574820517472,0.09730550692167428 -48505,0.359600506439244,0.012350618220373928,0.14356232466469349,0.15068184161247516,0.4417768407274021,0.8477000269664181,0.01457282039896661,0.8662589277764079,0.16630377296957227,0.8508878323602194,0.010000191358858813,0.8505866666369395,0.09730550692167428 -48507,0.3669894009935939,0.013728786428964888,0.1505071440343994,0.1601658901824068,0.44176542772186905,0.9427068171042139,0.01457282039896661,0.908941974942015,0.16630377296957227,0.9453018593915251,0.010000191358858813,0.9043753140204407,0.09730550692167428 -49001,0.3718274376448458,0.014133904941576885,0.1524574047741883,0.16357375327564672,0.44175986610656653,0.9702827079662716,0.01457282039896661,0.9198266239858457,0.16630377296957227,0.9761293574130989,0.010000191358858813,0.929777315282341,0.09730550692167428 -49003,0.35797492620494986,0.012371612623733295,0.1429649477406677,0.1509918443632854,0.4417792248317461,0.848431978842774,0.01457282039896661,0.8624023233105083,0.16630377296957227,0.8471144779418933,0.010000191358858813,0.8463511443000169,0.09730550692167428 -49005,0.32489327393800493,0.009259095042023154,0.12302895679700165,0.1299954588393275,0.44181929483680793,0.6354112426013632,0.01457282039896661,0.7417991448151876,0.16630377296957227,0.6151008372622566,0.010000191358858813,0.6730152256818704,0.09730550692167428 -49007,0.3951121558060763,0.015539444048276535,0.16722144424955532,0.17400097250329655,0.44171950051011005,1.066689074437894,0.01457282039896661,1.0044992642750845,0.16630377296957227,1.065919797871072,0.010000191358858813,1.016686832531819,0.09730550692167428 -49009,0.46364726829978553,0.021779411758942123,0.20646536089031708,0.21214015560171695,0.4416266736586034,1.4950206267067536,0.01457282039896661,1.235551285501601,0.16630377296957227,1.5756664676034524,0.010000191358858813,1.3431117730301616,0.09730550692167428 -49011,0.3413811892486071,0.009955816905745273,0.13057577314153224,0.13478397417537924,0.44180285767901556,0.6831238504813393,0.01457282039896661,0.7885991954355227,0.16630377296957227,0.6652333892215745,0.010000191358858813,0.7371030090075507,0.09730550692167428 -49013,0.36043056672333995,0.011926648080446838,0.14178144454419156,0.1472959966568585,0.4417795660768191,0.8183791420450981,0.01457282039896661,0.8557473130359627,0.16630377296957227,0.825831470701176,0.010000191358858813,0.8435406265062679,0.09730550692167428 -49015,0.3779077062707472,0.013780662431610528,0.154841038808088,0.16166681001682365,0.44174873526111313,0.9455986382561044,0.01457282039896661,0.9326562651996693,0.16630377296957227,0.9454125397341482,0.010000191358858813,0.9355688403872349,0.09730550692167428 -49017,0.4216197699143207,0.01701641278654836,0.17995617040086398,0.18379393926060283,0.44169345453191217,1.1674078218044124,0.01457282039896661,1.0799372722312457,0.16630377296957227,1.183232078208035,0.010000191358858813,1.125205866605477,0.09730550692167428 -49019,0.4170026862329932,0.015507544621708766,0.17503340210542734,0.17374311546250454,0.44169618145141687,1.0630837036339438,0.01457282039896661,1.050949184365008,0.16630377296957227,1.0664063188383457,0.010000191358858813,1.0722423397762557,0.09730550692167428 -49021,0.34037449678143616,0.010891392405755367,0.13309474626211154,0.14140426890072733,0.4417982941461174,0.7470922677433534,0.01457282039896661,0.8015474696890648,0.16630377296957227,0.7374471012539627,0.010000191358858813,0.7606254402503096,0.09730550692167428 -49023,0.3469394589976401,0.011450103490777654,0.1365102931082216,0.14548233682713446,0.4417933033780216,0.7849117592207038,0.01457282039896661,0.8242166036222749,0.16630377296957227,0.7721631564671787,0.010000191358858813,0.797262138808688,0.09730550692167428 -49025,0.45226144569612525,0.019459137278535852,0.19613876353590756,0.1975830132343977,0.4416487650305907,1.335027505739928,0.01457282039896661,1.1757170451644585,0.16630377296957227,1.3946770323717046,0.010000191358858813,1.2701166437776132,0.09730550692167428 -49027,0.3825436884496263,0.014907786083435341,0.15898172139465275,0.1682271626955748,0.44174278915720017,1.0234274539643984,0.01457282039896661,0.9566835679832657,0.16630377296957227,1.035904523118462,0.010000191358858813,0.9778441949242336,0.09730550692167428 -49029,0.36365922030855147,0.011911167946524949,0.1427935757370811,0.14697447777825584,0.4417761490133809,0.8171518081029256,0.01457282039896661,0.8605021732060856,0.16630377296957227,0.8264660790465105,0.010000191358858813,0.8553050626150989,0.09730550692167428 -49031,0.4141647061340727,0.020486095002962085,0.1851607692846701,0.207521651730107,0.4416893847941572,1.4054522290348592,0.01457282039896661,1.1101105222490346,0.16630377296957227,1.4430361442901354,0.010000191358858813,1.2062939165702775,0.09730550692167428 -49033,0.4044430285977496,0.016143334593871565,0.17249002448289388,0.18080704972098818,0.4417069652907176,1.1083468334192945,0.01457282039896661,1.0382112793485163,0.16630377296957227,1.0989513278421794,0.010000191358858813,1.0613826577922827,0.09730550692167428 -49035,0.3562805037598005,0.010597945366321098,0.1391280566075843,0.13976161452836605,0.4417787701753661,0.7264603618935953,0.01457282039896661,0.838076668504486,0.16630377296957227,0.7063080690422672,0.010000191358858813,0.7855579810454658,0.09730550692167428 -49037,0.3581822148842764,0.01245782958045603,0.1438999455165003,0.15277935204853466,0.4417744071482791,0.8546759819615259,0.01457282039896661,0.8677683952211632,0.16630377296957227,0.8456572066942867,0.010000191358858813,0.8509377205884223,0.09730550692167428 -49039,0.35483054947605214,0.012534206604244279,0.14148579498663597,0.15135849113138689,0.4417793459509535,0.8604709798004402,0.01457282039896661,0.8545644024181568,0.16630377296957227,0.8701566700350862,0.010000191358858813,0.846153641788296,0.09730550692167428 -49041,0.37751939937635043,0.014771982769581474,0.15705165708669905,0.16786000778919402,0.4417479252102911,1.0138827794542742,0.01457282039896661,0.9461748005481141,0.16630377296957227,1.0215147626678238,0.010000191358858813,0.9596016265245559,0.09730550692167428 -49043,0.381285740225364,0.010355337243716262,0.14764779030180009,0.13854284589332994,0.4417506379470575,0.7104434842577094,0.01457282039896661,0.8908418025004747,0.16630377296957227,0.6851408822447895,0.010000191358858813,0.8522929473776844,0.09730550692167428 -49045,0.3366187094817862,0.009027756949410683,0.12649965502373528,0.12874827461576016,0.44181302877097495,0.6196985747961318,0.01457282039896661,0.7634943542871799,0.16630377296957227,0.5927100376465659,0.010000191358858813,0.7014199019488838,0.09730550692167428 -49047,0.34984846912963763,0.010913499436075709,0.1366587394229991,0.1417561416575696,0.4417895625862879,0.7482769228434649,0.01457282039896661,0.824962432476219,0.16630377296957227,0.7329834268496215,0.010000191358858813,0.7838788047866081,0.09730550692167428 -49049,0.310585412565823,0.008122810300410005,0.11376948351661233,0.12224029410467438,0.44184320518571923,0.5577275499283653,0.01457282039896661,0.687679634717349,0.16630377296957227,0.5339467619003828,0.010000191358858813,0.608209232622227,0.09730550692167428 -49051,0.3550397661890059,0.010515455949434866,0.1369521012209119,0.13845107951956684,0.44178720611021,0.7219672427775188,0.01457282039896661,0.8254221110206746,0.16630377296957227,0.7103772957191767,0.010000191358858813,0.7887336125996971,0.09730550692167428 -49053,0.385755148305997,0.016592969820155234,0.1646920543433541,0.1790105390274196,0.4417369747398383,1.139183114527272,0.01457282039896661,0.9873509245580301,0.16630377296957227,1.1641238867275578,0.010000191358858813,1.0214926132979163,0.09730550692167428 -49055,0.40407332183531286,0.015363527326183717,0.16982528454574852,0.17424717680361596,0.4417173705884778,1.0550767165141144,0.01457282039896661,1.0192236754720327,0.16630377296957227,1.0432895807090725,0.010000191358858813,1.0373539960246265,0.09730550692167428 -49057,0.3620717300492319,0.011939172488719625,0.14450189414186182,0.1486916364860385,0.4417698362153234,0.8189465628140526,0.01457282039896661,0.8705755942196073,0.16630377296957227,0.8096855815915844,0.010000191358858813,0.8386886638735034,0.09730550692167428 -50001,0.41458387363652394,0.015390857921386964,0.17462453236871356,0.1737413024309562,0.441690558325222,1.0557993536177284,0.01457282039896661,1.050154553548157,0.16630377296957227,1.0504581868891898,0.010000191358858813,1.062099533478924,0.09730550692167428 -50003,0.44543088689118515,0.019707361770087785,0.19690608306591895,0.2011687280878287,0.44164190777177115,1.3525627150442607,0.01457282039896661,1.1819498347514836,0.16630377296957227,1.3863482203392474,0.010000191358858813,1.2551419161474238,0.09730550692167428 -50005,0.42429456798009696,0.01705793289465624,0.1831225491606298,0.18542603907691563,0.44167761443013737,1.169817422053761,0.01457282039896661,1.1000403719531795,0.16630377296957227,1.1683477405592766,0.010000191358858813,1.1302477893807474,0.09730550692167428 -50007,0.3940516773882462,0.013361859714654027,0.16170136744403113,0.15894209002766505,0.4417174313281822,0.915974996891296,0.01457282039896661,0.9743372873214924,0.16630377296957227,0.9050745318684444,0.010000191358858813,0.9521692430817993,0.09730550692167428 -50009,0.4628238266445616,0.019904841904151316,0.20220326637638766,0.20201021042663275,0.44162330042187614,1.366054720822805,0.01457282039896661,1.2149833889965467,0.16630377296957227,1.4134840251514698,0.010000191358858813,1.3061793558283052,0.09730550692167428 -50011,0.4041523506249378,0.01409053858876318,0.16656043107984903,0.163616482296144,0.44171231979593295,0.9665900135844442,0.01457282039896661,1.0035269931729345,0.16630377296957227,0.9623514352621106,0.010000191358858813,1.002708682276626,0.09730550692167428 -50013,0.44610977759435766,0.016226426022723374,0.1871412490574218,0.17908436985384674,0.44165088396029606,1.1120455950252541,0.01457282039896661,1.1225362273683113,0.16630377296957227,1.1236992546066271,0.010000191358858813,1.1676169710601205,0.09730550692167428 -50015,0.4122528114590054,0.014211479440490726,0.1693746927487938,0.16427866608901046,0.44170146200493077,0.9740329638877621,0.01457282039896661,1.0202934679601465,0.16630377296957227,0.9764489121576274,0.010000191358858813,1.0259000297601273,0.09730550692167428 -50017,0.4323122364646894,0.01656237763524783,0.1830517484228712,0.18045258233025435,0.44167148042464843,1.1355587436371284,0.01457282039896661,1.1005065821048428,0.16630377296957227,1.1502069568671336,0.010000191358858813,1.13734750052918,0.09730550692167428 -50019,0.4365326134906924,0.018304530612152634,0.19095100485449726,0.1935762613827629,0.44165505746332945,1.2561088237874476,0.01457282039896661,1.1467033804568736,0.16630377296957227,1.2653060409621768,0.010000191358858813,1.1944945615463438,0.09730550692167428 -50021,0.4375057158079931,0.01781521332690536,0.1895683876538563,0.1897726287375372,0.4416548487961627,1.2229179459189348,0.01457282039896661,1.1388816133949131,0.16630377296957227,1.23465949643054,0.010000191358858813,1.1841099945584905,0.09730550692167428 -50023,0.4257445381311394,0.01611383653503605,0.1806025216689135,0.17786441106536094,0.4416778824445934,1.1050293558484054,0.01457282039896661,1.0854833539577031,0.16630377296957227,1.1072665482414195,0.010000191358858813,1.1072743382388168,0.09730550692167428 -50025,0.439994937582765,0.01765962209775492,0.19002254177210331,0.18845294622987577,0.44165303927253013,1.211783161882491,0.01457282039896661,1.1413577445047318,0.16630377296957227,1.223093590173253,0.010000191358858813,1.1864434334669292,0.09730550692167428 -50027,0.4483365541554942,0.018998490493164717,0.19702694283965416,0.1973962027502571,0.4416371422559542,1.3044763275806355,0.01457282039896661,1.1829995724266995,0.16630377296957227,1.3228743963988565,0.010000191358858813,1.2421989142163303,0.09730550692167428 -51001,0.44544252405497814,0.019106399028797898,0.1939740573449021,0.196287357693957,0.44165424617212284,1.3113657877650113,0.01457282039896661,1.1639020336025778,0.16630377296957227,1.3535746252761074,0.010000191358858813,1.2393643341563876,0.09730550692167428 -51003,0.40319273206033934,0.015350564335643985,0.1699976641733636,0.1723433971749955,0.4417061028963257,1.0533519130094098,0.01457282039896661,1.021853605497777,0.16630377296957227,1.0560885506871363,0.010000191358858813,1.0322182087709577,0.09730550692167428 -51005,0.45209268203672814,0.02020801721681001,0.20085998593584858,0.20526206054966556,0.44163291429643536,1.3866641432177822,0.01457282039896661,1.2051824363382064,0.16630377296957227,1.4168375464006893,0.010000191358858813,1.2839396542567543,0.09730550692167428 -51007,0.43028500356953187,0.017177611929512532,0.18350037067682354,0.18419357627235775,0.44167669214806043,1.1785506545195412,0.01457282039896661,1.103781471950508,0.16630377296957227,1.2022689523517287,0.010000191358858813,1.1492379410108688,0.09730550692167428 -51009,0.43012886522214155,0.01754222791193641,0.18395965928856542,0.1861359637889052,0.4416738958628577,1.204013105840478,0.01457282039896661,1.1050737981532577,0.16630377296957227,1.2390911526905959,0.010000191358858813,1.1598109814033286,0.09730550692167428 -51011,0.43858611504680084,0.018036038532135333,0.18763989881393375,0.18828771209697873,0.44166832461989564,1.2377085988561367,0.01457282039896661,1.1280571540730033,0.16630377296957227,1.285263995552846,0.010000191358858813,1.195666363531197,0.09730550692167428 -51013,0.39233636873855926,0.011183659898104886,0.15593571615436191,0.14321768101176519,0.4417245808639111,0.7665596700722765,0.01457282039896661,0.9384315443073536,0.16630377296957227,0.7457710855081758,0.010000191358858813,0.8682768209268052,0.09730550692167428 -51015,0.4333854931372941,0.01693547801046228,0.1848658463915026,0.18280751617555555,0.4416675129214256,1.1618574168149656,0.01457282039896661,1.1117406131516838,0.16630377296957227,1.1774116900499028,0.010000191358858813,1.1490635523928208,0.09730550692167428 -51017,0.4857530409444153,0.022006912031754644,0.21573726830162132,0.21390621419117248,0.4415861488847151,1.510675069812089,0.01457282039896661,1.2984957581590373,0.16630377296957227,1.5856402755399195,0.010000191358858813,1.4181580993031166,0.09730550692167428 -51019,0.4380145787857501,0.01702352025059103,0.18556970710338555,0.18246040940256564,0.44166536023731207,1.1679481558893654,0.01457282039896661,1.1158180098382278,0.16630377296957227,1.1958296218940005,0.010000191358858813,1.1666394636590411,0.09730550692167428 -51021,0.4617921335913491,0.019053820900264744,0.19981138059062775,0.1947710150099524,0.4416251298213296,1.3069707806421609,0.01457282039896661,1.1996446632767122,0.16630377296957227,1.3579823291924233,0.010000191358858813,1.2746148803176491,0.09730550692167428 -51023,0.4444894039871885,0.01803483498369843,0.19024719150363095,0.18895861461560548,0.4416554499469012,1.2372833690473901,0.01457282039896661,1.1448397440950113,0.16630377296957227,1.2751291535609421,0.010000191358858813,1.2105689891316163,0.09730550692167428 -51025,0.4295299355580811,0.01756813260576207,0.1846717544880059,0.18552514199891262,0.4416717806002106,1.2059214003559093,0.01457282039896661,1.108273606285183,0.16630377296957227,1.2390064704109602,0.010000191358858813,1.1521609024934247,0.09730550692167428 -51027,0.44575367195261745,0.017599586980021658,0.18975405116854616,0.18562642008347338,0.44165368138870387,1.2072984459485658,0.01457282039896661,1.140777416404902,0.16630377296957227,1.2464984384423259,0.010000191358858813,1.1957975211706677,0.09730550692167428 -51029,0.4560095663676678,0.01629732531726612,0.19282033164866058,0.17827964124747964,0.4416319165917295,1.118098417832696,0.01457282039896661,1.1559398743699034,0.16630377296957227,1.1242134282828995,0.010000191358858813,1.1757318885614576,0.09730550692167428 -51031,0.4240440410552731,0.01683441600932238,0.18051925484331593,0.1811711485060168,0.44168149741994694,1.1549018087790497,0.01457282039896661,1.085148392812112,0.16630377296957227,1.1799964350824226,0.010000191358858813,1.1226202716713654,0.09730550692167428 -51033,0.4082516549564049,0.014498511416624603,0.16878608552625482,0.16669642698409382,0.4417082678200227,0.9948508411324084,0.01457282039896661,1.0150436639215394,0.16630377296957227,0.9947043951915704,0.010000191358858813,1.0216845217003725,0.09730550692167428 -51035,0.45940367284884576,0.02034297555413595,0.20160597417480153,0.203802005523088,0.4416292845269196,1.3965628299636355,0.01457282039896661,1.209573668311668,0.16630377296957227,1.4576046803329985,0.010000191358858813,1.3053872324623461,0.09730550692167428 -51036,0.4530558126396309,0.018069739941636628,0.19360565233138233,0.18895009140257163,0.44163902125348375,1.2392673298366783,0.01457282039896661,1.1650637809306295,0.16630377296957227,1.2792434670376696,0.010000191358858813,1.2333728090421046,0.09730550692167428 -51037,0.4328369047127729,0.018810084750813395,0.1900478553474842,0.19610440615411637,0.4416640936118768,1.2906819432614882,0.01457282039896661,1.1406244002016526,0.16630377296957227,1.311140415097011,0.010000191358858813,1.1992126810967814,0.09730550692167428 -51041,0.391526532034311,0.012357475743887358,0.1566303594829462,0.15207284150723782,0.4417313923526093,0.8478391659185495,0.01457282039896661,0.9451381454836709,0.16630377296957227,0.8356485644129108,0.010000191358858813,0.9271795847451758,0.09730550692167428 -51043,0.4416534948372789,0.017726487318732782,0.18921449009760077,0.18788304843116305,0.4416555448069526,1.2164600447564642,0.01457282039896661,1.1398299148658757,0.16630377296957227,1.241734524755357,0.010000191358858813,1.1941657818624414,0.09730550692167428 -51045,0.4316758239664329,0.01626688760795012,0.18312139283968878,0.18047544082399303,0.44167568506961086,1.1152848806964197,0.01457282039896661,1.0979049373845386,0.16630377296957227,1.1122000913713588,0.010000191358858813,1.1261077677228033,0.09730550692167428 -51047,0.39588154499376615,0.013254671128909495,0.16104081192461095,0.15833789531205567,0.44172686452753873,0.910004287326947,0.01457282039896661,0.9699603306848079,0.16630377296957227,0.8997259149495087,0.010000191358858813,0.9576515760718786,0.09730550692167428 -51049,0.42568054777620384,0.01760717624050124,0.18306416855203128,0.18700997639371209,0.44168122628786494,1.2076224870576115,0.01457282039896661,1.0995038349367645,0.16630377296957227,1.2334248136872736,0.010000191358858813,1.1474673292947295,0.09730550692167428 -51051,0.43953722929966543,0.018247051109786482,0.190413970041112,0.19064656422455017,0.4416553700441317,1.2529027365279812,0.01457282039896661,1.1442403588078625,0.16630377296957227,1.2847845891740182,0.010000191358858813,1.20151178350039,0.09730550692167428 -51053,0.4167122408550512,0.014899117001783646,0.17222122306852178,0.1681421703982614,0.4416984479503252,1.020961014668211,0.01457282039896661,1.03598725730597,0.16630377296957227,1.0342142540752781,0.010000191358858813,1.054870221331122,0.09730550692167428 -51057,0.4425980067913331,0.018642331883392933,0.19293523972021226,0.1957418247089886,0.4416498665356642,1.2790819608631807,0.01457282039896661,1.1596700223435108,0.16630377296957227,1.2971991100382128,0.010000191358858813,1.2202189162169002,0.09730550692167428 -51059,0.396322268360058,0.012322422272230136,0.15878283159927747,0.1517876609955126,0.44172539783185216,0.8455692315612869,0.01457282039896661,0.9581378591123899,0.16630377296957227,0.8307931045190611,0.010000191358858813,0.9329712684150858,0.09730550692167428 -51061,0.40829778365679464,0.014372988358942448,0.1686369637122488,0.16597487656952006,0.44170561362110694,0.9859067424349163,0.01457282039896661,1.015846425117271,0.16630377296957227,0.9818433486870104,0.010000191358858813,1.0246520244666906,0.09730550692167428 -51063,0.44317294353156655,0.018628689647323084,0.19268683693680333,0.19400626234362417,0.4416532971295192,1.2779497073758237,0.01457282039896661,1.1573172750480016,0.16630377296957227,1.3066922197191801,0.010000191358858813,1.2191368216604204,0.09730550692167428 -51065,0.42717645885879163,0.016354631677690676,0.1794158835969049,0.17687938084712543,0.44168746305954026,1.1220758588724105,0.01457282039896661,1.079206099022997,0.16630377296957227,1.154060661288856,0.010000191358858813,1.1173926034809183,0.09730550692167428 -51067,0.4429313211144883,0.01825423718470707,0.1905362444145468,0.19091549400714428,0.4416554802904967,1.253054208272567,0.01457282039896661,1.1446734345851757,0.16630377296957227,1.2908242752206325,0.010000191358858813,1.2105477981268242,0.09730550692167428 -51069,0.40285505069900396,0.013982947628196282,0.1649501527945677,0.1623714338280472,0.4417157016026937,0.9597736047490645,0.01457282039896661,0.9955124689752632,0.16630377296957227,0.9621984471320373,0.010000191358858813,0.9962266213866345,0.09730550692167428 -51071,0.4404151616828381,0.018721064943163404,0.19166249496787682,0.19437955912016106,0.4416566263016486,1.2848479152054324,0.01457282039896661,1.1498927711588443,0.16630377296957227,1.3185097539871347,0.010000191358858813,1.2137287215726527,0.09730550692167428 -51073,0.4254739288633468,0.01583276995094419,0.1782414851364141,0.17482921471494756,0.4416814414255119,1.0851666905798971,0.01457282039896661,1.073204307117288,0.16630377296957227,1.1010970271470568,0.010000191358858813,1.1026699183765674,0.09730550692167428 -51075,0.4520065395200375,0.017158097945344432,0.19126869230617008,0.1827762667289881,0.4416445145238873,1.1770983093427274,0.01457282039896661,1.1517567204763872,0.16630377296957227,1.2059040382834467,0.010000191358858813,1.1982821183873735,0.09730550692167428 -51077,0.46415161421727014,0.021541208045988806,0.20795482002690535,0.21347675956798573,0.44161539679193734,1.4785372852427352,0.01457282039896661,1.2477118292624951,0.16630377296957227,1.525858605732859,0.010000191358858813,1.344739607320447,0.09730550692167428 -51079,0.40652783928310254,0.013957083737381734,0.16531187346744988,0.16123330533200098,0.44171583209302145,0.9579175661102902,0.01457282039896661,0.9980521325117204,0.16630377296957227,0.9713956237977633,0.010000191358858813,1.0069544431251103,0.09730550692167428 -51081,0.42456790919283593,0.014597502988529396,0.17533024743454467,0.1655311717282414,0.44167842661503887,1.001271590833074,0.01457282039896661,1.0564146028356323,0.16630377296957227,1.0118397246058342,0.010000191358858813,1.057890110375471,0.09730550692167428 -51083,0.4445083383452173,0.019822830145283944,0.19610097185850922,0.20148343041691424,0.441648989761002,1.3612578105503517,0.01457282039896661,1.1766808175709418,0.16630377296957227,1.4026934937144637,0.010000191358858813,1.2564819883749079,0.09730550692167428 -51085,0.4091527338606282,0.01446019317537214,0.16902250978804095,0.16635163485477922,0.44170421239157887,0.9919866481863773,0.01457282039896661,1.0179036435906972,0.16630377296957227,0.9916306720063015,0.010000191358858813,1.029385102835361,0.09730550692167428 -51087,0.3987941397449898,0.014239735516185785,0.1659691930989754,0.1651576128299626,0.44171475201806076,0.9773407958970775,0.01457282039896661,0.9985476744403822,0.16630377296957227,0.9674222222823421,0.010000191358858813,0.9872670756443747,0.09730550692167428 -51089,0.4474732421523617,0.01944063403009213,0.19614589223689916,0.19941514455519904,0.4416439486052252,1.3345072827965212,0.01457282039896661,1.1771966657543662,0.16630377296957227,1.371829459732401,0.010000191358858813,1.250041895638677,0.09730550692167428 -51091,0.5197442721068413,0.02440267944883697,0.23427331125121847,0.23321335451352848,0.4415278239930141,1.675379961082848,0.01457282039896661,1.4096417582530114,0.16630377296957227,1.749125971849844,0.010000191358858813,1.5660819127112344,0.09730550692167428 -51093,0.4298171467701897,0.016249453085135916,0.181608361332657,0.17868341618786726,0.4416783458705732,1.1144646357942891,0.01457282039896661,1.0916675541799097,0.16630377296957227,1.1219574253812674,0.010000191358858813,1.1223002180723638,0.09730550692167428 -51095,0.447815124139068,0.020038364381521984,0.19809103196874342,0.20390926871703066,0.44164162235465976,1.3753799430676574,0.01457282039896661,1.1892579668296108,0.16630377296957227,1.411991390026012,0.010000191358858813,1.2685807392031152,0.09730550692167428 -51097,0.4419249662125017,0.01881593965777415,0.190842429226217,0.1930199861477126,0.4416563775064886,1.2912700994495938,0.01457282039896661,1.1448231726732883,0.16630377296957227,1.3495394093344442,0.010000191358858813,1.2237079882026074,0.09730550692167428 -51099,0.385406271653614,0.012169649307261231,0.152709349654507,0.14929305210823965,0.4417439247964677,0.8352868417799266,0.01457282039896661,0.9217443923256777,0.16630377296957227,0.8363287478486983,0.010000191358858813,0.9055680261368146,0.09730550692167428 -51101,0.40870778053649465,0.014273189245024215,0.16760867694317397,0.16430790049200097,0.44170983415139986,0.9795084084783474,0.01457282039896661,1.009903708868857,0.16630377296957227,0.9857101758457293,0.010000191358858813,1.021562182016281,0.09730550692167428 -51103,0.51159351820024,0.029719690085651316,0.24769424386346953,0.2712774531359585,0.4415306908249822,2.0395142027667656,0.01457282039896661,1.4874876574741047,0.16630377296957227,2.112918179601703,0.010000191358858813,1.6749091365057294,0.09730550692167428 -51105,0.43428406810190234,0.01759240282448074,0.18642351825707854,0.18575046675103984,0.44166887574413805,1.2071303876480133,0.01457282039896661,1.118447732023074,0.16630377296957227,1.2391640144461635,0.010000191358858813,1.1666768611159202,0.09730550692167428 -51107,0.3607658548730155,0.008921685607600975,0.13634726496883576,0.12801012154009803,0.44177907889521467,0.6124391476894588,0.01457282039896661,0.8246898561021403,0.16630377296957227,0.5800910972709883,0.010000191358858813,0.7541449826219323,0.09730550692167428 -51109,0.43083010291941115,0.016031656380002982,0.1799817447082389,0.17512130394961678,0.4416824822830451,1.0990331197835883,0.01457282039896661,1.0811799969193312,0.16630377296957227,1.1262363655221266,0.010000191358858813,1.1184156799542082,0.09730550692167428 -51111,0.4419960399481433,0.018245694881104595,0.19170245771654387,0.19032897324148246,0.4416537315515904,1.2525846891855752,0.01457282039896661,1.1503247638587477,0.16630377296957227,1.2848640517139462,0.010000191358858813,1.2052198772181884,0.09730550692167428 -51113,0.4365731543950052,0.01811315186143206,0.19039901562523281,0.19288517310528627,0.4416614874063018,1.2424830909315292,0.01457282039896661,1.1434322093546432,0.16630377296957227,1.2453637794029777,0.010000191358858813,1.1908867317361786,0.09730550692167428 -51115,0.4876961900743243,0.02460587995712959,0.2231538447534036,0.23244300949927982,0.4415774826868223,1.6889113703892056,0.01457282039896661,1.339344017014835,0.16630377296957227,1.7739940801924352,0.010000191358858813,1.4907635820372591,0.09730550692167428 -51117,0.45558891524551115,0.020596581798648133,0.2027359389289564,0.20683193360037783,0.441629340579642,1.4143641183821083,0.01457282039896661,1.2167361373836958,0.16630377296957227,1.4567766937278406,0.010000191358858813,1.3004287448839604,0.09730550692167428 -51119,0.501909253002508,0.02430237950900775,0.2268089005966454,0.2310451445281595,0.4415603390744168,1.6693570335625108,0.01457282039896661,1.3621664150277881,0.16630377296957227,1.754802153700258,0.010000191358858813,1.520607081834,0.09730550692167428 -51121,0.3511542337952921,0.01102155637762909,0.1386597809096326,0.14263247931074208,0.4417680320728516,0.7557649561950626,0.01457282039896661,0.8370344207862868,0.16630377296957227,0.7412324287692778,0.010000191358858813,0.7815687250021904,0.09730550692167428 -51125,0.465394032363284,0.020925991657340957,0.20724603561556168,0.21078354024599316,0.441610624149349,1.437162192188279,0.01457282039896661,1.2446848758782065,0.16630377296957227,1.4721235623802027,0.010000191358858813,1.3357126890443798,0.09730550692167428 -51127,0.4272690187539946,0.01421723579704592,0.17401265336560076,0.16355569684290167,0.4416863344570582,0.9734020430173411,0.01457282039896661,1.0486561689339196,0.16630377296957227,0.9844789262433936,0.010000191358858813,1.0681853061022641,0.09730550692167428 -51131,0.4582389527695828,0.02195610129590561,0.20746395625037067,0.21796161328211539,0.441625404523765,1.506223829612361,0.01457282039896661,1.245141920398998,0.16630377296957227,1.5406091058739184,0.010000191358858813,1.3416450369394386,0.09730550692167428 -51133,0.5173623603932513,0.027819618522866116,0.23907770009103319,0.25086919789408746,0.4415448267933544,1.9086639556909644,0.01457282039896661,1.4323737672645773,0.16630377296957227,2.052728982624871,0.010000191358858813,1.6530585387396604,0.09730550692167428 -51135,0.4314074415366155,0.017810634901003576,0.1868929809354581,0.188079672604345,0.44166352873608605,1.2225938698764032,0.01457282039896661,1.1234418013255354,0.16630377296957227,1.2444556939909353,0.010000191358858813,1.1634358529048794,0.09730550692167428 -51137,0.43749955987414024,0.01862895500885319,0.18927599392707656,0.19222118981851977,0.4416659324157236,1.2777953932887773,0.01457282039896661,1.1358640965437465,0.16630377296957227,1.325221628378005,0.010000191358858813,1.2042121800348249,0.09730550692167428 -51139,0.4357593383589652,0.018228607150566754,0.18867779189280254,0.1909533884538938,0.4416632700561798,1.250795208319317,0.01457282039896661,1.1329230992816341,0.16630377296957227,1.2823560294102283,0.010000191358858813,1.18926839280516,0.09730550692167428 -51141,0.4611645017697825,0.020867607608658474,0.20459556808996446,0.20869010213260208,0.4416216845674134,1.4328323077585385,0.01457282039896661,1.227466967088661,0.16630377296957227,1.482581659194834,0.010000191358858813,1.324034325570706,0.09730550692167428 -51143,0.44015249706477133,0.017886398644715282,0.189377263690884,0.18901008762048932,0.44165884553491863,1.2274623865653953,0.01457282039896661,1.138031594867793,0.16630377296957227,1.2535264717138577,0.010000191358858813,1.1928037889974168,0.09730550692167428 -51145,0.4234805429873844,0.013891380782696014,0.17161639746168703,0.16073502191109812,0.4416941533859744,0.9518889609588813,0.01457282039896661,1.0354677791556717,0.16630377296957227,0.9639571737435496,0.010000191358858813,1.0434207403489468,0.09730550692167428 -51147,0.38194571644078024,0.014908677501828626,0.16096475434720753,0.17014126841926103,0.44172513965471505,1.022934557545868,0.01457282039896661,0.9701386596840056,0.16630377296957227,1.0211825306950617,0.010000191358858813,0.9673822439216744,0.09730550692167428 -51149,0.38961194763069407,0.012094949399358193,0.15531038245932655,0.150079857403005,0.4417299946932753,0.8296950057633297,0.01457282039896661,0.9367500307163953,0.16630377296957227,0.8177572806485001,0.010000191358858813,0.913174363485802,0.09730550692167428 -51153,0.3619967680771137,0.009176707220217607,0.13704498396469844,0.12986081089619417,0.4417759485207262,0.6301005663429995,0.01457282039896661,0.8284122046855504,0.16630377296957227,0.6037436551592501,0.010000191358858813,0.7663705774071594,0.09730550692167428 -51155,0.44948572955892885,0.01846416737461668,0.1942659213318081,0.1922428309878622,0.4416428753364848,1.2674042743592098,0.01457282039896661,1.1661718848548737,0.16630377296957227,1.3024271274106982,0.010000191358858813,1.2294899121168765,0.09730550692167428 -51157,0.4615446430952539,0.019961606303580213,0.20266665591805352,0.20237275796445447,0.44161956989325957,1.370146805852848,0.01457282039896661,1.2191721902686192,0.16630377296957227,1.4117248807516125,0.010000191358858813,1.3065402070533043,0.09730550692167428 -51159,0.45020223775996865,0.018774232613220025,0.19562415773273592,0.1928374520008777,0.4416355544035866,1.290035855127677,0.01457282039896661,1.1767190378757382,0.16630377296957227,1.3314392660324867,0.010000191358858813,1.2303231387844353,0.09730550692167428 -51161,0.4349803837769396,0.018234307735839853,0.1901080448924775,0.19261122714196083,0.4416587263375268,1.2511893449840263,0.01457282039896661,1.1406817197037653,0.16630377296957227,1.2625107090487386,0.010000191358858813,1.1871403848869309,0.09730550692167428 -51163,0.4567675198681433,0.02022964942910825,0.20193017629833765,0.20429549037388814,0.44163137042119116,1.388456664461027,0.01457282039896661,1.2114798094694499,0.16630377296957227,1.4296932609301378,0.010000191358858813,1.2954752584832139,0.09730550692167428 -51165,0.41700588297670144,0.016778382702179045,0.17845998564190704,0.1813360732794415,0.4416915779349919,1.150596214085736,0.01457282039896661,1.0709885634493033,0.16630377296957227,1.1664793320486504,0.010000191358858813,1.10364398649878,0.09730550692167428 -51167,0.4378064708532339,0.017578208002902163,0.1884346140160073,0.1872626843808604,0.4416616476279301,1.206452840344843,0.01457282039896661,1.1308061760496504,0.16630377296957227,1.223971778621192,0.010000191358858813,1.1755849517804442,0.09730550692167428 -51169,0.45329232574349854,0.020325141201457675,0.20128878230103264,0.20491076450731743,0.44163115925892604,1.395607148523723,0.01457282039896661,1.207580095545394,0.16630377296957227,1.4376180608396765,0.010000191358858813,1.2874319293261216,0.09730550692167428 -51171,0.440223420270747,0.019155399868700136,0.19308614825558723,0.19728193511927597,0.4416550630575257,1.3145973277142158,0.01457282039896661,1.1584127673937339,0.16630377296957227,1.3488975976951034,0.010000191358858813,1.2259152315594082,0.09730550692167428 -51173,0.4403584566081723,0.019040502758565985,0.19217247175804003,0.19564754563117942,0.4416588704660258,1.3068203334696977,0.01457282039896661,1.152597511249488,0.16630377296957227,1.3490707324999254,0.010000191358858813,1.2218976493670024,0.09730550692167428 -51175,0.4359896728373479,0.016786869772430418,0.18467570114510995,0.1813327593271885,0.4416691178935532,1.1513847086905007,0.01457282039896661,1.1092477114516042,0.16630377296957227,1.173344260871306,0.010000191358858813,1.150388834337345,0.09730550692167428 -51177,0.3790272029135501,0.01159938139242594,0.14984774159311628,0.146683759846717,0.44174762751812235,0.7954621841085702,0.01457282039896661,0.9059834169274188,0.16630377296957227,0.7799318431918517,0.010000191358858813,0.8753033133110268,0.09730550692167428 -51179,0.3644664359192812,0.009603706027589486,0.13910955315301912,0.1329267551954954,0.4417674999862333,0.6586601397149259,0.01457282039896661,0.8426130628023724,0.16630377296957227,0.6340002136217621,0.010000191358858813,0.7872926916145241,0.09730550692167428 -51181,0.42914959583018064,0.016755261214430252,0.18384357990587818,0.1838331428697646,0.4416702246492152,1.149754540537668,0.01457282039896661,1.104379887363336,0.16630377296957227,1.1470812087151425,0.010000191358858813,1.1363069893318074,0.09730550692167428 -51183,0.4277407648449472,0.01660248458393046,0.18205675808650668,0.17916213318480279,0.4416705724745786,1.1397988191175403,0.01457282039896661,1.094555045927284,0.16630377296957227,1.1654685013792918,0.010000191358858813,1.1208036001050248,0.09730550692167428 -51185,0.44412509251604404,0.018651550196673944,0.19317580031128567,0.1940533272781206,0.4416513737045491,1.2805960275286337,0.01457282039896661,1.1594612037969285,0.16630377296957227,1.3112705827597417,0.010000191358858813,1.2214721408466316,0.09730550692167428 -51187,0.4060455946446739,0.014578951928792248,0.16876900070912715,0.16682146304208123,0.44170634475193704,0.9999261607173442,0.01457282039896661,1.015991831746288,0.16630377296957227,0.9988007131475272,0.010000191358858813,1.0186840754504942,0.09730550692167428 -51191,0.4469612359000509,0.018704219626294365,0.19314596806809575,0.19281899617907028,0.4416499923005509,1.2835860594870252,0.01457282039896661,1.1590668482426847,0.16630377296957227,1.3312933753712552,0.010000191358858813,1.2299575335644406,0.09730550692167428 -51193,0.4601298480224512,0.02089160181807994,0.2039739212799516,0.2092929348229856,0.4416239396639197,1.4340863804342123,0.01457282039896661,1.225523422668416,0.16630377296957227,1.4832583952772531,0.010000191358858813,1.324627780693532,0.09730550692167428 -51195,0.4197772179622543,0.015784188864356404,0.17656428442088917,0.17446021305726334,0.4416890283930997,1.083363621970547,0.01457282039896661,1.061509503988192,0.16630377296957227,1.0974427039262866,0.010000191358858813,1.0810509335930707,0.09730550692167428 -51197,0.43821241013493717,0.017942094784985974,0.18951304709317063,0.18985499629284658,0.4416630943905192,1.2307538348245983,0.01457282039896661,1.137435839720139,0.16630377296957227,1.2492155819984712,0.010000191358858813,1.1872110376823595,0.09730550692167428 -51199,0.40000896205768965,0.01374669410458513,0.1630574454970525,0.16094593263432544,0.441718160320753,0.9430377994408551,0.01457282039896661,0.9863269530481196,0.16630377296957227,0.9447753300577146,0.010000191358858813,0.9891831276768139,0.09730550692167428 -51510,0.40357412543939875,0.011919683927723607,0.1619319862645392,0.14860421481251168,0.44171471972797116,0.8170651320387623,0.01457282039896661,0.9728003989026655,0.16630377296957227,0.797039781526973,0.010000191358858813,0.9184381436758624,0.09730550692167428 -51515,0.4218581894407799,0.018039840063357855,0.18555359326558632,0.19183157156761693,0.4416745392022695,1.237459445030272,0.01457282039896661,1.1133608045733308,0.16630377296957227,1.240384837243898,0.010000191358858813,1.1503185967545457,0.09730550692167428 -51520,0.43690467960846413,0.019665519316699617,0.1938188866540458,0.19979329663487788,0.44165572446085394,1.3492557922104185,0.01457282039896661,1.1624239141487545,0.16630377296957227,1.3856252234063307,0.010000191358858813,1.2233425984339403,0.09730550692167428 -51530,0.4156150811950913,0.01734338764401735,0.17932513872482736,0.18570213307692116,0.4416932379965648,1.189404873495795,0.01457282039896661,1.0767217526147517,0.16630377296957227,1.2055460429851061,0.010000191358858813,1.1122401370969062,0.09730550692167428 -51540,0.35924998731184016,0.011243582549361825,0.14270563083676746,0.1441904316435242,0.4417576221243012,0.7709197314902554,0.01457282039896661,0.8633387489747448,0.16630377296957227,0.7548775025799696,0.010000191358858813,0.7994435946823306,0.09730550692167428 -51550,0.38790211993609613,0.012471974312522296,0.1557746633542662,0.15251493770298624,0.4417333955702214,0.8555413263103864,0.01457282039896661,0.941315439539725,0.16630377296957227,0.8451279709424699,0.010000191358858813,0.9196314272022652,0.09730550692167428 -51570,0.4319966182802346,0.01973747869412297,0.1927936799180661,0.20222125073999542,0.4416591149414589,1.3538143029527347,0.01457282039896661,1.1577367174547681,0.16630377296957227,1.3772001777286325,0.010000191358858813,1.215492722535494,0.09730550692167428 -51580,0.4359300148824039,0.01880116937605497,0.19160022756757805,0.1967456787008358,0.44165712441027766,1.2903261552442264,0.01457282039896661,1.1497727529380422,0.16630377296957227,1.305456250581874,0.010000191358858813,1.2059201612894663,0.09730550692167428 -51590,0.4361430991411347,0.02027138607031457,0.19589966519217522,0.20603630265104528,0.44165149158616623,1.3905883589371093,0.01457282039896661,1.1764424872117527,0.16630377296957227,1.4140693287479338,0.010000191358858813,1.2411954043434883,0.09730550692167428 -51595,0.4121842910443757,0.018157026562342866,0.1829748056455614,0.1949297174637006,0.44168882215106486,1.2457750957546105,0.01457282039896661,1.100002528967555,0.16630377296957227,1.2263536981288428,0.010000191358858813,1.1193606994163257,0.09730550692167428 -51600,0.4171728722032625,0.015455181545597624,0.17675156621094007,0.17374944011556945,0.44168654730798357,1.0602278129228373,0.01457282039896661,1.0620311635148432,0.16630377296957227,1.0516849076321617,0.010000191358858813,1.0615869467769858,0.09730550692167428 -51610,0.4096462530158317,0.014306437447693866,0.16954056000292006,0.1653990601676939,0.44170317806608406,0.9806138100690346,0.01457282039896661,1.0223549587649279,0.16630377296957227,0.9742312476678301,0.010000191358858813,1.0226243826158683,0.09730550692167428 -51620,0.4170608273447694,0.0183197829829611,0.1836836166203155,0.1930664294862668,0.4416845387452095,1.2566408467043082,0.01457282039896661,1.101741972383817,0.16630377296957227,1.2659025577756626,0.010000191358858813,1.1433071601625149,0.09730550692167428 -51630,0.36237388062814213,0.012425178377379676,0.14724026987429611,0.15278290632558728,0.44175676281462634,0.8531832147830565,0.01457282039896661,0.8862458561106739,0.16630377296957227,0.839559008621775,0.010000191358858813,0.8488686760108595,0.09730550692167428 -51640,0.4625479718087586,0.024925585090292076,0.22016707132008756,0.2383169483634112,0.4415938433483473,1.7107803998174393,0.01457282039896661,1.3204095924631747,0.16630377296957227,1.7428815233565436,0.010000191358858813,1.4114501004761473,0.09730550692167428 -51650,0.39185884804781457,0.01348520327114114,0.1602370239612455,0.1589582575916178,0.4417255284043261,0.9251306888645963,0.01457282039896661,0.9653038418726754,0.16630377296957227,0.9251456767336518,0.010000191358858813,0.9522720099688661,0.09730550692167428 -51660,0.3195666917184794,0.00962467173066157,0.1242361588479422,0.13401065198845424,0.44180040476155336,0.6605731424866297,0.01457282039896661,0.7503905068494505,0.16630377296957227,0.629833934524133,0.010000191358858813,0.6652943234952458,0.09730550692167428 -51670,0.40014591483215933,0.015768307530020342,0.16939118076644677,0.17405174069771429,0.4417126722049384,1.0813957436209432,0.01457282039896661,1.0186024252614474,0.16630377296957227,1.0951270993996371,0.010000191358858813,1.0337253302423315,0.09730550692167428 -51678,0.34428222572562206,0.014961534288587658,0.14578885971369837,0.1700031628241908,0.4417621185976248,1.0272752011384232,0.01457282039896661,0.8855362109901848,0.16630377296957227,1.0336024514366307,0.010000191358858813,0.8708374036036333,0.09730550692167428 -51680,0.38334121000054405,0.015254568100662435,0.16323787311242646,0.17239743677364328,0.4417234560059986,1.0475237416615168,0.01457282039896661,0.9820925161993896,0.16630377296957227,1.0425339002697798,0.010000191358858813,0.9743353332641773,0.09730550692167428 -51683,0.3610867496624661,0.00943660094957407,0.13829987726254023,0.13283086621916174,0.44177327823106005,0.6475724054125723,0.01457282039896661,0.8354405212686706,0.16630377296957227,0.6110111369671885,0.010000191358858813,0.7693550663899382,0.09730550692167428 -51685,0.3466962257968178,0.00786190134670084,0.12712439370808015,0.11922869792503993,0.4418024850756335,0.5403510422754351,0.01457282039896661,0.7695744417592023,0.16630377296957227,0.5222856379409124,0.010000191358858813,0.6852833721619759,0.09730550692167428 -51690,0.4422718851634173,0.02029825540863686,0.19799988853244205,0.2055305254768231,0.4416463252163657,1.3926478850530122,0.01457282039896661,1.187037954125419,0.16630377296957227,1.4234135787067674,0.010000191358858813,1.2591779016361606,0.09730550692167428 -51700,0.374086179345379,0.012213754626363545,0.1501613225840912,0.1505678890267625,0.4417502435872416,0.8376092416314079,0.01457282039896661,0.9043320852077236,0.16630377296957227,0.8286436605852295,0.010000191358858813,0.872882228352162,0.09730550692167428 -51710,0.3640060785433069,0.011409558830000567,0.14528437528328658,0.1450925439057631,0.44175960572857564,0.7827846901308538,0.01457282039896661,0.8740068186446831,0.16630377296957227,0.766596435758804,0.010000191358858813,0.819197021163053,0.09730550692167428 -51720,0.4148537775291622,0.01679588735838099,0.17839670711549271,0.18005485060920834,0.4416848744886867,1.1522791617094748,0.01457282039896661,1.0732505546286903,0.16630377296957227,1.1713050171155661,0.010000191358858813,1.0941540792822004,0.09730550692167428 -51730,0.41454740596541473,0.016168969301585977,0.17663627688557726,0.17742569396075908,0.44169093956333183,1.1093651929860844,0.01457282039896661,1.0615095777474326,0.16630377296957227,1.1187970793026245,0.010000191358858813,1.0800370163257833,0.09730550692167428 -51735,0.42705977676769696,0.01673100785923081,0.18012110622298697,0.18034452165296164,0.44168133532382076,1.1479911273629209,0.01457282039896661,1.0846503003880965,0.16630377296957227,1.1803831711934865,0.010000191358858813,1.1346153409424966,0.09730550692167428 -51740,0.395061609442023,0.014660513155739945,0.16533759666295306,0.16765920066077517,0.44172041959027863,1.006231815656508,0.01457282039896661,0.9937835377845712,0.16630377296957227,1.002898077519554,0.010000191358858813,0.9886902029040314,0.09730550692167428 -51750,0.3141261101769504,0.009728344875670453,0.12124862274601517,0.13388725604068588,0.4418049689596222,0.6673913050132888,0.01457282039896661,0.7321772589319966,0.16630377296957227,0.6502476216117064,0.010000191358858813,0.6641924232950444,0.09730550692167428 -51760,0.3836600570994516,0.013204074594523217,0.15780048695150628,0.15773276707218636,0.44173183036367425,0.9056087096614835,0.01457282039896661,0.9478020519327444,0.16630377296957227,0.8943830677928737,0.010000191358858813,0.9170968090642532,0.09730550692167428 -51770,0.4154628044977738,0.01630810653734178,0.17814559865985266,0.17945664259892294,0.4416900846153513,1.1186780620783745,0.01457282039896661,1.0689291361306252,0.16630377296957227,1.1158622042221151,0.010000191358858813,1.0794467525473983,0.09730550692167428 -51775,0.42561156340485445,0.01822618244620322,0.18460036180256428,0.1906607380380384,0.4416751806549831,1.2509493719725033,0.01457282039896661,1.109140910679229,0.16630377296957227,1.285080336777232,0.010000191358858813,1.1638561769939963,0.09730550692167428 -51790,0.440085218425022,0.01954778683913894,0.19570911543643113,0.2014461249955042,0.4416463808863887,1.341418293830189,0.01457282039896661,1.175018011806042,0.16630377296957227,1.3592250497817862,0.010000191358858813,1.2301140985625292,0.09730550692167428 -51800,0.39554385540125425,0.01320276850221017,0.16032867555686417,0.15733225719813673,0.441726545109671,0.9059479571020159,0.01457282039896661,0.967588083813017,0.16630377296957227,0.899994773574103,0.010000191358858813,0.9562624369750296,0.09730550692167428 -51810,0.38549491591281737,0.01241217860675116,0.15463598496313202,0.15166914084463962,0.44173689144530093,0.851546785209922,0.01457282039896661,0.932786012185641,0.16630377296957227,0.8454039962765784,0.010000191358858813,0.9053134714133914,0.09730550692167428 -51820,0.4169132741449071,0.017599785595122146,0.18181922286108193,0.18862130535456018,0.4416834224255767,1.207566221658024,0.01457282039896661,1.0919879546726632,0.16630377296957227,1.2119025357448663,0.010000191358858813,1.1178584682892245,0.09730550692167428 -51830,0.35242449853747304,0.014070205478117218,0.14576268934627362,0.16230442342697576,0.44175415452217837,0.9652053736170543,0.01457282039896661,0.8870422875596189,0.16630377296957227,0.9830927140702197,0.010000191358858813,0.8734868162900157,0.09730550692167428 -51840,0.40294147920942247,0.01523872465295148,0.16983714747287149,0.17078886206751775,0.44170826877965674,1.0456817013915338,0.01457282039896661,1.0202267339151116,0.16630377296957227,1.0520433696268543,0.010000191358858813,1.021982447144031,0.09730550692167428 -53001,0.35300210073992744,0.011891227834163296,0.14107353176405918,0.14911685309808947,0.44178129522436815,0.8157080159475532,0.01457282039896661,0.8505447263612911,0.16630377296957227,0.7969138801681352,0.010000191358858813,0.8200767643391449,0.09730550692167428 -53003,0.4395048128206944,0.01959158585709545,0.19425702722216115,0.20057534944574432,0.4416542026802879,1.3444943392189765,0.01457282039896661,1.1663671017116912,0.16630377296957227,1.3755845209208717,0.010000191358858813,1.2343238115342254,0.09730550692167428 -53005,0.3911066791884392,0.013723237293545573,0.16030302847604327,0.1612977076577902,0.441730435374743,0.9420396804351312,0.01457282039896661,0.9651351693400441,0.16630377296957227,0.9387986318502636,0.010000191358858813,0.9619205412992461,0.09730550692167428 -53007,0.41354732376701697,0.0170152504801476,0.17831736311159357,0.18409251214652853,0.44169415920172794,1.1667601475036142,0.01457282039896661,1.0705617193563546,0.16630377296957227,1.1743680521393767,0.010000191358858813,1.1041041044729651,0.09730550692167428 -53009,0.4747461665558613,0.023564111310124952,0.21784608461116176,0.22829186324189518,0.44159126685456723,1.6176818409785927,0.01457282039896661,1.3082837766192201,0.16630377296957227,1.6641874570026685,0.010000191358858813,1.4248424851756956,0.09730550692167428 -53011,0.3909827272114825,0.013243980545809598,0.1592341561979922,0.1581997197632395,0.4417305896352829,0.9089133303929555,0.01457282039896661,0.9586675074655077,0.16630377296957227,0.9000060690462519,0.010000191358858813,0.946814573324098,0.09730550692167428 -53013,0.46505297171971477,0.02203791112852925,0.210386166081768,0.21856402322917987,0.44160389485825324,1.5133200484834504,0.01457282039896661,1.2638848960266116,0.16630377296957227,1.549601453692037,0.010000191358858813,1.3626973862249758,0.09730550692167428 -53015,0.4166930291253741,0.01645047159121322,0.17751033670623806,0.17993029456181764,0.4416939752091582,1.1284781639653976,0.01457282039896661,1.0655780292179318,0.16630377296957227,1.1379790855373997,0.010000191358858813,1.095670038595887,0.09730550692167428 -53017,0.3990687261871488,0.015025472765448921,0.16621440818245303,0.16991514042349287,0.4417209394036142,1.031915639755315,0.01457282039896661,0.9981716161850374,0.16630377296957227,1.0396057424349436,0.010000191358858813,1.0149856554262038,0.09730550692167428 -53019,0.44734244234177367,0.019405303265350712,0.1944034874100296,0.19845086187865088,0.4416539205145412,1.3315828151920934,0.01457282039896661,1.1665698370435824,0.16630377296957227,1.3805986015220124,0.010000191358858813,1.260615869330964,0.09730550692167428 -53021,0.33773651690928663,0.00959944008487796,0.12817599379623207,0.13228002680738427,0.4418101838188593,0.6587600956783999,0.01457282039896661,0.7744052404747922,0.16630377296957227,0.6391973396153657,0.010000191358858813,0.7176023162128861,0.09730550692167428 -53023,0.47154863437271893,0.02581503691999359,0.22655940088972776,0.24800278021584404,0.44157657295481567,1.7718444069506432,0.01457282039896661,1.358731796697577,0.16630377296957227,1.7802651156832294,0.010000191358858813,1.4691489949737222,0.09730550692167428 -53025,0.3729790722257298,0.013265219123783182,0.1515706554530405,0.1580151074456176,0.44175586194243455,0.9102539458873212,0.01457282039896661,0.912886989318435,0.16630377296957227,0.9085792236872454,0.010000191358858813,0.9058636757092581,0.09730550692167428 -53027,0.4302587472640127,0.017376662681762207,0.18453722060904199,0.18593809828409588,0.441673718602585,1.192462900942883,0.01457282039896661,1.108345567150408,0.16630377296957227,1.2127025747665554,0.010000191358858813,1.1545462682614032,0.09730550692167428 -53029,0.4396698863028746,0.018777830060833826,0.19068026770495383,0.19515041613864026,0.4416611745903216,1.2878044020574642,0.01457282039896661,1.1456440036549875,0.16630377296957227,1.3228389485266985,0.010000191358858813,1.2138130195118877,0.09730550692167428 -53031,0.5085135510161005,0.0252797422352741,0.23364367266128197,0.2398669740256455,0.4415427822201278,1.736966082943184,0.01457282039896661,1.403748147427505,0.16630377296957227,1.8029641911647392,0.010000191358858813,1.5618663468931389,0.09730550692167428 -53033,0.399546801034085,0.013061974019711892,0.1630814125790428,0.15721388474141573,0.4417152437328753,0.8955320862572702,0.01457282039896661,0.9825254732534195,0.16630377296957227,0.8786012322999812,0.010000191358858813,0.9534118573418928,0.09730550692167428 -53035,0.4112245938156648,0.015017600589511976,0.1715622540138446,0.17036766353372274,0.44170098568272875,1.0297766681098741,0.01457282039896661,1.030795284319439,0.16630377296957227,1.031971660826711,0.010000191358858813,1.0423350986207804,0.09730550692167428 -53037,0.3882586069751161,0.013764637089227105,0.1600338792090978,0.16173101968396011,0.44172530014911604,0.9439890575146854,0.01457282039896661,0.9620926177597204,0.16630377296957227,0.9451247004812435,0.010000191358858813,0.9514745698076992,0.09730550692167428 -53039,0.44733765378309787,0.018903599938190525,0.19505374615152127,0.19695507199118306,0.441648675923505,1.296936617068186,0.01457282039896661,1.1710791632508917,0.16630377296957227,1.3202222835599522,0.010000191358858813,1.241189164138008,0.09730550692167428 -53041,0.4250794535351966,0.01783892835891481,0.18423301606463682,0.18920659769204734,0.4416801694870047,1.2234344180457684,0.01457282039896661,1.1062504423370982,0.16630377296957227,1.2421016862455474,0.010000191358858813,1.1541863764205758,0.09730550692167428 -53043,0.4578437542023478,0.021147889488583514,0.20417792568079718,0.21133115235446315,0.44162906805666546,1.4515497106608917,0.01457282039896661,1.2258665168035443,0.16630377296957227,1.4959749295375424,0.010000191358858813,1.328972937348932,0.09730550692167428 -53045,0.44737150836384343,0.019077866330116683,0.194998875399996,0.1963596378333486,0.44164764969237225,1.3097380993384626,0.01457282039896661,1.170093994082,0.16630377296957227,1.3490750920717334,0.010000191358858813,1.2423342809406783,0.09730550692167428 -53047,0.43170374690308105,0.01797910642903361,0.1866868563041753,0.19025467239180316,0.44167353693372846,1.2329006861092284,0.01457282039896661,1.1206088879859724,0.16630377296957227,1.2528696707938929,0.010000191358858813,1.1766306790175554,0.09730550692167428 -53049,0.4866317597866281,0.02405394127005162,0.2216548430448746,0.23052668155396977,0.44158012684930975,1.651814781201307,0.01457282039896661,1.3308531117322202,0.16630377296957227,1.720627018298235,0.010000191358858813,1.4727489386635202,0.09730550692167428 -53051,0.4565171800653792,0.020040198791986555,0.20125518186828398,0.20408811664468476,0.4416295276362897,1.3755357845953444,0.01457282039896661,1.2083824882133123,0.16630377296957227,1.411000270282596,0.010000191358858813,1.298553232824276,0.09730550692167428 -53053,0.38931849073574776,0.012954183665468511,0.15793228247086438,0.1560022259070289,0.4417312993739243,0.8887652914830604,0.01457282039896661,0.9516554239036864,0.16630377296957227,0.8795527648380312,0.010000191358858813,0.9322301092106757,0.09730550692167428 -53055,0.5035260393853112,0.023451118280248644,0.22706078526522494,0.22811106011590426,0.4415548990845342,1.6097538072965218,0.01457282039896661,1.3639896150789477,0.16630377296957227,1.6632876800272185,0.010000191358858813,1.5034897230002633,0.09730550692167428 -53057,0.419743085000706,0.01716383508811333,0.18047702454820774,0.18478040799765505,0.44168761617177654,1.1769319305845154,0.01457282039896661,1.083725315608733,0.16630377296957227,1.1901270635798815,0.010000191358858813,1.1214062450663163,0.09730550692167428 -53059,0.4340741994755469,0.015962524294417454,0.1821673176406009,0.17681254523719203,0.44167210886628916,1.0943779565253757,0.01457282039896661,1.0927420309327727,0.16630377296957227,1.103178534130163,0.010000191358858813,1.128786508672993,0.09730550692167428 -53061,0.39138585466864173,0.012509900666520829,0.15798282805809055,0.15351184905385923,0.44172845243298053,0.85827461529276206,0.01457282039896661,0.9524773920661945,0.16630377296957227,0.8398255716211112,0.010000191358858813,0.9250665169155867,0.09730550692167428 -53063,0.40015286637976843,0.01472464441768791,0.16711063646664176,0.16828065247103027,0.44171329780359014,1.0107214168284173,0.01457282039896661,1.0044379656882507,0.16630377296957227,1.010101100025718,0.010000191358858813,1.0058812149899963,0.09730550692167428 -53065,0.43975208904027085,0.018182634226436387,0.1888522760601581,0.19045946128198882,0.4416654188942297,1.2475455249558005,0.01457282039896661,1.1339039090030583,0.16630377296957227,1.2848226077690867,0.010000191358858813,1.2065672007816053,0.09730550692167428 -53067,0.4091190566154307,0.014782406172478174,0.17059622032939187,0.1688035852914403,0.4417035878358932,1.0144464426911792,0.01457282039896661,1.0242976865330198,0.16630377296957227,1.0124035641031344,0.010000191358858813,1.0298138281916964,0.09730550692167428 -53069,0.49538972345877874,0.026001054765969353,0.2287803636573444,0.2423685060754049,0.4415661433633659,1.7857248434496094,0.01457282039896661,1.3732179590787585,0.16630377296957227,1.8810903403449344,0.010000191358858813,1.551009836812212,0.09730550692167428 -53071,0.4033805125283687,0.016530242029002908,0.17359088574815562,0.18026206074615472,0.44170178893718715,1.1343168219842266,0.01457282039896661,1.0428768593500206,0.16630377296957227,1.141402968080782,0.010000191358858813,1.060198094603049,0.09730550692167428 -53073,0.40087792921032367,0.014717545166500357,0.1675181456990938,0.16841592238001488,0.44170980019042455,1.0102294003590115,0.01457282039896661,1.0067958826492878,0.16630377296957227,1.0088408930386914,0.010000191358858813,1.0063865371317218,0.09730550692167428 -53075,0.34267124910365776,0.010709074358775644,0.1346720935604727,0.1405601671351631,0.4417745138560113,0.7347067267298857,0.01457282039896661,0.8163258761160943,0.16630377296957227,0.7200428069140297,0.010000191358858813,0.7522020644889487,0.09730550692167428 -53077,0.3717230681912127,0.013085410998017787,0.15127263438147676,0.15724080964357318,0.44175542984087074,0.8976647098874768,0.01457282039896661,0.910489663967247,0.16630377296957227,0.8896021274251605,0.010000191358858813,0.8963534364830659,0.09730550692167428 -54001,0.43082494481999134,0.01767176568926948,0.1850572584927666,0.1872894482391888,0.4416759287617139,1.2128166057629217,0.01457282039896661,1.1107571948967574,0.16630377296957227,1.2406539530781844,0.010000191358858813,1.162237002411639,0.09730550692167428 -54003,0.3980913636023454,0.01317411889961111,0.16081623579262,0.15648747023496098,0.44172465369886416,0.9039571100900086,0.01457282039896661,0.9696768228248563,0.16630377296957227,0.9064288906730449,0.010000191358858813,0.9620767159277338,0.09730550692167428 -54005,0.42771154571735903,0.016229913471143647,0.17977636206025258,0.1760703410297536,0.44168541464699873,1.112897422362237,0.01457282039896661,1.0787877495687959,0.16630377296957227,1.1413468984754904,0.010000191358858813,1.11684419721185,0.09730550692167428 -54007,0.44129671376729257,0.018316290919282274,0.1915657227571125,0.19181900489326548,0.4416548596559329,1.2572853258434775,0.01457282039896661,1.149810308016751,0.16630377296957227,1.2832331892651783,0.010000191358858813,1.2056543219057203,0.09730550692167428 -54009,0.4520657758535462,0.020266996258951106,0.20130674198049298,0.20606203266621304,0.44163032935981167,1.3911815045896354,0.01457282039896661,1.2087321633906887,0.16630377296957227,1.417910608942258,0.010000191358858813,1.2820962808730045,0.09730550692167428 -54011,0.4216182463395295,0.017238062444571788,0.1816436742940814,0.18450836539881138,0.44168104263561203,1.1829404055385482,0.01457282039896661,1.0911226982389095,0.16630377296957227,1.2015696731941348,0.010000191358858813,1.121501358363255,0.09730550692167428 -54013,0.4516799037446769,0.019611584222926984,0.1972120728964919,0.1982182817923852,0.44164196200469935,1.3465284284239352,0.01457282039896661,1.1824891487617823,0.16630377296957227,1.4054478271894892,0.010000191358858813,1.267448876356882,0.09730550692167428 -54015,0.4262731624801863,0.017129774491208782,0.1822201957848682,0.18311263459733707,0.44168178784365986,1.1745575588835124,0.01457282039896661,1.0957828964098921,0.16630377296957227,1.1991571896803097,0.010000191358858813,1.138877911054577,0.09730550692167428 -54017,0.4288299447997319,0.016531357011322568,0.18159504463461312,0.18103502736168273,0.4416756715765051,1.1338469128773352,0.01457282039896661,1.0899515152741157,0.16630377296957227,1.1460913893059028,0.010000191358858813,1.1274091015184453,0.09730550692167428 -54019,0.4374659296629758,0.018386761408560257,0.19077436481332433,0.1928121392548776,0.441657969462313,1.2619219559795867,0.01457282039896661,1.1449695901516772,0.16630377296957227,1.2817711901608972,0.010000191358858813,1.1956368945433833,0.09730550692167428 -54021,0.4199630129409752,0.015680643808715825,0.17758579201873292,0.17347790495219706,0.4416810104871042,1.0772480873802024,0.01457282039896661,1.0649704189106206,0.16630377296957227,1.0879433342591807,0.010000191358858813,1.0710245188913776,0.09730550692167428 -54023,0.44142906795725667,0.018187092870536624,0.19064989637758234,0.19025664973703563,0.4416544714153516,1.2484133050585697,0.01457282039896661,1.144370367835267,0.16630377296957227,1.2819774379473854,0.010000191358858813,1.2049384402128736,0.09730550692167428 -54025,0.45037295929971877,0.01977690328498425,0.1987784435109582,0.20224182774427701,0.4416376042239708,1.3574792509955802,0.01457282039896661,1.193479115963566,0.16630377296957227,1.3886033665088973,0.010000191358858813,1.2661461981292614,0.09730550692167428 -54027,0.43141429709164064,0.016972115732266608,0.18323440266625904,0.18282146956730755,0.44167346672823804,1.1648883621101231,0.01457282039896661,1.1009214564716254,0.16630377296957227,1.1894015502330197,0.010000191358858813,1.1464202315948095,0.09730550692167428 -54029,0.44962492024411216,0.02010289551971732,0.20062445852943173,0.2047574858937643,0.4416339294665012,1.3795408928326969,0.01457282039896661,1.2033209494210988,0.16630377296957227,1.4023776936841763,0.010000191358858813,1.2702200379829698,0.09730550692167428 -54031,0.4219837621290417,0.0177245207087213,0.18033489448646078,0.187244912962935,0.4416909923229182,1.2161488610203754,0.01457282039896661,1.0828988869722092,0.16630377296957227,1.2568398168602068,0.010000191358858813,1.1508207095814604,0.09730550692167428 -54033,0.4305417703727655,0.01781700416812781,0.18688502305148658,0.18889802027750646,0.44166938130926225,1.2221542111122323,0.01457282039896661,1.1215174670154306,0.16630377296957227,1.2377996197201426,0.010000191358858813,1.1628778603833412,0.09730550692167428 -54035,0.43450893881027297,0.01814853530832131,0.18773369230452303,0.1895325376592486,0.4416664760225234,1.24514024108908,0.01457282039896661,1.1272510140096548,0.16630377296957227,1.2821885036285718,0.010000191358858813,1.18574671595522,0.09730550692167428 -54037,0.40301001534349157,0.013587920070588823,0.16384418292124703,0.1593989761444794,0.4417170371503236,0.9322347225842575,0.01457282039896661,0.9892515661753801,0.16630377296957227,0.9354771340225365,0.010000191358858813,0.9867471687424034,0.09730550692167428 -54039,0.43693301536333207,0.01834512978948106,0.1905815195329008,0.19195192340667244,0.4416586031609223,1.259417791126813,0.01457282039896661,1.1438828552844544,0.16630377296957227,1.2827529619613203,0.010000191358858813,1.193296247216965,0.09730550692167428 -54041,0.4438567121958716,0.01892922000727635,0.19430952520442268,0.19668062755433996,0.44164749296382066,1.2993618268620453,0.01457282039896661,1.166435864120761,0.16630377296957227,1.3239218699208022,0.010000191358858813,1.2258096013719897,0.09730550692167428 -54043,0.4251907915574728,0.01639057729830667,0.1794692329011705,0.17818914370704464,0.4416863286415573,1.1244906480907972,0.01457282039896661,1.0782326548605154,0.16630377296957227,1.1473015239925286,0.010000191358858813,1.1139429278003106,0.09730550692167428 -54045,0.43576554930944783,0.017066345401418645,0.18661225354311048,0.1839240255487135,0.44166397881712494,1.170609312966951,0.01457282039896661,1.1200859901078328,0.16630377296957227,1.1829127914236652,0.010000191358858813,1.155782404937773,0.09730550692167428 -54047,0.44076457245866457,0.01818970893258428,0.1917677235589975,0.19146027014185477,0.44165100406883195,1.2487815288276725,0.01457282039896661,1.1509079097586645,0.16630377296957227,1.266700528130075,0.010000191358858813,1.2009690616969015,0.09730550692167428 -54049,0.42963579940011654,0.017995209265536133,0.18754048329620004,0.19117188324982803,0.4416655017099712,1.2354479378821757,0.01457282039896661,1.126431310795605,0.16630377296957227,1.2434972323216362,0.010000191358858813,1.1631464858124783,0.09730550692167428 -54051,0.44324187465116016,0.019107190864905824,0.19494320751661456,0.19803356112910042,0.4416472733376502,1.3116539485818122,0.01457282039896661,1.1700858874597837,0.16630377296957227,1.3335252999643932,0.010000191358858813,1.2303563103586712,0.09730550692167428 -54053,0.43507908876040546,0.017686153184187668,0.18711950265671423,0.18711171115364078,0.44166808924728895,1.2135291900655782,0.01457282039896661,1.1228749126009794,0.16630377296957227,1.2402596912987958,0.010000191358858813,1.173205153946741,0.09730550692167428 -54055,0.4380174686277218,0.01881421804851497,0.19195779964327128,0.1960821087732765,0.44165640066807277,1.2912512125349762,0.01457282039896661,1.1524085752291169,0.16630377296957227,1.3122559464940442,0.010000191358858813,1.2081940038188934,0.09730550692167428 -54057,0.4318100651593111,0.01816950078540534,0.18757476383525384,0.19159795160573234,0.44166942449329194,1.246101916800369,0.01457282039896661,1.1261316466475775,0.16630377296957227,1.2661776060061936,0.010000191358858813,1.1774058327918084,0.09730550692167428 -54059,0.42446448951570215,0.015789837278877707,0.17786664047986636,0.17399793606351327,0.4416876661337067,1.0825256098808564,0.01457282039896661,1.0678608385937425,0.16630377296957227,1.1004883266389345,0.010000191358858813,1.095554890390142,0.09730550692167428 -54061,0.3710152721213274,0.012133257296616028,0.14988235524434107,0.1503364174949352,0.4417428360672575,0.8316769368586404,0.01457282039896661,0.9027876482680602,0.16630377296957227,0.8199255193557355,0.010000191358858813,0.8566147449632798,0.09730550692167428 -54063,0.453965133871962,0.019637369415533852,0.19768096045902903,0.20046240156562906,0.44164087370897226,1.3474473022663682,0.01457282039896661,1.1871573202553214,0.16630377296957227,1.3958685852053752,0.010000191358858813,1.2744488475628013,0.09730550692167428 -54065,0.4480269986912301,0.019121966857945157,0.19390858745057066,0.19519750395820837,0.4416502873892757,1.3123192258780898,0.01457282039896661,1.1626487130169478,0.16630377296957227,1.3691091014245678,0.010000191358858813,1.246917238975385,0.09730550692167428 -54067,0.4409505814142971,0.018241430310017966,0.19087241777006048,0.19118718718255243,0.4416559624771331,1.2521811302881876,0.01457282039896661,1.1456059834409085,0.16630377296957227,1.2812128378662948,0.010000191358858813,1.2039351748998257,0.09730550692167428 -54069,0.4416322619230657,0.019864532368516895,0.19634651150872362,0.20260544881464987,0.4416447511223016,1.3634297541477922,0.01457282039896661,1.179516073845351,0.16630377296957227,1.3936909699284519,0.010000191358858813,1.24569344992425,0.09730550692167428 -54071,0.46294626059123123,0.021055707276034105,0.20713146542683547,0.20961346905697265,0.44161400747955265,1.444935985014784,0.01457282039896661,1.2432805202367674,0.16630377296957227,1.4886694038175468,0.010000191358858813,1.3321494127649607,0.09730550692167428 -54073,0.42980724596104974,0.017151221154730514,0.18563062844203415,0.18476563909474839,0.44166665843317243,1.1762352176587245,0.01457282039896661,1.114342091653041,0.16630377296957227,1.1798058501082562,0.010000191358858813,1.1426516547409653,0.09730550692167428 -54075,0.461550694409756,0.020116382195818627,0.204286058633284,0.20501277515129968,0.44161568793277217,1.381456804957863,0.01457282039896661,1.226915869286707,0.16630377296957227,1.4095406903503693,0.010000191358858813,1.3029899049225153,0.09730550692167428 -54077,0.43301568961137815,0.017067288479220837,0.18545663170538484,0.18407220407623792,0.4416667632552689,1.1713407262534081,0.01457282039896661,1.1134191812823087,0.16630377296957227,1.1835063641485162,0.010000191358858813,1.146641999046788,0.09730550692167428 -54079,0.4231943119343363,0.01578959339568935,0.17726158263740832,0.17435116451406835,0.4416897763668136,1.0829505023642856,0.01457282039896661,1.065317855385247,0.16630377296957227,1.0993125265547175,0.010000191358858813,1.0934607153372924,0.09730550692167428 -54081,0.43330496208925473,0.017888292719110396,0.18809852798677623,0.18969063090080612,0.44166447699326095,1.227806733727205,0.01457282039896661,1.1284821829387153,0.16630377296957227,1.2420435454678243,0.010000191358858813,1.1691077356334534,0.09730550692167428 -54083,0.43927525915715826,0.018459811637337085,0.19213607000112565,0.19389895000478946,0.44165013146560633,1.2673478427936957,0.01457282039896661,1.1537709417632136,0.16630377296957227,1.283257559630608,0.010000191358858813,1.2017698703438362,0.09730550692167428 -54085,0.44365068656413104,0.018271532211818875,0.1914088619754801,0.19088465036554592,0.441655997907593,1.2534670005230886,0.01457282039896661,1.1489093593907318,0.16630377296957227,1.287915629257471,0.010000191358858813,1.2112805198168481,0.09730550692167428 -54087,0.44247619800434623,0.018399941585776333,0.19057810359656072,0.1910299876399295,0.44165833335910765,1.262326624387983,0.01457282039896661,1.143780809546231,0.16630377296957227,1.306690548269989,0.010000191358858813,1.2121490299362065,0.09730550692167428 -54089,0.46225094554199053,0.02096921295569015,0.20548702535993058,0.20817821794869534,0.44161942050530323,1.4401621968591765,0.01457282039896661,1.2316254192155618,0.16630377296957227,1.496464816214143,0.010000191358858813,1.3246915069516327,0.09730550692167428 -54091,0.43268155634384065,0.017525126681113275,0.18746737063975127,0.18711368471994266,0.4416645307433866,1.2018680047423098,0.01457282039896661,1.1245105001206952,0.16630377296957227,1.210808957613546,0.010000191358858813,1.159580398819752,0.09730550692167428 -54093,0.4614701291253514,0.02081831563824407,0.20528966917832095,0.21023258269534795,0.4416179312995683,1.4297885939933848,0.01457282039896661,1.2329481123364925,0.16630377296957227,1.4646528922133832,0.010000191358858813,1.3235727949627325,0.09730550692167428 -54095,0.4475933875700917,0.019565280085501333,0.19804926942600493,0.20135965679055184,0.4416403457128585,1.342357217719814,0.01457282039896661,1.188561925210641,0.16630377296957227,1.3625055820989749,0.010000191358858813,1.2563484814889634,0.09730550692167428 -54097,0.4299364258009768,0.017508687534554417,0.18435069238373247,0.18679218042226825,0.4416717216708942,1.2015514701187766,0.01457282039896661,1.1084922970782438,0.16630377296957227,1.2289728714727683,0.010000191358858813,1.157591552829543,0.09730550692167428 -54099,0.4298118870837916,0.017445429025778735,0.18448655119895008,0.18597744009005382,0.44167557317831896,1.1969463852251363,0.01457282039896661,1.1073707217184552,0.16630377296957227,1.2203883576846488,0.010000191358858813,1.1538460306472063,0.09730550692167428 -54101,0.44672344095663913,0.019068683080093428,0.19504750007845295,0.19707612172395433,0.44164710738606305,1.309148974974374,0.01457282039896661,1.1708470281320111,0.16630377296957227,1.3416912461914907,0.010000191358858813,1.238652041802478,0.09730550692167428 -54103,0.44492490174545013,0.019217135005396218,0.19524927327082908,0.19837490409600964,0.441647931347634,1.3187342468824574,0.01457282039896661,1.1718431973691805,0.16630377296957227,1.3470778543928872,0.010000191358858813,1.2398230380991837,0.09730550692167428 -54105,0.4328907478411981,0.016215868963122562,0.1812146459856388,0.17649244718142126,0.4416732900633056,1.1118056361189654,0.01457282039896661,1.0893686347523917,0.16630377296957227,1.1408681318955196,0.010000191358858813,1.132183838434715,0.09730550692167428 -54107,0.4322296896421445,0.017937655899495725,0.1875371360672191,0.18949991061563037,0.44166762151638905,1.230678674243028,0.01457282039896661,1.1253728755018857,0.16630377296957227,1.2500018003751665,0.010000191358858813,1.17099660532722,0.09730550692167428 -54109,0.4372343615259764,0.016905785664798792,0.18517301727482952,0.18123543927718577,0.44166908209434474,1.1596467661930703,0.01457282039896661,1.1115538541025516,0.16630377296957227,1.1894331419454762,0.010000191358858813,1.1591006841209113,0.09730550692167428 -55001,0.48150891484159797,0.022332923687727674,0.21587669988378927,0.2184301589702798,0.44158922299695547,1.5340740338452985,0.01457282039896661,1.2956359549573104,0.16630377296957227,1.5928458059775061,0.010000191358858813,1.4119426313651362,0.09730550692167428 -55003,0.41633603884799697,0.0170409775974745,0.18016410626369608,0.18428665232086433,0.4416875832211098,1.1689338750822795,0.01457282039896661,1.0813794995968065,0.16630377296957227,1.1728136880341442,0.010000191358858813,1.1083622334146965,0.09730550692167428 -55005,0.43193975311692856,0.018555002901550724,0.1896720995987341,0.19444185128605046,0.44166542999318503,1.2729214697809492,0.01457282039896661,1.1380356151089868,0.16630377296957227,1.2875812191125622,0.010000191358858813,1.186901979025262,0.09730550692167428 -55007,0.4760933747560059,0.021115757216910645,0.2103231179139407,0.21053501605172664,0.44160185099778004,1.4490853467457057,0.01457282039896661,1.2638198801825322,0.16630377296957227,1.501010722869645,0.010000191358858813,1.3724271279018465,0.09730550692167428 -55009,0.3905296334903454,0.013406121836082455,0.16005328979576577,0.1592238321618752,0.44172756001476,0.9200835431116179,0.01457282039896661,0.9642269378103656,0.16630377296957227,0.9100043626208405,0.010000191358858813,0.946562535065673,0.09730550692167428 -55011,0.4349622831708506,0.018651556534731373,0.1909865160310378,0.19499149870130988,0.4416572191100924,1.2802897481970128,0.01457282039896661,1.1458392405012736,0.16630377296957227,1.2986595282376379,0.010000191358858813,1.1998649007942526,0.09730550692167428 -55013,0.4780343804072291,0.022667890039000688,0.21517868610934093,0.22099527885142273,0.4415964841108674,1.5563238349591428,0.01457282039896661,1.2912818321787727,0.16630377296957227,1.6173812316859575,0.010000191358858813,1.417729570514664,0.09730550692167428 -55015,0.39392734244423555,0.01334213745147127,0.160929609087605,0.15831111034555373,0.4417254053569147,0.9155957656222681,0.01457282039896661,0.9700981296291517,0.16630377296957227,0.9062661387034001,0.010000191358858813,0.955966722278242,0.09730550692167428 -55017,0.4149247586821093,0.016276557054743845,0.1772646001034217,0.17920463271036594,0.4416919574388368,1.1159981910325434,0.01457282039896661,1.0646786785929778,0.16630377296957227,1.1158036408121557,0.010000191358858813,1.0828938099745535,0.09730550692167428 -55019,0.3981266502339934,0.016815694831136666,0.17244324272413092,0.18271495355949796,0.44171304253861865,1.154764433628881,0.01457282039896661,1.0340126383012804,0.16630377296957227,1.156401507668408,0.010000191358858813,1.0595155267880554,0.09730550692167428 -55021,0.41894070463899236,0.016016989883446603,0.17788952960165502,0.17715696682692877,0.4416874735420819,1.0985903087906763,0.01457282039896661,1.0701054823368168,0.16630377296957227,1.099264536763786,0.010000191358858813,1.0872684765110334,0.09730550692167428 -55023,0.4390674365451751,0.019204924629392574,0.19334685716703556,0.19823983351705418,0.4416554742279526,1.3178723251346418,0.01457282039896661,1.1604562921047061,0.16630377296957227,1.3439236229102391,0.010000191358858813,1.2246141381891857,0.09730550692167428 -55025,0.38628945397963255,0.012384072530613827,0.15633417360102206,0.15239000129951752,0.441731806950706,0.8494379218611923,0.01457282039896661,0.9408076256432523,0.16630377296957227,0.8314866567600536,0.010000191358858813,0.9028345734076575,0.09730550692167428 -55027,0.4160739482917794,0.01613015904716357,0.177998833648621,0.17803252645437959,0.4416881182769278,1.106607430312881,0.01457282039896661,1.0692346436896285,0.16630377296957227,1.1022171366295117,0.010000191358858813,1.0776488882050437,0.09730550692167428 -55029,0.4791212056483905,0.022784025808217923,0.21710289190432241,0.22201538435476842,0.4415884981941528,1.5646032526142961,0.01457282039896661,1.3030589263571974,0.16630377296957227,1.6153923404804214,0.010000191358858813,1.4175976998251483,0.09730550692167428 -55031,0.4167474064691239,0.015909860195122246,0.17692805196669809,0.1765938762125095,0.44168997499612467,1.0914156991890538,0.01457282039896661,1.0632491412215352,0.16630377296957227,1.091629723322154,0.010000191358858813,1.077547830225912,0.09730550692167428 -55033,0.3830715369010538,0.013860756900258763,0.15854226098881907,0.16218318377867708,0.4417301789284235,0.9515689673225027,0.01457282039896661,0.9545655568681422,0.16630377296957227,0.9477253884143129,0.010000191358858813,0.9416716456270915,0.09730550692167428 -55035,0.38659238518482497,0.013940389885632246,0.16068333365544313,0.16313605948164892,0.44172513346248987,0.956902965927876,0.01457282039896661,0.9666918821341712,0.16630377296957227,0.9489620388192215,0.010000191358858813,0.9498295558361958,0.09730550692167428 -55037,0.466145116868541,0.020659210464345785,0.2075063973787834,0.2085202316399422,0.44160704134204376,1.4180894794584777,0.01457282039896661,1.248819661939942,0.16630377296957227,1.447245577980683,0.010000191358858813,1.3328634259906895,0.09730550692167428 -55039,0.41505892834780467,0.01639920580882117,0.17789797321838902,0.17997248162700422,0.4416893892830077,1.124390563243534,0.01457282039896661,1.0682828443582035,0.16630377296957227,1.1240549631283279,0.010000191358858813,1.0860147106571578,0.09730550692167428 -55041,0.44555017380395556,0.020611124292414122,0.1976044232231174,0.20604041156372832,0.4416462862645021,1.415029827523961,0.01457282039896661,1.1866151462245986,0.16630377296957227,1.4718566122988754,0.010000191358858813,1.2796882301534651,0.09730550692167428 -55043,0.4023650042970733,0.0166083995735475,0.1732577997850399,0.18109436799933337,0.44170104868291876,1.1397641629136728,0.01457282039896661,1.0420204376010194,0.16630377296957227,1.146933904314278,0.010000191358858813,1.0612897504814653,0.09730550692167428 -55045,0.41620570979714633,0.016274349114530372,0.17851421248177238,0.17990422784642274,0.44168834686554226,1.1158343001219362,0.01457282039896661,1.0727204533696668,0.16630377296957227,1.106271193873499,0.010000191358858813,1.0875740134630503,0.09730550692167428 -55047,0.43944750815748135,0.019722093778616938,0.19547556180750875,0.20255555464952135,0.4416510555916362,1.352891333589245,0.01457282039896661,1.1725812084380944,0.16630377296957227,1.3732951400605482,0.010000191358858813,1.2378489478355381,0.09730550692167428 -55049,0.41465684495510896,0.01559960790760841,0.1748999228291614,0.17393236586385763,0.441695922450827,1.0700125086006946,0.01457282039896661,1.0522078682287659,0.16630377296957227,1.0715546179326454,0.010000191358858813,1.0676845731090938,0.09730550692167428 -55051,0.49097704796781255,0.024758913782116823,0.2288822937939307,0.2379411940107178,0.44155845688964923,1.6987926801244329,0.01457282039896661,1.3736163302999875,0.16630377296957227,1.7318960928244933,0.010000191358858813,1.4948486519507145,0.09730550692167428 -55053,0.4241181252320512,0.016932046315428252,0.181520396923465,0.18227412809983087,0.4416822732814577,1.161468174510642,0.01457282039896661,1.0897413986781919,0.16630377296957227,1.1786774867675986,0.010000191358858813,1.1233052015055078,0.09730550692167428 -55055,0.4026836758131953,0.014685116842251253,0.16768396000324887,0.167867924756768,0.44171148347224254,1.0077163174695387,0.01457282039896661,1.008959631962742,0.16630377296957227,1.006551274279853,0.010000191358858813,1.0127243203293745,0.09730550692167428 -55057,0.4356689604675133,0.018440226623340904,0.18947726558979266,0.19270750833964734,0.4416629410217303,1.2651354214374946,0.01457282039896661,1.1374003980813892,0.16630377296957227,1.2937441862424728,0.010000191358858813,1.1960118878088184,0.09730550692167428 -55059,0.38693053322949184,0.013080343124422177,0.15795595918222832,0.15722627059430774,0.4417311838711394,0.8977334419073177,0.01457282039896661,0.9522256614499378,0.16630377296957227,0.8831788634611245,0.010000191358858813,0.9297777794056921,0.09730550692167428 -55061,0.42557089913577273,0.017728113963739585,0.1848535440618937,0.18851717988330963,0.4416770526968053,1.2156221713931648,0.01457282039896661,1.1091088011362733,0.16630377296957227,1.2284727697327726,0.010000191358858813,1.1503158556677828,0.09730550692167428 -55063,0.39438707220338076,0.014858149679962096,0.16606662244394088,0.16919200828059164,0.4417144214913332,1.0193530148972854,0.01457282039896661,0.9991222641982658,0.16630377296957227,1.0146488882942823,0.010000191358858813,0.9928292477956031,0.09730550692167428 -55065,0.41503927225276216,0.016944490475070007,0.178648896059865,0.18271258904936302,0.4416919013965544,1.1618175787163514,0.01457282039896661,1.0737923916004066,0.16630377296957227,1.1735403118849437,0.010000191358858813,1.1072887226092256,0.09730550692167428 -55067,0.44743233634543716,0.020261456485358646,0.19976953019780058,0.2053094003417456,0.44163844842732597,1.3907687313171402,0.01457282039896661,1.19772428228206,0.16630377296957227,1.419913396231109,0.010000191358858813,1.2717337956076968,0.09730550692167428 -55069,0.4403230403641689,0.01931678200167191,0.19547612154861016,0.2001160374662999,0.44164547296548573,1.3250077065397914,0.01457282039896661,1.1725317919314495,0.16630377296957227,1.3386620406255907,0.010000191358858813,1.2292312723094647,0.09730550692167428 -55071,0.428282712134122,0.018081445787219153,0.1875863988955811,0.19107270749264338,0.4416668221100635,1.2400412181690457,0.01457282039896661,1.1257324448475274,0.16630377296957227,1.2503126696025757,0.010000191358858813,1.1665607138838223,0.09730550692167428 -55073,0.40804246057698945,0.015569174479080693,0.17250205632090926,0.17392746959883892,0.44170199686584366,1.0678856548013478,0.01457282039896661,1.0368134679865282,0.16630377296957227,1.0681801905754762,0.010000191358858813,1.0483843597535547,0.09730550692167428 -55075,0.44695658154640294,0.01971183089452583,0.19808935501658048,0.20272567443998374,0.4416390863810701,1.3528291227005051,0.01457282039896661,1.1889462638703576,0.16630377296957227,1.3734704336297199,0.010000191358858813,1.2563354482055809,0.09730550692167428 -55077,0.4644546500276034,0.021158160710506302,0.20613824271938566,0.20901958263388518,0.441620550177725,1.4529773220678563,0.01457282039896661,1.2363109866737285,0.16630377296957227,1.5173792147843803,0.010000191358858813,1.3428290546739676,0.09730550692167428 -55078,0.37861619002935026,0.013197392191040262,0.1511917535069569,0.15479864045251096,0.4417549392617739,0.9055996383676878,0.01457282039896661,0.9132740212541861,0.16630377296957227,0.9312911450060379,0.010000191358858813,0.9255138624336163,0.09730550692167428 -55079,0.38318572348401125,0.013541317705682312,0.1583789459726675,0.1603874979603082,0.44173396669382564,0.9300771555480708,0.01457282039896661,0.9520083145202738,0.16630377296957227,0.9167673612468816,0.010000191358858813,0.9301378998262217,0.09730550692167428 -55081,0.4059720311804003,0.015601622047927947,0.17181442343607167,0.17471064775949038,0.4417080724005711,1.070687709554254,0.01457282039896661,1.0314049490826034,0.16630377296957227,1.0683926039560685,0.010000191358858813,1.0463882196207077,0.09730550692167428 -55083,0.4336167319796911,0.01713668173982163,0.18513048006981547,0.18390742921126801,0.4416689260144169,1.1754016375241574,0.01457282039896661,1.113803795845683,0.16630377296957227,1.1947943538484753,0.010000191358858813,1.157137054863053,0.09730550692167428 -55085,0.46816714764169987,0.021453488863704552,0.2095389775978667,0.21269115213618833,0.4416048328021651,1.4730335157940369,0.01457282039896661,1.258142784002112,0.16630377296957227,1.5187872415545713,0.010000191358858813,1.3575111258080836,0.09730550692167428 -55087,0.3924792777301713,0.01357002158209733,0.161214559544579,0.16025746863946996,0.44172464230479447,0.9312895739515975,0.01457282039896661,0.9710453424805428,0.16630377296957227,0.9221074162248318,0.010000191358858813,0.9554943184234587,0.09730550692167428 -55089,0.42390608460266166,0.0166908790224404,0.18128847987875205,0.1818926966648202,0.4416794101235243,1.1448136365675503,0.01457282039896661,1.0906947346433877,0.16630377296957227,1.1504069630952203,0.010000191358858813,1.123456907009523,0.09730550692167428 -55091,0.4305784916973511,0.018810929624620977,0.19058280725875376,0.1975074472663918,0.44166280309589157,1.2903487646860123,0.01457282039896661,1.143604122448742,0.16630377296957227,1.2968048843908142,0.010000191358858813,1.1924196515606207,0.09730550692167428 -55093,0.3806758079236363,0.012304169723573932,0.15345895797152578,0.1517980146197642,0.4417375612634421,0.8437719645253166,0.01457282039896661,0.9254160816659206,0.16630377296957227,0.8282915886197829,0.010000191358858813,0.8939814436278115,0.09730550692167428 -55095,0.42571951970750244,0.017147432367462218,0.1833542936455499,0.18499468123339996,0.44167781404737855,1.1755121460657536,0.01457282039896661,1.1014537057950649,0.16630377296957227,1.182661225896069,0.010000191358858813,1.1372163939345208,0.09730550692167428 -55097,0.3936936697928163,0.014241232664146414,0.1640573945299057,0.16508560507662517,0.44171726023871594,0.9776047517066079,0.01457282039896661,0.9869628109410239,0.16630377296957227,0.9717160983809885,0.010000191358858813,0.9770468420312557,0.09730550692167428 -55099,0.4672318901486656,0.021527970910928725,0.21010939109597015,0.21360461084718974,0.4416054400299694,1.4776460364677702,0.01457282039896661,1.2612887587816501,0.16630377296957227,1.5161834847491344,0.010000191358858813,1.3571126309105521,0.09730550692167428 -55101,0.4037042056603499,0.014834747433048653,0.1691736643663324,0.16925222404659637,0.4417086284000233,1.0176772683133488,0.01457282039896661,1.0175698547365455,0.16630377296957227,1.010294604213012,0.010000191358858813,1.018402591225307,0.09730550692167428 -55103,0.4304099592359192,0.018670556806204948,0.1896772641858857,0.19601188042361078,0.4416653336213957,1.2809597713633076,0.01457282039896661,1.138254544315768,0.16630377296957227,1.2913387484807517,0.010000191358858813,1.1895874279390033,0.09730550692167428 -55105,0.40148451280419467,0.014801404644909068,0.16731376908101225,0.16804827122618216,0.44171379766469115,1.0153870359261976,0.01457282039896661,1.0066129666851977,0.16630377296957227,1.020042707851708,0.010000191358858813,1.0131654422010596,0.09730550692167428 -55107,0.44729301672015187,0.020349801138201076,0.19976926786854776,0.20646422662754,0.44163919675712165,1.396791297547193,0.01457282039896661,1.1985067462316605,0.16630377296957227,1.4234073472349085,0.010000191358858813,1.2756070347141633,0.09730550692167428 -55109,0.38514895686944783,0.01211804392976058,0.15448866169488534,0.1506378091095934,0.44173888919428633,0.8310552783135083,0.01457282039896661,0.9317763772350169,0.16630377296957227,0.8106835732892512,0.010000191358858813,0.9003257772779828,0.09730550692167428 -55111,0.4154697494052585,0.01626829743927706,0.17737955689375337,0.17880375611765778,0.44169167218885036,1.1155990815053163,0.01457282039896661,1.0653780015388734,0.16630377296957227,1.117704559379633,0.010000191358858813,1.084759222781437,0.09730550692167428 -55113,0.4610513661716171,0.020503924686487672,0.20350546786228352,0.2073140921367779,0.441626018060874,1.4078819834909835,0.01457282039896661,1.2219282702771626,0.16630377296957227,1.4499791255757608,0.010000191358858813,1.3173344316649411,0.09730550692167428 -55115,0.43209423520107537,0.01876986696252954,0.1901646682617785,0.19590287763230524,0.44166348905398534,1.2876623074289117,0.01457282039896661,1.1408979318362256,0.16630377296957227,1.3051354718178918,0.010000191358858813,1.1930725099492927,0.09730550692167428 -55117,0.41168948880700107,0.01603738392534195,0.1758472296150324,0.1775009611926695,0.44169532431779335,1.099827556793787,0.01457282039896661,1.05593812982606,0.16630377296957227,1.0963477380816598,0.010000191358858813,1.0679372842958215,0.09730550692167428 -55119,0.42228500608220687,0.017706731686150664,0.18440560642399198,0.1884575624882769,0.44167899874020466,1.2145975614098867,0.01457282039896661,1.1066048024875554,0.16630377296957227,1.222134722970318,0.010000191358858813,1.142111711895695,0.09730550692167428 -55121,0.4205511303646386,0.017276172212792942,0.1819913631514507,0.18571475821306366,0.44168400521203144,1.184654996295765,0.01457282039896661,1.0919717670428764,0.16630377296957227,1.1930028858792507,0.010000191358858813,1.124723533215076,0.09730550692167428 -55123,0.42020310133329597,0.017792514653366943,0.18315662528439536,0.19012233026834655,0.4416850818843285,1.2202657798074386,0.01457282039896661,1.098699300791192,0.16630377296957227,1.2260029041083875,0.010000191358858813,1.1429668048377715,0.09730550692167428 -55125,0.4925745718156108,0.024938252393522903,0.22636546986912837,0.23542097309242682,0.44156961807677886,1.7122426701956583,0.01457282039896661,1.3586172829576717,0.16630377296957227,1.7904464186228757,0.010000191358858813,1.508908508811682,0.09730550692167428 -55127,0.40239034916637095,0.014936948073166235,0.16873036664389193,0.16994159295506028,0.4417090870570265,1.0251266292960284,0.01457282039896661,1.0147493247207082,0.16630377296957227,1.0224262844498748,0.010000191358858813,1.0175992365673923,0.09730550692167428 -55129,0.46072389244276973,0.022031490410850445,0.21076554122556035,0.2200136204194756,0.4416105436076562,1.5121402141210396,0.01457282039896661,1.264251621274262,0.16630377296957227,1.5263462788294833,0.010000191358858813,1.3491887190662428,0.09730550692167428 -55131,0.40967715445942277,0.015009946053703113,0.17209766359632384,0.17089744657847267,0.44170026612296964,1.0295444984170512,0.01457282039896661,1.0355945399690478,0.16630377296957227,1.0184676789399045,0.010000191358858813,1.0378813274446599,0.09730550692167428 -55133,0.4177981734966649,0.015936250603462605,0.17732067052322734,0.17676762895418685,0.4416891761056444,1.0930905329753173,0.01457282039896661,1.0669814546584377,0.16630377296957227,1.0914543955301248,0.010000191358858813,1.0856071244247403,0.09730550692167428 -55135,0.4314901730413227,0.018684877884665788,0.1904577408901824,0.195730508337028,0.4416617921891648,1.2814932895842064,0.01457282039896661,1.1418442217168434,0.16630377296957227,1.2915624862263066,0.010000191358858813,1.1885352394380106,0.09730550692167428 -55137,0.45684199870011216,0.020441402940871007,0.20287760338644284,0.20547670900963452,0.44162734656193103,1.4039750626037848,0.01457282039896661,1.2165322474125477,0.16630377296957227,1.4466811906829002,0.010000191358858813,1.300808368099267,0.09730550692167428 -55139,0.4025540709975598,0.01488649755123822,0.1694573460120817,0.1698876828533598,0.44170516836402285,1.0214596338047552,0.01457282039896661,1.0190931070448563,0.16630377296957227,1.012634148233607,0.010000191358858813,1.012954299581029,0.09730550692167428 -55141,0.42725670371113067,0.018051576293020115,0.18703129094263868,0.19104007718773436,0.44166957581697763,1.2381631024297,0.01457282039896661,1.121827195231433,0.16630377296957227,1.2479754337099163,0.010000191358858813,1.1624342958707077,0.09730550692167428 -56001,0.3536136175587028,0.01051905171922483,0.13805757865985316,0.1394701555047911,0.44176752892154225,0.7215069712302888,0.01457282039896661,0.8359259694806251,0.16630377296957227,0.704116726489167,0.010000191358858813,0.7713509810718873,0.09730550692167428 -56003,0.4307354457537726,0.018789354400811635,0.18784850757088054,0.1945054679776166,0.44167612594151806,1.2883170100662324,0.01457282039896661,1.1267617998731778,0.16630377296957227,1.3254114155149868,0.010000191358858813,1.1977802069981378,0.09730550692167428 -56005,0.36159947720512303,0.008943507394484199,0.13698326687337065,0.1288523310391661,0.44177568490929986,0.6138173723333944,0.01457282039896661,0.8267692029777827,0.16630377296957227,0.5796750988920467,0.010000191358858813,0.75888589669975,0.09730550692167428 -56007,0.4161105413468917,0.01462375245931494,0.17218904524336634,0.16691206406485243,0.44169937320826647,1.0023769019097863,0.01457282039896661,1.0352470105603664,0.16630377296957227,1.0057277766571926,0.010000191358858813,1.044432921053494,0.09730550692167428 -56009,0.408568316916224,0.014583287856169054,0.16974438736650593,0.1676200641099736,0.44170619204652206,0.9999156749241757,0.01457282039896661,1.0202354092726755,0.16630377296957227,0.9946713736845629,0.010000191358858813,1.0285349935072987,0.09730550692167428 -56011,0.43589010403813966,0.018007336261225193,0.1871887820663929,0.18937357018346215,0.4416686618404424,1.2354585176096031,0.01457282039896661,1.1267657205174268,0.16630377296957227,1.2688768657642968,0.010000191358858813,1.1933971416029354,0.09730550692167428 -56013,0.4106686671369273,0.016014387543281723,0.1740418840644415,0.1774634547732446,0.44170320756760684,1.0987455203026504,0.01457282039896661,1.0454501352241645,0.16630377296957227,1.103084150306802,0.010000191358858813,1.0700086016093784,0.09730550692167428 -56015,0.43951149099299425,0.020029983998862688,0.1965768699414288,0.2041609642661606,0.4416474591300566,1.3744263969148824,0.01457282039896661,1.1795890275912835,0.16630377296957227,1.397863549929863,0.010000191358858813,1.246044710237029,0.09730550692167428 -56017,0.4841521708613884,0.024502592800268376,0.2212266170550355,0.23275229223977562,0.4415869351239014,1.6824672775697418,0.01457282039896661,1.3291582123705494,0.16630377296957227,1.7637925077411825,0.010000191358858813,1.4765554622971502,0.09730550692167428 -56019,0.45357694307351143,0.02014156373179327,0.20009758567788782,0.20405211919453065,0.4416349647067665,1.3829337101159478,0.01457282039896661,1.2012268413216067,0.16630377296957227,1.4245186479836185,0.010000191358858813,1.2885660145111892,0.09730550692167428 -56021,0.39916568411660247,0.014059104501000808,0.16478780304793555,0.163804256345695,0.4417194952770677,0.9651874667830387,0.01457282039896661,0.9913617207122175,0.16630377296957227,0.9602496451467115,0.010000191358858813,0.9877376179684195,0.09730550692167428 -56023,0.4037488887129614,0.015193760410711172,0.16906878693837485,0.17221043821294074,0.4417146946670142,1.0432481543561813,0.01457282039896661,1.0151321447055404,0.16630377296957227,1.0416556552166103,0.010000191358858813,1.0323698105130485,0.09730550692167428 -56025,0.40029952267942515,0.01465513485982759,0.1674685048657259,0.1678477556966257,0.44171347058949895,1.0056910661112097,0.01457282039896661,1.0058291945928914,0.16630377296957227,1.0008792848573047,0.010000191358858813,1.0044592755523571,0.09730550692167428 -56027,0.4470689025553196,0.01745498504658298,0.19106083144301858,0.18689648685913482,0.4416410034938135,1.197849282050417,0.01457282039896661,1.1482039918699967,0.16630377296957227,1.2183324354165395,0.010000191358858813,1.2017265459812978,0.09730550692167428 -56029,0.4382440890875583,0.018376029956132037,0.190405104258324,0.19303394128663026,0.44165957123867955,1.2609153404744584,0.01457282039896661,1.1435291470912672,0.16630377296957227,1.2829098161525596,0.010000191358858813,1.2030369004610026,0.09730550692167428 -56031,0.45498984585781665,0.020450167119188678,0.20206118999787354,0.20725026192230975,0.44163317085359166,1.403249328136417,0.01457282039896661,1.212623258714229,0.16630377296957227,1.4351243402418152,0.010000191358858813,1.3010883339499197,0.09730550692167428 -56033,0.4312775968988761,0.017427942766023934,0.18683399166172143,0.18761705359060354,0.44166687688579864,1.195220440614111,0.01457282039896661,1.1219892033550125,0.16630377296957227,1.1959440127592194,0.010000191358858813,1.1579283393114457,0.09730550692167428 -56035,0.4124136128073157,0.014625591946471821,0.1701132830525529,0.16595202402726206,0.44170264515985036,1.0027564587865603,0.01457282039896661,1.0240377277907418,0.16630377296957227,1.0153391789014803,0.010000191358858813,1.0369347022538873,0.09730550692167428 -56037,0.3763276361735453,0.011149616439186317,0.14764936433654322,0.14340690166145798,0.44175820461116777,0.7649855231148281,0.01457282039896661,0.8898460920622056,0.16630377296957227,0.7505825718390631,0.010000191358858813,0.8561639397174384,0.09730550692167428 -56039,0.40068414627107857,0.0117158161829522,0.15939808965390515,0.1474471375723433,0.4417215099938981,0.8029506717613453,0.01457282039896661,0.9602030483606927,0.16630377296957227,0.787170389496286,0.010000191358858813,0.9206506924435229,0.09730550692167428 -56041,0.3760996005692474,0.011215567693265916,0.1471591337571772,0.14372861344348245,0.44176014013418186,0.7693647284383176,0.01457282039896661,0.8857610114226098,0.16630377296957227,0.7586935258295582,0.010000191358858813,0.8615514766261833,0.09730550692167428 -56043,0.4255610118705032,0.017877085021080368,0.18506555989782358,0.1908140413095017,0.44167883892641446,1.2255133078301017,0.01457282039896661,1.1113900907086314,0.16630377296957227,1.2330783756821406,0.010000191358858813,1.1600343844469063,0.09730550692167428 -56045,0.43659719947249814,0.017690100725136618,0.18886092742788035,0.18915065595400926,0.4416565076908723,1.2144777598259946,0.01457282039896661,1.1343043487420765,0.16630377296957227,1.2263803281785468,0.010000191358858813,1.1741959331212986,0.09730550692167428 -72001,0.3919382185384874,0.014271080466198783,0.16091940964318008,0.1639641815475647,0.44172875635806186,0.9796061456668359,0.01457282039896661,0.968873497706276,0.16630377296957227,0.9928547664927303,0.010000191358858813,0.9786180830316533,0.09730550692167428 -72003,0.3960699230447291,0.013480129514650045,0.16117628024608316,0.15989655113675658,0.4417224250752053,0.9253165652581561,0.01457282039896661,0.972599102329011,0.16630377296957227,0.9223485969322929,0.010000191358858813,0.9667341060894147,0.09730550692167428 -72005,0.4088655963192556,0.01578745383220229,0.17103597153313105,0.17377520299022275,0.44170827697159776,1.0833171428222155,0.01457282039896661,1.0271200829523226,0.16630377296957227,1.1099101023179432,0.010000191358858813,1.0573961369657627,0.09730550692167428 -72007,0.39414741218476634,0.014181381587540436,0.16198796168003915,0.16346202253538933,0.44172458919397517,0.9732873147808629,0.01457282039896661,0.9753017429418999,0.16630377296957227,0.9830902672535302,0.010000191358858813,0.9803206201358774,0.09730550692167428 -72009,0.39903156693107944,0.014962009147771606,0.16567458443001815,0.16850658872079063,0.4417170024717145,1.026682153937645,0.01457282039896661,0.9954560712862718,0.16630377296957227,1.044702250327344,0.010000191358858813,1.012679988333498,0.09730550692167428 -72011,0.4064551089838707,0.015242852380167482,0.16860432422617488,0.1695215395518519,0.44171022162139706,1.0461419114554573,0.01457282039896661,1.0142519843409852,0.16630377296957227,1.0733555859259245,0.010000191358858813,1.0383934662400058,0.09730550692167428 -72013,0.41157214720893465,0.01637163229068738,0.1743185237497314,0.17772999091451858,0.44169934897372903,1.122604347171893,0.01457282039896661,1.046793137058685,0.16630377296957227,1.1489222374809414,0.010000191358858813,1.0792255999537494,0.09730550692167428 -72015,0.3882799718092872,0.014052078026203223,0.15850289699011388,0.1619843274752159,0.4417378086059719,0.9645845601477934,0.01457282039896661,0.9537687594919291,0.16630377296957227,0.9800755128365011,0.010000191358858813,0.9625855621938826,0.09730550692167428 -72017,0.39248330028976286,0.01504764785994059,0.16399400467832462,0.1696477416243264,0.4417265163013928,1.0328683987801963,0.01457282039896661,0.9845750084001543,0.16630377296957227,1.0431632713161085,0.010000191358858813,0.9941534196992984,0.09730550692167428 -72019,0.36746847520239134,0.012138139602886665,0.1471778944646887,0.1509865343579614,0.44175453803557113,0.8329829925960991,0.01457282039896661,0.888318185056714,0.16630377296957227,0.8202133702128951,0.010000191358858813,0.8621839849872748,0.09730550692167428 -72021,0.40933392787259953,0.016388863070694835,0.17363241946503755,0.17778339715622543,0.4417016701106645,1.123995374554654,0.01457282039896661,1.0433860445683276,0.16630377296957227,1.1495712610718936,0.010000191358858813,1.0721971429835069,0.09730550692167428 -72023,0.4205869921979532,0.017520180258309023,0.18023178976986573,0.18551701905649431,0.44168917709474986,1.2012689403595034,0.01457282039896661,1.0818178668923992,0.16630377296957227,1.2362786118872955,0.010000191358858813,1.1317796696333953,0.09730550692167428 -72025,0.40249248166968044,0.015400990063292718,0.16864697761208614,0.1718892393725654,0.4417124057626898,1.0570635884799966,0.01457282039896661,1.012946840061713,0.16630377296957227,1.0712013967328475,0.010000191358858813,1.0299093722249628,0.09730550692167428 -72027,0.39813858047125894,0.014665092015032707,0.16466897843008427,0.1666879945860984,0.4417200972124493,1.0061898546252925,0.01457282039896661,0.989093610368687,0.16630377296957227,1.0194508073965036,0.010000191358858813,1.0000929445923505,0.09730550692167428 -72029,0.3847141810018118,0.013125781091959545,0.15509866437084796,0.15629505094357182,0.4417401579037764,0.9010269507167961,0.01457282039896661,0.935426122319353,0.16630377296957227,0.9067111339408167,0.010000191358858813,0.9300985915823761,0.09730550692167428 -72031,0.4102199804072281,0.01608784872787848,0.17274747865033585,0.1756719758641629,0.44170329736077796,1.1037731580448462,0.01457282039896661,1.0374480324119497,0.16630377296957227,1.1313219218122794,0.010000191358858813,1.0679107664049505,0.09730550692167428 -72033,0.3878505362966721,0.014041192287612182,0.15952962504524004,0.1628853476195245,0.4417332357722745,0.9638450362886549,0.01457282039896661,0.9597310087719098,0.16630377296957227,0.9696356767343688,0.010000191358858813,0.9616511127051355,0.09730550692167428 -72035,0.40263559037040886,0.01521447277513019,0.16765088816997703,0.1702297152541783,0.441714602535337,1.0439617931834544,0.01457282039896661,1.0069866054353187,0.16630377296957227,1.0628234613619654,0.010000191358858813,1.0263284365894738,0.09730550692167428 -72037,0.39875520303179063,0.01511191533474998,0.16681841429893646,0.17089780014135988,0.441717270386232,1.0372659257640462,0.01457282039896661,1.0028441365067935,0.16630377296957227,1.0425532867280634,0.010000191358858813,1.0139269696809206,0.09730550692167428 -72039,0.3896388802593029,0.0144699045537784,0.1613942286997863,0.1659142303159396,0.44172796542552295,0.9934412491896378,0.01457282039896661,0.971780091038252,0.16630377296957227,1.0010459973207326,0.010000191358858813,0.978625906377977,0.09730550692167428 -72041,0.3874767404088454,0.01314487348961682,0.15690769303481777,0.15692808533476255,0.44173419746176634,0.9024325507817093,0.01457282039896661,0.9457466343850416,0.16630377296957227,0.9020768886775148,0.010000191358858813,0.9351743408422255,0.09730550692167428 -72043,0.38419722400808964,0.013847034772693221,0.15726259567103218,0.16114357213087346,0.4417387562220583,0.9505929897624873,0.01457282039896661,0.9460298876109954,0.16630377296957227,0.9592469181913021,0.010000191358858813,0.9464665128672862,0.09730550692167428 -72045,0.38632531370713186,0.013324402960683629,0.1565741972370644,0.15798824999819017,0.441732946520039,0.9143720425568205,0.01457282039896661,0.945900591288913,0.16630377296957227,0.9195310858662608,0.010000191358858813,0.9418261125374868,0.09730550692167428 -72047,0.38554505246993126,0.01344741329977573,0.1564125872985631,0.1584095950165135,0.44173591528442513,0.9232247964050599,0.01457282039896661,0.9442158146273514,0.16630377296957227,0.931471764079578,0.010000191358858813,0.9431591645521162,0.09730550692167428 -72049,0.4203991833742442,0.015189431933998684,0.1739170439336265,0.17024789004819102,0.44170003330070273,1.0425214492422215,0.01457282039896661,1.0461679597216975,0.16630377296957227,1.0600631556432547,0.010000191358858813,1.0676907299032434,0.09730550692167428 -72051,0.39134221208783554,0.013604814819184014,0.15961298252747302,0.1603888059210904,0.44173094825569004,0.9346582517405733,0.01457282039896661,0.9609426582811369,0.16630377296957227,0.9340334236311616,0.010000191358858813,0.957237369911619,0.09730550692167428 -72053,0.4040493864656251,0.016410357923591346,0.17119624982662723,0.17804034579131217,0.4417086332738936,1.1254644690436995,0.01457282039896661,1.0284862761193718,0.16630377296957227,1.1528745628900503,0.010000191358858813,1.0625622555063972,0.09730550692167428 -72054,0.38692673738041705,0.013532306739160302,0.15757756236433595,0.15965815815350756,0.4417386408065621,0.9295585765629089,0.01457282039896661,0.9478832967612683,0.16630377296957227,0.9309052386164929,0.010000191358858813,0.94446433348574,0.09730550692167428 -72055,0.4065196334025678,0.015828253511772226,0.16956635603591125,0.17448221179463758,0.441712988958925,1.0861462342021957,0.01457282039896661,1.018014177589205,0.16630377296957227,1.114450333347984,0.010000191358858813,1.0548267156590323,0.09730550692167428 -72057,0.3850020986223156,0.013370869054127096,0.15642043341133582,0.15785501227316756,0.44173762818330436,0.9178545718992481,0.01457282039896661,0.9412548617139433,0.16630377296957227,0.9238600640322283,0.010000191358858813,0.9340858752492243,0.09730550692167428 -72059,0.39670317719975734,0.014940421604125493,0.1640771409881618,0.16726018779150648,0.4417250896676811,1.0256727613102397,0.01457282039896661,0.9856226833971329,0.16630377296957227,1.0525766606450258,0.010000191358858813,1.006818449830914,0.09730550692167428 -72061,0.4159525709181354,0.016428065229676374,0.17706067648745075,0.17901347946960477,0.44169162358276015,1.1267689417309805,0.01457282039896661,1.0631280137422154,0.16630377296957227,1.1414094930737044,0.010000191358858813,1.0875218054091307,0.09730550692167428 -72063,0.38623822682982456,0.012966914782184678,0.15583321181733176,0.15535411791110232,0.441735866518283,0.8904076478152627,0.01457282039896661,0.9397584444669451,0.16630377296957227,0.890969207263808,0.010000191358858813,0.9261263353532324,0.09730550692167428 -72065,0.40090413817913506,0.014758203394267283,0.16510310849056434,0.16618950303539243,0.44172050727033196,1.0130345776521854,0.01457282039896661,0.9930953051325098,0.16630377296957227,1.03773006915625,0.010000191358858813,1.0101151549519778,0.09730550692167428 -72067,0.43492233319910667,0.019257672367131294,0.19106820281302772,0.19721569861668367,0.44166167672050216,1.3216992599085868,0.01457282039896661,1.1462676941019976,0.16630377296957227,1.3616712380638056,0.010000191358858813,1.211403692020872,0.09730550692167428 -72069,0.40465142578999885,0.01525300532449651,0.16843812149647777,0.17017647448757106,0.44171151975246326,1.046848033660595,0.01457282039896661,1.0122269929743113,0.16630377296957227,1.0687506041543755,0.010000191358858813,1.0345443224799071,0.09730550692167428 -72071,0.40409858828124123,0.015455094516006141,0.16945905756507357,0.1720912779355388,0.4417104448690675,1.0605785315929315,0.01457282039896661,1.0171270318291186,0.16630377296957227,1.075282003602693,0.010000191358858813,1.0348018964303223,0.09730550692167428 -72073,0.3732912563185431,0.012506682320261107,0.15028963982541782,0.1531695925476539,0.4417516682015241,0.8586522105007213,0.01457282039896661,0.9047296855092878,0.16630377296957227,0.850014360113868,0.010000191358858813,0.8829811628437954,0.09730550692167428 -72075,0.37792122424478036,0.012932322114737282,0.15280880010843323,0.15551789332311572,0.4417464655505572,0.8877252251689647,0.01457282039896661,0.9196920282835481,0.16630377296957227,0.886557918815835,0.010000191358858813,0.9072656738080523,0.09730550692167428 -72077,0.38087816714891276,0.012809499750137208,0.15390282033287883,0.15510245545563967,0.4417452025676512,0.8793901772866866,0.01457282039896661,0.9257812272961201,0.16630377296957227,0.872456205614553,0.010000191358858813,0.907439191750096,0.09730550692167428 -72079,0.42164944952495476,0.017570269264385478,0.1794718893141356,0.18497477958049427,0.4416923418767821,1.205593206439924,0.01457282039896661,1.0775633353444298,0.16630377296957227,1.2536463057880116,0.010000191358858813,1.1375080546147631,0.09730550692167428 -72081,0.3977570421991726,0.014969918331659147,0.1661969138585169,0.17016903544041145,0.4417169797118006,1.0276153099480556,0.01457282039896661,0.9985949000681901,0.16630377296957227,1.0289282131510529,0.010000191358858813,1.0069940479393904,0.09730550692167428 -72083,0.3938693936409844,0.014359605749680732,0.16296886869514465,0.16555499128951445,0.44172064958102886,0.9853317983282748,0.01457282039896661,0.9808949035155341,0.16630377296957227,0.9889247738766502,0.010000191358858813,0.9846384787432363,0.09730550692167428 -72085,0.38982850865097196,0.013427530190565617,0.15859545132957867,0.15919068003406373,0.44173344029061995,0.9218975655992689,0.01457282039896661,0.9538024971413412,0.16630377296957227,0.9207678104113832,0.010000191358858813,0.9468022912889635,0.09730550692167428 -72087,0.3700272557166553,0.01220238201811091,0.1479549250361306,0.15042488047191493,0.4417570126348925,0.8373922491611555,0.01457282039896661,0.8917344054815254,0.16630377296957227,0.8321045457333234,0.010000191358858813,0.8685247756585077,0.09730550692167428 -72089,0.4017813298218007,0.015440036487192272,0.16731938821528253,0.1707183956187961,0.4417171940697614,1.0596867972599686,0.01457282039896661,1.0049457579654986,0.16630377296957227,1.0898356844748636,0.010000191358858813,1.0338120025553281,0.09730550692167428 -72091,0.4019985206447825,0.015343242582633268,0.16720971572506685,0.17077323131832,0.44171774591542556,1.0533413919313537,0.01457282039896661,1.0042536233699493,0.16630377296957227,1.0772387016978446,0.010000191358858813,1.0305376054024027,0.09730550692167428 -72093,0.3874594964102124,0.013599341892282207,0.1586488981614022,0.16071632289123478,0.4417317871719888,0.9335899385366964,0.01457282039896661,0.9546071232051393,0.16630377296957227,0.9305142484638269,0.010000191358858813,0.9501509341786186,0.09730550692167428 -72095,0.4030882523055394,0.015444551755179635,0.1687952919483757,0.17279432744465903,0.4417108517844379,1.0598380830536303,0.01457282039896661,1.0144270883126385,0.16630377296957227,1.071735531004347,0.010000191358858813,1.0350923969121077,0.09730550692167428 -72097,0.4109570318555741,0.0174065889240526,0.17715212662275182,0.18513054150843594,0.44169459675858097,1.1940253176443179,0.01457282039896661,1.0647459488320097,0.16630377296957227,1.2235399257059734,0.010000191358858813,1.1041375741789,0.09730550692167428 -72099,0.38577827961299777,0.013057773711562404,0.1555977471055163,0.15587872608248604,0.4417395381663576,0.8963338538861599,0.01457282039896661,0.93745958376971394,0.16630377296957227,0.9002112905224625,0.010000191358858813,0.9284701906907602,0.09730550692167428 -72101,0.36871547698307483,0.012133642471247603,0.14726694518473485,0.150374926324934,0.44175824048707457,0.8328689259931714,0.01457282039896661,0.8869801447006722,0.16630377296957227,0.824575963429355,0.010000191358858813,0.8620449897191536,0.09730550692167428 -72103,0.3877790496181115,0.014197245595361063,0.15929329455584806,0.16361748850941543,0.44173747558012755,0.9746312514754981,0.01457282039896661,0.9585784996707619,0.16630377296957227,0.9850362067662172,0.010000191358858813,0.9628990942369066,0.09730550692167428 -72105,0.38774791077403337,0.013696740110910212,0.15839143911722103,0.16032264523665987,0.44173333559037353,0.9398376309276453,0.01457282039896661,0.9531729011367365,0.16630377296957227,0.9455376248428731,0.010000191358858813,0.9514830385388402,0.09730550692167428 -72107,0.3756247517450333,0.013108599993003602,0.15277668091644475,0.15655180987861267,0.44174483441433554,0.8995382695287474,0.01457282039896661,0.9196315400698848,0.16630377296957227,0.8979101174330297,0.010000191358858813,0.9065855894316688,0.09730550692167428 -72109,0.40326453916067995,0.015364380533873834,0.16794842116966913,0.17045232420272477,0.441713976710058,1.054742130105792,0.01457282039896661,1.0093791461188393,0.16630377296957227,1.0816440705337846,0.010000191358858813,1.0356313590278823,0.09730550692167428 -72111,0.37061487255790027,0.012334561136416823,0.14886466577709012,0.15236107280949185,0.44175487237914035,0.8462088507594734,0.01457282039896661,0.8977814378079985,0.16630377296957227,0.833439106463137,0.010000191358858813,0.8746386310095039,0.09730550692167428 -72113,0.3991511960589723,0.01566005636969283,0.16764472088105786,0.1732840782338987,0.44171758913951936,1.0747074522188955,0.01457282039896661,1.007693737800508,0.16630377296957227,1.0940550282883432,0.010000191358858813,1.030498623427572,0.09730550692167428 -72115,0.39799555256719316,0.014571075519149766,0.16389094559644862,0.16635464772671074,0.441721035284268,0.9999462728575657,0.01457282039896661,0.9859574548074406,0.16630377296957227,1.0141629475014162,0.010000191358858813,0.9993663498221511,0.09730550692167428 -72117,0.42391936562544896,0.01687687089989345,0.18001597647721887,0.1817811582879392,0.4416856784715005,1.1577212674951025,0.01457282039896661,1.0812195395720785,0.16630377296957227,1.1861387836500712,0.010000191358858813,1.125288214135145,0.09730550692167428 -72119,0.3965122058112078,0.014412749185281381,0.16312288660797597,0.16525303542405168,0.4417235257090405,0.9893161343808189,0.01457282039896661,0.9813794224091308,0.16630377296957227,1.0014008799975829,0.010000191358858813,0.9907503461077725,0.09730550692167428 -72121,0.4086614564812592,0.016587413537366216,0.17352506178775262,0.17931125447817678,0.4417051864334336,1.1375852018560313,0.01457282039896661,1.0423446951511663,0.16630377296957227,1.1651234845281828,0.010000191358858813,1.0792425329366364,0.09730550692167428 -72123,0.38508339373771416,0.014157429324201241,0.15815032941825696,0.1631439733599711,0.4417366055620895,0.9717544668436777,0.01457282039896661,0.9517245512863319,0.16630377296957227,0.9841266889828574,0.010000191358858813,0.9574984922303161,0.09730550692167428 -72125,0.41800810506392605,0.017608768273622122,0.17989113044408317,0.18697582827368747,0.4416899082443109,1.2075550812925995,0.01457282039896661,1.0814471251753786,0.16630377296957227,1.2343552076703899,0.010000191358858813,1.1275522523838784,0.09730550692167428 -72127,0.4151354089592323,0.017289005645165445,0.17953635944876897,0.18532955287953148,0.4416886434278605,1.1859341681136466,0.01457282039896661,1.078806765655341,0.16630377296957227,1.1999472654710495,0.010000191358858813,1.1063205891585766,0.09730550692167428 -72129,0.39511565353604783,0.014305603972509373,0.16277162960366015,0.1641876431173678,0.4417226658034059,0.9816350254675672,0.01457282039896661,0.9800976041584915,0.16630377296957227,0.9919478638339053,0.010000191358858813,0.9844053234139389,0.09730550692167428 -72131,0.41247143833859756,0.016497463794058878,0.17504632487057586,0.17939959283919568,0.44170056685238934,1.1316582186531279,0.01457282039896661,1.0509930006178942,0.16630377296957227,1.1512546801821688,0.010000191358858813,1.085087402273524,0.09730550692167428 -72133,0.37316362686248433,0.012518970400395603,0.14911278321868454,0.152052266552247,0.44175685164854495,0.859112584796427,0.01457282039896661,0.8986245037443804,0.16630377296957227,0.8610014263938504,0.010000191358858813,0.8852314667326807,0.09730550692167428 -72135,0.37021807754610436,0.011171363842020101,0.1448917498140308,0.14309570028593238,0.44176093942108263,0.766509901608198,0.01457282039896661,0.874553849109058,0.16630377296957227,0.7572837076184378,0.010000191358858813,0.8391633553591715,0.09730550692167428 -72137,0.39307416905170645,0.014130404802669937,0.16162913548835867,0.16332857408317217,0.44172721653179525,0.9698441783568376,0.01457282039896661,0.9716643247261986,0.16630377296957227,0.9774125900527495,0.010000191358858813,0.9736875981607673,0.09730550692167428 -72139,0.39207096093854177,0.013681484690062303,0.1599851132613852,0.16009767297694444,0.4417294230284027,0.9393322156266299,0.01457282039896661,0.9632647745599194,0.16630377296957227,0.9445049110062828,0.010000191358858813,0.9602656807255556,0.09730550692167428 -72141,0.4025549164725774,0.015550043185056525,0.16859049304707935,0.1727118012646881,0.4417129145762122,1.0671955547444174,0.01457282039896661,1.0134313283505836,0.16630377296957227,1.0867842698470245,0.010000191358858813,1.0390648413023302,0.09730550692167428 -72143,0.3881945817094344,0.013748628050114751,0.158513624814494,0.16050404794676504,0.4417340426313375,0.9436010132505082,0.01457282039896661,0.9541695935445977,0.16630377296957227,0.9510807559307413,0.010000191358858813,0.9540687757828956,0.09730550692167428 -72145,0.3955352522820046,0.014683894762036617,0.16368831290579952,0.16671922727335953,0.44172393035218915,1.00782674068917,0.01457282039896661,0.9842594516738531,0.16630377296957227,1.0217704621251458,0.010000191358858813,0.9959843065882049,0.09730550692167428 -72147,0.4185029514663581,0.017508210363036847,0.17901224356430864,0.18525279338284184,0.4416927986497673,1.200829812361738,0.01457282039896661,1.07516033120584,0.16630377296957227,1.238463648298811,0.010000191358858813,1.1298201882272225,0.09730550692167428 -72149,0.3711549857726605,0.012346814141885813,0.14819989464336036,0.15101246831473603,0.44175590503218043,0.847410422624994,0.01457282039896661,0.89416826151915,0.16630377296957227,0.8482836076986047,0.010000191358858813,0.8782662785031692,0.09730550692167428 -72151,0.39253753521895973,0.01401753466405207,0.16148197170774586,0.16269307450156892,0.4417266807325019,0.9621059108539907,0.01457282039896661,0.9710788630105163,0.16630377296957227,0.9658081411276416,0.010000191358858813,0.9711849265999657,0.09730550692167428 -72153,0.4034939693253945,0.015279443807971235,0.16858257615833902,0.17113381507231157,0.4417117248799126,1.048585125802111,0.01457282039896661,1.0127749663864545,0.16630377296957227,1.0626911443220575,0.010000191358858813,1.0318482521306356,0.09730550692167428 +geoid,p_symp_inf,p_death_inf,p_hosp_inf,p_mild_inf,p_icu_inf,p_vent_inf,p_death_symp,p_hosp_symp,p_mild_symp,p_icu_hosp,p_vent_icu,rr_death_inf,death_inf_overall,rr_hosp_inf,hosp_inf_overall,rr_symp_inf,symp_inf_overall,rr_icu_inf,icu_inf_overall,rr_vent_inf,vent_inf_overall +01001,0.4818773200786389,0.009024908092667509,0.07854773093020528,0.40449511040097275,0.025538099326821058,0.011681155428770898,0.01872864257482529,0.16300358547147822,0.8369964145285218,0.3251284158610935,0.4574011275969514,0.8960002665639852,0.010098041051706573,0.9363505979316344,0.08405206988062329,0.98685788171943,0.48829110990902336,0.8773197061974339,0.02915578159137823,0.8883638343910594,0.013054262827494433 +01003,0.5089041825031781,0.012395728104184309,0.09667276018276214,0.41370079091211864,0.03538454986992358,0.015903579655445445,0.024357685651575277,0.18996259709883284,0.8100374029011672,0.36602399479468933,0.44944982241990555,1.2288495532768586,0.010098041051706573,1.1491805666923065,0.08405206988062329,1.042069695258692,0.48829110990902336,1.2129691260607003,0.02915578159137823,1.2179179451363025,0.013054262827494433 +01005,0.49576152571034926,0.010773605470889982,0.08839332080486065,0.40888164292203044,0.030777601779634477,0.01388669134440225,0.0217314271321339,0.17829806513969948,0.8217019348603005,0.3481892240204426,0.4511947176336223,1.067618092324831,0.010098041051706573,1.0515167747164011,0.08405206988062329,1.0153525409407285,0.48829110990902336,1.057330722507091,0.02915578159137823,1.0624392293748188,0.013054262827494433 +01007,0.4911518495562564,0.00987378443207865,0.08419111568292201,0.4081223887064602,0.027966429945015477,0.01278212426115078,0.020103323322510892,0.17141565436226414,0.8285843456377359,0.332177923028622,0.4570524119911476,0.9794898048767187,0.010098041051706573,1.0035877293607993,0.08405206988062329,1.005796209553754,0.48829110990902336,0.961387782517034,0.02915578159137823,0.9726436796599922,0.013054262827494433 +01009,0.4977281038902311,0.011048127728722991,0.08914291496828927,0.410205503888655,0.031179882277154146,0.014163644612607388,0.022197114533760675,0.1790996214028309,0.8209003785971691,0.34977409352437866,0.4542558719981201,1.0953645270397487,0.010098041051706573,1.0603306326892086,0.08405206988062329,1.0191791294255124,0.48829110990902336,1.0698021403586142,0.02915578159137823,1.0812821847789666,0.013054262827494433 +01011,0.49224095155175707,0.010141757189639673,0.0858524684083937,0.40785955650282235,0.0291660055247382,0.01307757033158926,0.020603237413848754,0.17441147092242013,0.8255885290775798,0.339722387316783,0.448384003784716,1.0040714160437965,0.010098041051706573,1.0225898969172615,0.08405206988062329,1.008372048190825,0.48829110990902336,1.0023026767553107,0.02915578159137823,1.0045996256209944,0.013054262827494433 +01013,0.5044019286682232,0.012256866565569131,0.09507670249419782,0.4109284360425932,0.03548066209203202,0.015820374194216107,0.024299801148522652,0.1884939313083708,0.8115060686916292,0.3731793505795731,0.44588723156237065,1.2157095376670022,0.010098041051706573,1.1294641203980773,0.08405206988062329,1.0327438833683318,0.48829110990902336,1.215640972641074,0.02915578159137823,1.2124768783758724,0.013054262827494433 +01015,0.49516764753013676,0.010944011096743818,0.08858906238914221,0.4083064067633615,0.0314070649452259,0.014077159581322482,0.022101627905885646,0.1789072101762273,0.8210927898237728,0.3545253115702381,0.4482163362247675,1.0842484800063574,0.010098041051706573,1.0538317300992373,0.08405206988062329,1.014200217592192,0.48829110990902336,1.0770886841726743,0.02915578159137823,1.0788833479640771,0.013054262827494433 +01017,0.5066680273039497,0.012309946284125111,0.09605459187932697,0.41225550294777374,0.03551030271757939,0.015847746100403275,0.024295881367585065,0.18958092222721587,0.8104190777727841,0.3696887574327613,0.44628586318859625,1.2205124273302128,0.010098041051706573,1.1402845066966378,0.08405206988062329,1.0377362520658633,0.48829110990902336,1.2165245653547667,0.02915578159137823,1.21711786145833,0.013054262827494433 +01019,0.5192020598457873,0.012861591075087716,0.10142801222741961,0.4184890797983929,0.036335185759919904,0.016503308123627297,0.02477184138851038,0.19535363988645504,0.804646360113545,0.35823620084804547,0.45419633279628174,1.2754098533839273,0.010098041051706573,1.2094048600507477,0.08405206988062329,1.0636723986312113,0.48829110990902336,1.2458069909599028,0.02915578159137823,1.259270989277164,0.013054262827494433 +01021,0.49108974568782204,0.010268153657606631,0.08516476195514554,0.4075016184870538,0.029195256875787754,0.013217512514514739,0.02090891481194546,0.17341995572695876,0.8265800442730412,0.3428091173572971,0.45272807739795234,1.018220620865523,0.010098041051706573,1.0142082266430186,0.08405206988062329,1.0058665840469894,0.48829110990902336,1.0022616861648777,0.02915578159137823,1.009965990546612,0.013054262827494433 +01023,0.5169446122219628,0.01317826621362814,0.10147805604385074,0.41690711476325837,0.03807037780698827,0.01698308681058832,0.025492607722487938,0.19630353744799,0.80369646255201,0.3751587219067074,0.4460971439971072,1.307239724366086,0.010098041051706573,1.204769714789664,0.08405206988062329,1.058600851939151,0.48829110990902336,1.3034754839555922,0.02915578159137823,1.3043709079764456,0.013054262827494433 +01025,0.4975626523539692,0.011490810833797584,0.09055707052675682,0.4090233200250851,0.03305712163043534,0.014768805185437245,0.023094198850003213,0.18200134213918845,0.8179986578608116,0.3650418618684002,0.4467662172933945,1.1389280245051672,0.010098041051706573,1.0757251836139332,0.08405206988062329,1.0187503206899493,0.48829110990902336,1.1328876846284728,0.02915578159137823,1.1340081470236414,0.013054262827494433 +01027,0.5080330786300773,0.012791245548851356,0.09900444738563757,0.4113469488494902,0.03865867567836302,0.01692006259363206,0.025177977747715248,0.19487795490129364,0.8051220450987063,0.39047413221530874,0.4376782778180396,1.2656696106947984,0.010098041051706573,1.1697361125836083,0.08405206988062329,1.0402248773012857,0.48829110990902336,1.3190730804792494,0.02915578159137823,1.2904664830159835,0.013054262827494433 +01029,0.5045361507775048,0.01153082216862909,0.09269976661200276,0.4128293546483829,0.03233708504851901,0.014802094199043474,0.022854303206737037,0.18373265517079349,0.8162673448292065,0.34883674717183166,0.45774361470225927,1.1430533265758749,0.010098041051706573,1.1025601893531554,0.08405206988062329,1.0330424495722674,0.48829110990902336,1.1130737565508122,0.02915578159137823,1.1276134494689485,0.013054262827494433 +01031,0.4950018539524623,0.011113149274234534,0.08903233780989653,0.4077161125315873,0.03209307682099968,0.014348763231883433,0.022450722528610547,0.17986263505681088,0.8201373649431891,0.3604653950514633,0.4470983979477626,1.1007802411861887,0.010098041051706573,1.057963450312498,0.08405206988062329,1.0136775070741424,0.48829110990902336,1.1009111819921586,0.02915578159137823,1.0991525545560374,0.013054262827494433 +01033,0.5101585649681356,0.012609922975391893,0.09794862317544353,0.41365391480222324,0.03634494714632468,0.016240165114628585,0.024717654159505303,0.19199642993656568,0.8080035700634343,0.37106133775075495,0.44683419263882035,1.2504504063701245,0.010098041051706573,1.1638484422377229,0.08405206988062329,1.0446343253087558,0.48829110990902336,1.2456688965969427,0.02915578159137823,1.246241980799714,0.013054262827494433 +01035,0.5101167699090592,0.012833042697764365,0.09879816987263834,0.4129095325573424,0.037333584928920194,0.016601810360581143,0.025157068841418738,0.1936775571801953,0.8063224428198047,0.37787729243413387,0.44468835211484525,1.2717712054013834,0.010098041051706573,1.1730268752381572,0.08405206988062329,1.0449300995861086,0.48829110990902336,1.2768985386607674,0.02915578159137823,1.2719970858944394,0.013054262827494433 +01037,0.5173019482815794,0.012402194357634184,0.09993904847728932,0.4182166840832343,0.03545686430051735,0.015999701387495752,0.023974768312458362,0.19319287083544906,0.8068071291645509,0.3547848897978527,0.4512441160021672,1.2287849235378996,0.010098041051706573,1.1876896251587183,0.08405206988062329,1.0594615898305522,0.48829110990902336,1.2180562204255176,0.02915578159137823,1.2250782804633138,0.013054262827494433 +01039,0.5142444069730705,0.013354381040146596,0.10114555700069361,0.4145158164720041,0.03852014923417623,0.017194059840912483,0.025968937841740935,0.19668771430311408,0.803312285696886,0.38083876718294285,0.44636534859676497,1.323854216731535,0.010098041051706573,1.2010958640900231,0.08405206988062329,1.0530890476145527,0.48829110990902336,1.3205437879318924,0.02915578159137823,1.3191093332270696,0.013054262827494433 +01041,0.5061548105192875,0.012348457005198456,0.0959336758339388,0.4120742886401322,0.035754851165595944,0.01593500876421719,0.024396601096272518,0.1895342567929287,0.8104657432070713,0.37270385873139683,0.44567403428461716,1.22420299948636,0.010098041051706573,1.1380590078809214,0.08405206988062329,1.0364561519237157,0.48829110990902336,1.2240397705784638,0.02915578159137823,1.2222217407954434,0.013054262827494433 +01043,0.5017008093241011,0.011489458191742689,0.09203967790493667,0.4111898332359143,0.03298613318719096,0.014770102804617338,0.022901015860870268,0.1834553108035323,0.8165446891964677,0.3583903587891816,0.44776702745967223,1.139387697589484,0.010098041051706573,1.093834032402272,0.08405206988062329,1.0272230511312304,0.48829110990902336,1.130995718594158,0.02915578159137823,1.1338222900039452,0.013054262827494433 +01045,0.48937605973181925,0.010186755705808848,0.08406443633962765,0.40680311802337765,0.02928183433955604,0.013139869638938564,0.020815803109353666,0.17177880827618625,0.8282211917238138,0.3483260652727733,0.4487379269538544,1.0093096915256798,0.010098041051706573,1.001171472049898,0.08405206988062329,1.0022984233244299,0.48829110990902336,1.0043537776673208,0.02915578159137823,1.006250730151621,0.013054262827494433 +01047,0.49332030462019305,0.01080626082757067,0.0869282543914269,0.40836291214995474,0.031109017379362197,0.013899912028521647,0.021905161264121092,0.17621057470633184,0.8237894252936682,0.35787003428462094,0.4468129564819648,1.0703632272381758,0.010098041051706573,1.033658981384459,0.08405206988062329,1.009764543844898,0.48829110990902336,1.0658889580504187,0.02915578159137823,1.0664247332135735,0.013054262827494433 +01049,0.49291617009732847,0.010655265425740457,0.08659251370490198,0.4080444911081321,0.030358831755058255,0.01370006945321657,0.02161679018084663,0.17567391568388577,0.8243260843161142,0.3505941848335516,0.45127129936196986,1.0560496607645835,0.010098041051706573,1.0300879469686763,0.08405206988062329,1.0093145887309913,0.48829110990902336,1.0427047878310454,0.02915578159137823,1.0481614174583351,0.013054262827494433 +01051,0.487926846780221,0.009394949794567151,0.0817090122128808,0.4074133917990359,0.026780177360759445,0.01215687910655189,0.019254832679454832,0.1674616036237197,0.8325383963762802,0.32775059489138897,0.45395065696484765,0.9311648945656069,0.010098041051706573,0.973915627349636,0.08405206988062329,0.9988453643549584,0.48829110990902336,0.9196674556410438,0.02915578159137823,0.9278121981484548,0.013054262827494433 +01053,0.4969314421089631,0.011073968642236223,0.08952200763449641,0.40924117998460513,0.031707057508279735,0.014237729029226721,0.02228470107513948,0.1801496143101099,0.8198503856898901,0.35418170733764615,0.44903974534719254,1.0976728591842169,0.010098041051706573,1.0638284537199454,0.08405206988062329,1.0176600639174016,0.48829110990902336,1.0871016546050702,0.02915578159137823,1.0906431490271515,0.013054262827494433 +01055,0.5035791424561589,0.011870454072436386,0.09395354202580994,0.4110754414685175,0.03451391874070422,0.015364019397194301,0.023572171822961903,0.18657155172781892,0.8134284482721811,0.36735090552757355,0.445154301736089,1.1763014758084744,0.010098041051706573,1.115231927593646,0.08405206988062329,1.031024891946866,0.48829110990902336,1.1814567741294468,0.02915578159137823,1.1776598987946976,0.013054262827494433 +01057,0.5128894986650054,0.013028716884995985,0.1001817385407378,0.41435638684274234,0.037700116318020206,0.016805336413387946,0.025402580709701198,0.19532811414836873,0.8046718858516313,0.37631724970204894,0.44576351626149213,1.2921379156487287,0.010098041051706573,1.1892867202351365,0.08405206988062329,1.050688046603407,0.48829110990902336,1.290332285720058,0.02915578159137823,1.289159500269467,0.013054262827494433 +01059,0.4969884739449456,0.011228007436095266,0.08954833942308882,0.40939495685041016,0.031820303898994304,0.014414814272248827,0.02259208819667528,0.18018192396350952,0.8198180760364905,0.3553421995761752,0.4530068071632847,1.1132435251213217,0.010098041051706573,1.0645316470930006,0.08405206988062329,1.017809273408906,0.48829110990902336,1.0909849724546905,0.02915578159137823,1.0994668682299218,0.013054262827494433 +01061,0.5118196029992014,0.013071996614844962,0.10007306738824234,0.4133406011116887,0.03808431263194178,0.016930943102761824,0.02554024218346588,0.19552410029202905,0.804475899707971,0.38056505737143353,0.44456475469014073,1.2967684816673979,0.010098041051706573,1.188071859396956,0.08405206988062329,1.0480021089495626,0.48829110990902336,1.3027982496682236,0.02915578159137823,1.2968774415495106,0.013054262827494433 +01063,0.5052305247743458,0.012175563561372288,0.0951757477006624,0.41109433546804325,0.035094900945972764,0.01568993916553629,0.024099026017500295,0.18838083416114124,0.8116191658388587,0.36873785385274693,0.44707176092875545,1.2066988057186463,0.010098041051706573,1.1318559851298635,0.08405206988062329,1.0348371631385236,0.48829110990902336,1.2026406210037575,0.02915578159137823,1.2030758932952423,0.013054262827494433 +01065,0.49358539412841623,0.010780895770416476,0.08775690653736631,0.4074971412212385,0.03101253132613474,0.013876209127808323,0.0218420072770865,0.17779477995358708,0.8222052200464129,0.3533913460467047,0.44743877827588446,1.0680485400104358,0.010098041051706573,1.044343609368673,0.08405206988062329,1.010808758147332,0.48829110990902336,1.0631407546068306,0.02915578159137823,1.064400817317218,0.013054262827494433 +01067,0.5151568883291798,0.013320765747307462,0.10148471013204946,0.41540537970914415,0.03839802686006556,0.017115919119638695,0.025857687335815324,0.19699767669068186,0.8030023233093182,0.3783626795613149,0.44574996475768053,1.3207463098430143,0.010098041051706573,1.2049155286723487,0.08405206988062329,1.0556065987826273,0.48829110990902336,1.3142557569080104,0.02915578159137823,1.3157416035971852,0.013054262827494433 +01069,0.49507833128368683,0.01077426271515239,0.08786355666650136,0.40897653584050586,0.030874625051137073,0.013854080885895138,0.021762743457617792,0.17747405029559718,0.8225259497044028,0.3513928438877805,0.44872061969817867,1.067705753887771,0.010098041051706573,1.0449050835248261,0.08405206988062329,1.0137200596489133,0.48829110990902336,1.0590064773370291,0.02915578159137823,1.0621434573824664,0.013054262827494433 +01071,0.5090837010376159,0.012066741150216408,0.09575469373822748,0.41439784941172875,0.03414592070191677,0.015529565503635472,0.023702862860511816,0.18809224012291098,0.811907759877089,0.35659787911038904,0.45480002250352924,1.1965134319289406,0.010098041051706573,1.1398930833468568,0.08405206988062329,1.0423356665343948,0.48829110990902336,1.171994300769093,0.02915578159137823,1.1830343129011895,0.013054262827494433 +01073,0.48963807399454895,0.010334058170234429,0.08529221987462737,0.40578978951288125,0.030018340259003188,0.013385691258189893,0.021105503675250294,0.1741944191120581,0.8258055808879419,0.3519469923883762,0.445917100768928,1.0234122352538644,0.010098041051706573,1.0142916478178483,0.08405206988062329,1.002675873250984,0.48829110990902336,1.0295004551823081,0.02915578159137823,1.0259780495511113,0.013054262827494433 +01075,0.5152418447518252,0.013315378895018146,0.1013419613121535,0.41515335574837287,0.03798370434503338,0.017060331939497984,0.025842968754666497,0.1966881423634498,0.8033118576365502,0.3748072748270183,0.44914871347266944,1.320628417403399,0.010098041051706573,1.2047092774993422,0.08405206988062329,1.0554251034128743,0.48829110990902336,1.3008659186995501,0.02915578159137823,1.3052486861946,0.013054262827494433 +01077,0.5034412916690225,0.012139433251143047,0.09474785138303857,0.41041716598051015,0.03495902089759123,0.015616164898922692,0.024112907407531196,0.18820039784366488,0.8117996021563352,0.3689690097167678,0.4466991494031999,1.2037380956209576,0.010098041051706573,1.1255711117649292,0.08405206988062329,1.0312582916966822,0.48829110990902336,1.1976935005416123,0.02915578159137823,1.1988458597650136,0.013054262827494433 +01079,0.4999653607961553,0.010728541956847885,0.08939592512341744,0.4120570341513381,0.030552971238219758,0.013855950651356091,0.02145857052929333,0.17880423751969837,0.8211957624803017,0.3417714084399172,0.4535058323238693,1.063262051990638,0.010098041051706573,1.0628116552200253,0.08405206988062329,1.0237888450388026,0.48829110990902336,1.050125298702776,0.02915578159137823,1.058341161326247,0.013054262827494433 +01081,0.4585207302164614,0.0073524394225221775,0.06718908295534534,0.39188310540906385,0.0207666995359454,0.009464515639309272,0.016035129794570446,0.1465344498680055,0.8534655501319945,0.3090784785639535,0.45575444585823555,0.7291978664717234,0.010098041051706573,0.8030262620328029,0.08405206988062329,0.939430283883368,0.48829110990902336,0.7136979608712326,0.02915578159137823,0.7225327857117296,0.013054262827494433 +01083,0.49223593906054597,0.009720786474526608,0.08395620253515595,0.4097822196066995,0.027342608850753083,0.012507340080742405,0.019748225806265098,0.17056089544251904,0.8294391045574809,0.3256770557160871,0.45743038453325646,0.9650937799054687,0.010098041051706573,1.001306283789286,0.08405206988062329,1.0079540470955912,0.48829110990902336,0.9394361404140086,0.02915578159137823,0.9546820737424764,0.013054262827494433 +01085,0.49667745942363695,0.01066520507785251,0.08765228339073385,0.41045080474396045,0.029927142060783875,0.013608196628645507,0.02147310065213914,0.17647727257936938,0.8235227274206306,0.3414302617465824,0.4547108641716078,1.058030696139901,0.010098041051706573,1.0452859066320508,0.08405206988062329,1.016849965009621,0.48829110990902336,1.0272953341796556,0.02915578159137823,1.0416220277602046,0.013054262827494433 +01087,0.48730931360880214,0.010656749645525794,0.08563683005984732,0.40331706810539014,0.030724488561281946,0.013745621055761503,0.021868553191824947,0.17573403107290925,0.8242659689270908,0.35877657474955726,0.4473832340071337,1.0558127709708653,0.010098041051706573,1.0187043477944338,0.08405206988062329,0.9990020562727313,0.48829110990902336,1.052614400546192,0.02915578159137823,1.0530664078998888,0.013054262827494433 +01089,0.48741856506001335,0.00968663640038717,0.08247187867529787,0.4064551493664892,0.02750640817339795,0.012509169112379002,0.019873343148500106,0.16920134887587537,0.8307986511241247,0.33352469490472175,0.454772903591131,0.9609897158452269,0.010098041051706573,0.9830467149077657,0.08405206988062329,0.9982237744065503,0.48829110990902336,0.9442262416054926,0.02915578159137823,0.9536791277707997,0.013054262827494433 +01091,0.5041272615857713,0.012036048921897346,0.09424691867462591,0.4111001688406376,0.034394828414768305,0.01545643272934653,0.02387502093030443,0.1869506488860867,0.8130493511139133,0.36494379761646706,0.44938246363543166,1.1937854105888204,0.010098041051706573,1.1194568402910325,0.08405206988062329,1.0323885674938105,0.48829110990902336,1.179575855382104,0.02915578159137823,1.184326136310213,0.013054262827494433 +01093,0.5152089694220592,0.013257545849836315,0.10151902275597732,0.4153476568737715,0.03843578717057344,0.017133090059575643,0.02573236615951795,0.19704436215436485,0.8029556378456352,0.3786067490322683,0.44575879202215973,1.314936892102918,0.010098041051706573,1.2046493055942462,0.08405206988062329,1.055352323462865,0.48829110990902336,1.316323869702269,0.02915578159137823,1.3133491018635288,0.013054262827494433 +01095,0.495053567974331,0.010851468670389806,0.08791257038734543,0.4088993421680883,0.030983676718441325,0.013942873414076337,0.021919786811742493,0.17758193471277797,0.82241806528722206,0.35243738844088296,0.45000706471280766,1.0754855681255027,0.010098041051706573,1.0453735769122523,0.08405206988062329,1.0135789335627092,0.48829110990902336,1.063185398999875,0.02915578159137823,1.0678456837193733,0.013054262827494433 +01097,0.4865604986775751,0.00999973612065471,0.08311323958034708,0.4048054438136228,0.02865627885980435,0.012885597651382898,0.02055188645159859,0.17081789377937773,0.8291821062206223,0.3447859691728392,0.4496605338893912,0.9905907138776879,0.010098041051706573,0.9898465167107624,0.08405206988062329,0.9965919034426375,0.48829110990902336,0.9835988527749704,0.02915578159137823,0.9864987898340489,0.013054262827494433 +01099,0.49925871127708793,0.011691834588769975,0.09220371955066281,0.408757622555731,0.03411862114314688,0.01516794963601284,0.02341838875252198,0.1846812433473792,0.8153187566526208,0.37003519282538117,0.44456514149193566,1.1582792529733803,0.010098041051706573,1.094889062110311,0.08405206988062329,1.0224066012349309,0.48829110990902336,1.1672572072881933,0.02915578159137823,1.1607021404485596,0.013054262827494433 +01101,0.4804473825133265,0.009393737830267191,0.07949855195389434,0.4020445403152499,0.02705504239042869,0.012141935272505405,0.019552063705970197,0.16546775952450782,0.8345322404754922,0.3403211973737512,0.4487864072540089,0.929695251722624,0.010098041051706573,0.947461788980932,0.08405206988062329,0.9839540748562284,0.48829110990902336,0.928864877628104,0.02915578159137823,0.9293014316946524,0.013054262827494433 +01103,0.49510629176954923,0.010686844258428752,0.08773314320511821,0.4089286534306945,0.03041944874472626,0.013767018645379152,0.02158494940598133,0.17720062270174952,0.8227993772982505,0.3467269908887938,0.45257291678455885,1.0592530306299923,0.010098041051706573,1.043576225073833,0.08405206988062329,1.0138338321061082,0.48829110990902336,1.0446668426852805,0.02915578159137823,1.0515596572756762,0.013054262827494433 +01105,0.49376200831606576,0.012115054870622095,0.09068710169520841,0.4050508564568335,0.03466019995203816,0.015486653880479095,0.02453622325447736,0.1836656125174337,0.8163343874825663,0.3821954754770764,0.4468137489659351,1.2002537586175464,0.010098041051706573,1.0770490914514255,0.08405206988062329,1.011090054040281,0.48829110990902336,1.1868544970826531,0.02915578159137823,1.1868237866800198,0.013054262827494433 +01107,0.5059529788115023,0.012279164915911977,0.0953796129968632,0.41196092291004494,0.03490323967806089,0.015738996099522257,0.024269379626454774,0.18851477704689593,0.8114852229531041,0.3659402526534551,0.45093224138203164,1.2178630794554866,0.010098041051706573,1.1352060064418934,0.08405206988062329,1.036275175962571,0.48829110990902336,1.1963249274209469,0.02915578159137823,1.2022922552437474,0.013054262827494433 +01109,0.47579884298182973,0.009600941311008044,0.07899069017745511,0.39826276546397554,0.02749518214326041,0.012373594081931331,0.02017857221097676,0.1660169866795403,0.8339830133204598,0.34808130023287054,0.4500277182184201,0.9514084301580839,0.010098041051706573,0.9415704635962583,0.08405206988062329,0.9751314730247618,0.48829110990902336,0.9445257954362474,0.02915578159137823,0.9465793881195566,0.013054262827494433 +01111,0.504333071469768,0.012226028026161715,0.09498403904309666,0.41073757624509333,0.035028634018599965,0.015685007965120915,0.02424197166077497,0.18833593197901247,0.8116640680209876,0.3687844228513655,0.4477767519222212,1.2121285013010161,0.010098041051706573,1.1295818837970102,0.08405206988062329,1.032982491241997,0.48829110990902336,1.200616894630299,0.02915578159137823,1.202896529927554,0.013054262827494433 +01113,0.48822311459271384,0.010011460312321505,0.08341939264341855,0.40606201340996967,0.028449628271832183,0.012908238357915132,0.020505912180485922,0.17086325933791313,0.8291367406620869,0.3410433398075902,0.4537225665860635,0.9927947454577318,0.010098041051706573,0.9940636087796499,0.08405206988062329,0.9996815980786986,0.48829110990902336,0.9786693786111519,0.02915578159137823,0.9861269052643153,0.013054262827494433 +01115,0.4938869086642418,0.009927001646376062,0.08491290720704403,0.41042660374477813,0.027990552677445685,0.012796060365632998,0.020099746464680473,0.1719278355376903,0.8280721644623097,0.3296383741660856,0.45715640248660927,0.9852524488575266,0.010098041051706573,1.0129539099424205,0.08405206988062329,1.011239362632049,0.48829110990902336,0.9614640915764316,0.02915578159137823,0.9752192610702,0.013054262827494433 +01117,0.4820225677693152,0.008441506045104361,0.07692859419158168,0.4058031274224646,0.02385650998062439,0.010924352696134914,0.017512678056070333,0.15959542008082478,0.8404045799191753,0.3101123870951357,0.45791914680761675,0.8372940256608117,0.010098041051706573,0.9197615374808188,0.08405206988062329,0.9868961900357238,0.48829110990902336,0.8193735728027112,0.02915578159137823,0.8316880535789892,0.013054262827494433 +01119,0.4890597915410564,0.011099847552224464,0.08758094140915354,0.40348244409431633,0.03228106826339628,0.014377555390481259,0.0226962996022392,0.17908023297760955,0.8209197670223904,0.36858553635074787,0.44538660471729385,1.099972110025987,0.010098041051706573,1.041348743040883,0.08405206988062329,1.0023847746602328,0.48829110990902336,1.1052846654364066,0.02915578159137823,1.0993371364973614,0.013054262827494433 +01121,0.4969790138949678,0.010806492345522393,0.08871985279889515,0.4097043424345662,0.030915560792902724,0.01393579498755309,0.021744363531225993,0.17851830825525627,0.8214816917447437,0.34846271513750443,0.45076960049038883,1.0708788049291165,0.010098041051706573,1.0553057227422107,0.08405206988062329,1.017560546348519,0.48829110990902336,1.0611124847681839,0.02915578159137823,1.065801408781803,0.013054262827494433 +01123,0.5094818960304808,0.012477152522273887,0.09757430471631962,0.4133155858418391,0.03572655837770626,0.016039900275954023,0.024489883977206948,0.19151672606337722,0.8084832739366228,0.36614719911738075,0.44896292854122455,1.2365934217691614,0.010098041051706573,1.15823470019708,0.08405206988062329,1.0436475519024464,0.48829110990902336,1.2252361952672515,0.02915578159137823,1.2296525628952837,0.013054262827494433 +01125,0.47028929934724517,0.008662019250383988,0.07450204332254691,0.3973160587556044,0.02487009567262998,0.011176525850517413,0.018418491048821962,0.1584174750009296,0.8415825249990704,0.33381763188639185,0.44939617433065987,0.8576768783823316,0.010098041051706573,0.8886937763603386,0.08405206988062329,0.9633522632721602,0.48829110990902336,0.8538972669508875,0.02915578159137823,0.8555553552324929,0.013054262827494433 +01127,0.5079581796709265,0.012290523918953493,0.0963301681738062,0.4131421674408723,0.03527162057846778,0.015773439574774353,0.024195936616112246,0.18964192728663673,0.8103580727133632,0.3661534205445177,0.44719917361561623,1.2190564179502084,0.010098041051706573,1.14374477543703,0.08405206988062329,1.0401650147863855,0.48829110990902336,1.208391628285216,0.02915578159137823,1.211982598741522,0.013054262827494433 +01129,0.4993512648888306,0.011524402618998567,0.09133286846734538,0.4096715617276866,0.03311428206501557,0.01479589956302179,0.023078749227889148,0.18290304819329659,0.8170969518067034,0.36256697748253747,0.4468132370791543,1.1424008095929201,0.010098041051706573,1.085167498622436,0.08405206988062329,1.0222423635265736,0.48829110990902336,1.1350041403912123,0.02915578159137823,1.1371208669297195,0.013054262827494433 +01131,0.491990017974433,0.010440869761801193,0.08557075618055117,0.4079714252999026,0.02989075448499913,0.013431989172766765,0.02122171056394028,0.1739278299443018,0.8260721700556982,0.34931039316668805,0.4493693586593037,1.0347387801319698,0.010098041051706573,1.01851911264075,0.08405206988062329,1.0072630094124175,0.48829110990902336,1.0269054540062306,0.02915578159137823,1.0299831683858387,0.013054262827494433 +01133,0.514890985619088,0.012894033462913585,0.09979123001512609,0.41577442670130427,0.036135538367083955,0.01643891927314791,0.025042259085989286,0.19381040414824974,0.8061895958517502,0.3621113635096654,0.4549238787077877,1.2786697861856253,0.010098041051706573,1.1879439243096344,0.08405206988062329,1.0543969748943522,0.48829110990902336,1.2391713179673567,0.02915578159137823,1.256411039841228,0.013054262827494433 +02013,0.4750630292563509,0.004766271562257977,0.0675789302397208,0.4053956186973708,0.012774260113297194,0.0061759127748815725,0.010032924619958224,0.14225255614082782,0.8577474438591721,0.18902726142576434,0.4834653999610388,0.4727524895671389,0.010098041051706573,0.8072044934187397,0.08405206988062329,0.971914420608516,0.48829110990902336,0.4467299705729153,0.02915578159137823,0.47542813621529945,0.013054262827494433 +02016,0.48863573670908134,0.005162842490838292,0.07290602248088779,0.4145273906872504,0.013895104526902968,0.006723077548856838,0.01056583074666127,0.14920321418139293,0.8507967858186071,0.19058925523670625,0.4838450503081837,0.511836695742425,0.010098041051706573,0.8712902259859858,0.08405206988062329,1.0005926518673165,0.48829110990902336,0.4851735093281019,0.02915578159137823,0.5190959771612591,0.013054262827494433 +02020,0.4667706014845442,0.006734931773389721,0.06753523874307413,0.3993329868588048,0.018598145932704212,0.008614655017223631,0.014428783115238094,0.14468614460354004,0.85531385539646,0.2753843220049546,0.4631996677730682,0.6680258564013306,0.010098041051706573,0.8098172536469173,0.08405206988062329,0.955398152761439,0.48829110990902336,0.6416707810177047,0.02915578159137823,0.6592363160642707,0.013054262827494433 +02050,0.4436861816110965,0.005327821323802558,0.05476577688225552,0.38858138936266295,0.014543832396814905,0.006736690253523267,0.012008084868580703,0.12343358696318217,0.8765664130368178,0.2655642487841199,0.46319911215413895,0.5277294894757276,0.010098041051706573,0.6582912040545167,0.08405206988062329,0.9090069438976183,0.48829110990902336,0.502007432854415,0.02915578159137823,0.5159212133807526,0.013054262827494433 +02060,0.4925317275920805,0.009221102831152485,0.08141151537398131,0.4113665834522889,0.025384396231724365,0.011680014183078728,0.018721845344325697,0.16529192093266953,0.8347080790673305,0.31180350979975846,0.46012574325015976,0.9150526511651843,0.010098041051706573,0.9737877329299851,0.08405206988062329,1.0083857951354376,0.48829110990902336,0.8740115128122729,0.02915578159137823,0.8934949425957148,0.013054262827494433 +02068,0.4923896514825635,0.005950165657773896,0.07414033299938688,0.417316939292502,0.015394749198217015,0.007466856461782654,0.012084262209529,0.15057248416199165,0.8494275158380084,0.2076433781103239,0.4850261842945417,0.590506644317199,0.010098041051706573,0.8880931262039524,0.08405206988062329,1.0090814624903155,0.48829110990902336,0.537589154273939,0.02915578159137823,0.5745042371660418,0.013054262827494433 +02070,0.4600723927749641,0.0064817106387730335,0.06398999947931114,0.3959060352403016,0.017820161451608724,0.00823210381833079,0.014088458122162185,0.1390868056510634,0.8609131943489365,0.27848353799987496,0.46195450252711556,0.6430673124838903,0.010098041051706573,0.7660855767791671,0.08405206988062329,0.9420594551658703,0.48829110990902336,0.6143654004249368,0.02915578159137823,0.6297859523100902,0.013054262827494433 +02090,0.46040990111223346,0.006097519408813236,0.06354651705891709,0.3968505041295204,0.016793728483448556,0.007812490098255577,0.013243675677006895,0.1380216127094679,0.8619783872905321,0.2642745701999414,0.4652028348532225,0.6047486464980987,0.010098041051706573,0.7633061406682027,0.08405206988062329,0.9427942438438863,0.48829110990902336,0.5802485933544044,0.02915578159137823,0.5966717081966697,0.013054262827494433 +02100,0.5431567938012718,0.016945125539465797,0.12055192206508411,0.42374416645558244,0.05046044068811656,0.022202083892083745,0.031197484286030336,0.22194681801069618,0.7780531819893038,0.41857848322711727,0.4399898928610098,1.679339685723522,0.010098041051706573,1.4289946685021495,0.08405206988062329,1.1112313157978684,0.48829110990902336,1.719601224886302,0.02915578159137823,1.6896099771530912,0.013054262827494433 +02105,0.5262551413757077,0.01161585060048207,0.10046644230722204,0.4261290948011278,0.031637773273403114,0.01470541051989596,0.022072659604078247,0.19090823900473086,0.8090917609952691,0.31490886456052825,0.4648054840274849,1.1533411057139578,0.010098041051706573,1.1984917731128588,0.08405206988062329,1.077779721323851,0.48829110990902336,1.091622684402544,0.02915578159137823,1.1264268951545315,0.013054262827494433 +02110,0.4846732811120671,0.007747702740017199,0.07629224658144071,0.4088431660617827,0.021155712456513362,0.00984415950825515,0.015985413353590168,0.15740963976060457,0.8425903602393954,0.2772983285258219,0.4653192147742752,0.7684410914771596,0.010098041051706573,0.9130563858389384,0.08405206988062329,0.9929234490249674,0.48829110990902336,0.7313509863886872,0.02915578159137823,0.756052845257563,0.013054262827494433 +02122,0.49559030558693795,0.009072840071141001,0.08326270328976466,0.41258948346607494,0.025050664808893845,0.011567382230035997,0.018307137909802023,0.16800712675594998,0.83199287324405,0.30086297728905564,0.4617594909468901,0.8995939100173914,0.010098041051706573,0.9957904169966014,0.08405206988062329,1.0152480298054054,0.48829110990902336,0.8637814471252694,0.02915578159137823,0.8859755583474342,0.013054262827494433 +02130,0.48752358555945474,0.008636130354548875,0.0794233972019965,0.4085781689573521,0.02402802764493718,0.011060063245389162,0.017714282160602623,0.16291190735080982,0.8370880926491902,0.30253084722411216,0.4602984235253937,0.8569237206230856,0.010098041051706573,0.9495531074590107,0.08405206988062329,0.9982567437505374,0.48829110990902336,0.8263883632603228,0.02915578159137823,0.8447985804416914,0.013054262827494433 +02150,0.4671188410700457,0.006439403551078073,0.06645624923332559,0.4010338952197058,0.017446252781940376,0.008156036472137002,0.013785364632963856,0.14226839808279174,0.8577316019172083,0.26252238101321645,0.4674950302554246,0.6393387120094927,0.010098041051706573,0.7943011104540838,0.08405206988062329,0.9564262483587505,0.48829110990902336,0.6038528674140329,0.02915578159137823,0.6264151543565738,0.013054262827494433 +02164,0.4557946032462369,0.006403321730016061,0.060574752959248,0.39601941286637854,0.017210558751422377,0.00796275112973325,0.01404870019173253,0.13289923252233707,0.867100767477663,0.28412098953174225,0.4626666248749864,0.634623165137695,0.010098041051706573,0.7253074794264007,0.08405206988062329,0.9337839407237731,0.48829110990902336,0.5938554831296308,0.02915578159137823,0.6109222030659957,0.013054262827494433 +02170,0.47160050432226763,0.007009340928668815,0.06955968759608357,0.4027412817513162,0.01916948276305616,0.008884695314982035,0.014862878356633372,0.14749705939362193,0.8525029406063781,0.2755832210513761,0.4634812229834814,0.6955040594856174,0.010098041051706573,0.832064628155183,0.08405206988062329,0.966125240234252,0.48829110990902336,0.6621045759013712,0.02915578159137823,0.6826656237396921,0.013054262827494433 +02180,0.45178289836090163,0.005645272361915081,0.05835345894463092,0.39344881439439017,0.014885244631113407,0.007030137774952105,0.0124955423996714,0.1291626114143345,0.8708373885856655,0.2550876143475466,0.4722890318011693,0.5599006522005159,0.010098041051706573,0.7002158601140798,0.08405206988062329,0.9258325217056307,0.48829110990902336,0.5177902109306927,0.02915578159137823,0.5406053380069931,0.013054262827494433 +02185,0.44905335807291147,0.005907359731676895,0.05922419488989552,0.3899084676667992,0.016071512658167444,0.00748789071065895,0.013155139863618912,0.13188676540367716,0.8681132345963228,0.2713673472141952,0.4659107620995246,0.5856111465561256,0.010098041051706573,0.7099326588719708,0.08405206988062329,0.9198611534593184,0.48829110990902336,0.5577056805573141,0.02915578159137823,0.5743844885207745,0.013054262827494433 +02188,0.44510746437080084,0.005522530408832861,0.05615595959425729,0.38848194648214063,0.015281869973318245,0.007031111454905912,0.012407184446208853,0.12616270022260523,0.8738372997773948,0.2721326477854547,0.46009496659649984,0.5469643730045277,0.010098041051706573,0.6743203710470077,0.08405206988062329,0.91178815895461,0.48829110990902336,0.5267552958530056,0.02915578159137823,0.5376534474094179,0.013054262827494433 +02195,0.5050887907036835,0.00879830928865311,0.08559338307801481,0.4185849219087804,0.024034662255662413,0.011236679297134813,0.017419331908743042,0.16946205232305228,0.8305379476769477,0.2808004706830646,0.46751975033422916,0.872454451422453,0.010098041051706573,1.0243807472643207,0.08405206988062329,1.0350029108585885,0.48829110990902336,0.8284151109596791,0.02915578159137823,0.8599843129943454,0.013054262827494433 +02198,0.4920173212564517,0.008162916243351241,0.07908789803435416,0.4131864635660727,0.02172997341066572,0.010205651527366681,0.01659070908826099,0.16074210117722984,0.8392578988227701,0.27475725048637234,0.4696578009781385,0.810549821660246,0.010098041051706573,0.9493848671836396,0.08405206988062329,1.007910305881574,0.48829110990902336,0.7524321778278121,0.02915578159137823,0.7879245231977037,0.013054262827494433 +02220,0.4921293992067415,0.008754515665215061,0.08118118601390013,0.41135638374895234,0.024266828128734045,0.011184125139901867,0.01778905239013637,0.16495902529853995,0.83504097470146,0.2989218231497504,0.46088121119788567,0.8686704695810447,0.010098041051706573,0.9708862930729079,0.08405206988062329,1.0079645794460852,0.48829110990902336,0.8355773456128148,0.02915578159137823,0.8562147776575194,0.013054262827494433 +02230,0.4741183023616529,0.006217813817377604,0.06930765739165598,0.4047326839171753,0.01680890692040793,0.007908230473167428,0.013114477518386783,0.14618220188173364,0.8538177981182664,0.24252597119855288,0.4704785689285919,0.6173035519637079,0.010098041051706573,0.8300765378106096,0.08405206988062329,0.9711912358451472,0.48829110990902336,0.5836683993457639,0.02915578159137823,0.6056750975453481,0.013054262827494433 +02240,0.47985794090910794,0.007640900743508385,0.07355815872028516,0.40687059150643823,0.02063596299190179,0.009641285874061342,0.015923255805733727,0.1532915316164751,0.8467084683835249,0.28053941739315186,0.4672079455581932,0.7582018472400651,0.010098041051706573,0.8807503736314088,0.08405206988062329,0.9828863706350947,0.48829110990902336,0.7138316711285075,0.02915578159137823,0.739562985254954,0.013054262827494433 +02261,0.48661420735041006,0.007882025795793142,0.07711163550833292,0.4102949558458466,0.02148773443147891,0.009990933735260787,0.016197689415420848,0.15846564761888457,0.8415343523811154,0.2786574852138479,0.46495984800632856,0.7823383437982666,0.010098041051706573,0.9239049485627551,0.08405206988062329,0.997187949496484,0.48829110990902336,0.7422774498738085,0.02915578159137823,0.7666843937314932,0.013054262827494433 +02270,0.4298917209489092,0.004726322932473857,0.04830447718861423,0.38040883718869944,0.01292298880866934,0.005942118445988634,0.010994217153196956,0.11236428810955168,0.8876357118904483,0.2675319051318787,0.4598099196683035,0.4670176208602546,0.010098041051706573,0.5813472130194148,0.08405206988062329,0.8802169717420723,0.48829110990902336,0.4459130850027542,0.02915578159137823,0.4551549558339828,0.013054262827494433 +02275,0.5058546659343623,0.012294961184946532,0.0952389886367021,0.41144447508666243,0.03434576019599683,0.015605628099964013,0.024305323273506933,0.18827342130132677,0.8117265786986733,0.3606270991286132,0.4543683997940137,1.2196618319717967,0.010098041051706573,1.1337044410478438,0.08405206988062329,1.0355812311019132,0.48829110990902336,1.1795913016022332,0.02915578159137823,1.1910967734688802,0.013054262827494433 +02282,0.4888733674311272,0.009641592566867294,0.08170861107745664,0.4086342454316918,0.026681611581924843,0.012315922329032407,0.01972206548605986,0.16713655625547613,0.8328634437445239,0.32654589559271413,0.46158839735811497,0.9555989709751206,0.010098041051706573,0.972854684586592,0.08405206988062329,1.0013384794171771,0.48829110990902336,0.9215928563607372,0.02915578159137823,0.9400980648224107,0.013054262827494433 +02290,0.4808468812459782,0.00821565122825139,0.07553873132766059,0.40606921461011447,0.022523990127262895,0.010407436177490546,0.017085794976901714,0.15709518824770874,0.8429048117522913,0.2981780304141157,0.46206005768460406,0.814745357379816,0.010098041051706573,0.9038908113585492,0.08405206988062329,0.984958404273548,0.48829110990902336,0.7772518772863256,0.02915578159137823,0.7972767053585461,0.013054262827494433 +04001,0.4726081818159833,0.008789534563368033,0.07418292619344741,0.39991262591845034,0.024656273839240104,0.011264119017680159,0.018597931439939316,0.15696496389123366,0.8430350361087664,0.3323712760392296,0.4568459569812806,0.8726301395259555,0.010098041051706573,0.8864132212593974,0.08405206988062329,0.9676908641466024,0.48829110990902336,0.8474870294674379,0.02915578159137823,0.8585757120532693,0.013054262827494433 +04003,0.5056677638152566,0.0124705651480503,0.09582830539585943,0.41152686188759613,0.035553687922656896,0.01594800493430256,0.024661578293937607,0.18950843271644635,0.8104915672835536,0.3710144698457029,0.448561200430056,1.2357037402894981,0.010098041051706573,1.1390250359528902,0.08405206988062329,1.0353253941033205,0.48829110990902336,1.2185779992500696,0.02915578159137823,1.2229003909252032,0.013054262827494433 +04005,0.46493722866482273,0.007452614347571524,0.06895252237478858,0.3964178884748599,0.020885224771812212,0.009578073043583712,0.01602929145720051,0.14830501436248084,0.8516949856375191,0.302892831944442,0.458605217240026,0.7391118963882313,0.010098041051706573,0.8262497247560951,0.08405206988062329,0.9522633952236301,0.48829110990902336,0.7181175002777035,0.02915578159137823,0.7300034374535278,0.013054262827494433 +04007,0.534847542209383,0.01590052919876881,0.11402307867752624,0.4215510698518663,0.04556097485501508,0.020340179458409012,0.029729087158343985,0.21318800158735382,0.7868119984126462,0.3995767820290847,0.4464386357652768,1.5767470676990407,0.010098041051706573,1.3558464737836062,0.08405206988062329,1.0951733197503475,0.48829110990902336,1.5603343544213781,0.02915578159137823,1.562977611102426,0.013054262827494433 +04009,0.47403116462488193,0.00917944497810555,0.07628451014614551,0.3994356252319212,0.02615906200156868,0.011774488145267768,0.01936464448570502,0.1609272044518681,0.8390727955481319,0.3429144652230613,0.45011125186987544,0.9099472994104025,0.010098041051706573,0.9078475390642711,0.08405206988062329,0.9709009446482452,0.48829110990902336,0.8981075029678685,0.02915578159137823,0.900804163063039,0.013054262827494433 +04011,0.48314806520138365,0.009176521658389992,0.07901877864229889,0.4056434497697271,0.025934837361029528,0.011800301543370601,0.018993187222151195,0.1635498190588068,0.8364501809411932,0.3282110633275033,0.4549980930708319,0.9099021790959037,0.010098041051706573,0.943965585763006,0.08405206988062329,0.9892715744605303,0.48829110990902336,0.8909248004461914,0.02915578159137823,0.8999830039890591,0.013054262827494433 +04012,0.5683403160355401,0.021197570109063608,0.13918986364356958,0.4287781657955999,0.05973648830601101,0.026819886314261042,0.03729731907271216,0.24490584200411641,0.7550941579958836,0.4291726907570023,0.4489699189693124,2.10078976917642,0.010098041051706573,1.649259306257906,0.08405206988062329,1.1628658821570816,0.48829110990902336,2.0458452776545686,0.02915578159137823,2.056786123686299,0.013054262827494433 +04013,0.47695772014296256,0.009150172753251284,0.07746968325044595,0.40098500927328223,0.026339199988691032,0.011836303375975436,0.01918445255589662,0.1624246342573621,0.8375753657426379,0.3399936450435843,0.449379760245469,0.9064130394290324,0.010098041051706573,0.9233298483390708,0.08405206988062329,0.9768191591399771,0.48829110990902336,0.904007263600407,0.02915578159137823,0.904921322615273,0.013054262827494433 +04015,0.5328362264106546,0.015536353831970901,0.11265305819080026,0.4207442806306109,0.04410266985238598,0.019812546951402304,0.02915784074335272,0.21142154494574292,0.788578455054257,0.39149110162361833,0.44923690601308197,1.5399453107115262,0.010098041051706573,1.339537839236176,0.08405206988062329,1.091298419555239,0.48829110990902336,1.5111149974320954,0.02915578159137823,1.5186656770648388,0.013054262827494433 +04017,0.48157302460400164,0.00964564457948161,0.07943254740933958,0.4037937900027221,0.02699118991313558,0.012312543930536556,0.02002945365848355,0.16494393030975335,0.8350560696902467,0.3398001297131003,0.45616899329601296,0.957299913941881,0.010098041051706573,0.9477757999581202,0.08405206988062329,0.9861711598888832,0.48829110990902336,0.9277324291887652,0.02915578159137823,0.9404520568165522,0.013054262827494433 +04019,0.49538866735606063,0.011358897358783641,0.089881867593299275,0.4076291608344358,0.03288496613243337,0.014674667975258598,0.022929263641429717,0.18143706854056207,0.8185629314594379,0.3658687454207389,0.4462424536537823,1.1256261852946026,0.010098041051706573,1.0674666000627804,0.08405206988062329,1.0149464429639532,0.48829110990902336,1.1268274416437745,0.02915578159137823,1.1241642467748931,0.013054262827494433 +04021,0.4902338096371387,0.010368175630886971,0.08450949489515933,0.40736050063154905,0.029088779524682168,0.013249593168236158,0.0211494503787107,0.17238610074183086,0.8276138992581692,0.3442072344742929,0.45548810863631195,1.0286443876417806,0.010098041051706573,1.0045974894702048,0.08405206988062329,1.003743760695441,0.48829110990902336,0.9992660628807317,0.02915578159137823,1.011916229827805,0.013054262827494433 +04023,0.48588617326064376,0.010431632739476296,0.08332641531969745,0.40433618132222343,0.02966199257693406,0.013354133091414217,0.021469293249224565,0.17149369524248365,0.8285063047575163,0.35597346247441763,0.4502102499276714,1.0339839883307738,0.010098041051706573,0.991227692410666,0.08405206988062329,0.9949831083432636,0.48829110990902336,1.01760529073346,0.02915578159137823,1.022306095458997,0.013054262827494433 +04025,0.5371259607811127,0.01616820212305984,0.11654995449509543,0.4218451587669153,0.046601691721708596,0.020780535816016042,0.0301013231599294,0.21698812383896554,0.7830118761610345,0.39984307092689303,0.44591805679740565,1.6042282437845679,0.010098041051706573,1.3851556179657671,0.08405206988062329,1.1004378417701868,0.48829110990902336,1.5957435495365069,0.02915578159137823,1.5960046824361536,0.013054262827494433 +04027,0.48588864658979763,0.011267177882188607,0.08582148646957513,0.40173909560349236,0.03225183507162113,0.014415709092363727,0.02318880665614875,0.17662789009768387,0.8233721099023161,0.3758014035687303,0.4469732981193471,1.1159924571828745,0.010098041051706573,1.0193299100276834,0.08405206988062329,0.9947756706107728,0.48829110990902336,1.105056036270541,0.02915578159137823,1.1047854583252261,0.013054262827494433 +05001,0.5087215030970395,0.012458737840606046,0.09732713907175067,0.4129469685868601,0.03633323811740606,0.016178990505812313,0.0244902913770278,0.19131713222113467,0.8086828677788653,0.37331045034233246,0.44529448362218754,1.2355803564092445,0.010098041051706573,1.1572692483915419,0.08405206988062329,1.0418512597524232,0.48829110990902336,1.2434461158883647,0.02915578159137823,1.2367767200559654,0.013054262827494433 +05003,0.5024735409165568,0.011762602515733018,0.09264407370496,0.4116141377597736,0.03333246656889186,0.015100390004397456,0.02340939682968575,0.18437602413048237,0.8156239758695176,0.35979059680648845,0.453023480071234,1.1660583936584372,0.010098041051706573,1.1000044856108948,0.08405206988062329,1.0289685464540272,0.48829110990902336,1.1447320718699086,0.02915578159137823,1.1533062324631302,0.013054262827494433 +05005,0.5525608874159299,0.018653954771199216,0.12831731406992117,0.4254906550652567,0.05454874248814072,0.024111616246496652,0.03375909369632563,0.23222294047991981,0.7677770595200801,0.42510820058481474,0.442019653372187,1.8494552510517872,0.010098041051706573,1.5195311745896058,0.08405206988062329,1.1308353330731316,0.48829110990902336,1.865937199803878,0.02915578159137823,1.8485337595951332,0.013054262827494433 +05007,0.4800126153558102,0.00944280395796639,0.07893557576179397,0.4024425751869253,0.027118187365810134,0.012177769619487137,0.019671991226661606,0.16444479423375746,0.8355552057662425,0.3435483570506336,0.44906281733419007,0.9354173786644151,0.010098041051706573,0.94003622876458,0.08405206988062329,0.9825570978091556,0.48829110990902336,0.9310435702393403,0.02915578159137823,0.9320946861774686,0.013054262827494433 +05009,0.5096953877632293,0.013104603505374214,0.09910409586527896,0.4125649481521554,0.0382799037960493,0.016980374359803943,0.02571065742400193,0.19443789024694128,0.8055621097530588,0.38625955326898487,0.4435845620269404,1.2994836387981072,0.010098041051706573,1.1757180767986628,0.08405206988062329,1.0436042663280793,0.48829110990902336,1.3085199467885775,0.02915578159137823,1.3003733811857106,0.013054262827494433 +05011,0.5068218943622973,0.012770992452663759,0.09746674177997192,0.41119176910378696,0.03729794068215668,0.016552705528699238,0.025198186176887072,0.19230965130779976,0.8076903486922002,0.38267351509867437,0.44379676802419404,1.2666165191536782,0.010098041051706573,1.1559839713555644,0.08405206988062329,1.0379089765669673,0.48829110990902336,1.2758049093995645,0.02915578159137823,1.2677507745999836,0.013054262827494433 +05013,0.5081044432183772,0.012782486084080773,0.097992874584102,0.41176968137208897,0.03680987186316001,0.016471805337389903,0.025157201938867935,0.1928597080620014,0.8071402919379986,0.3756382494072881,0.4474833652946015,1.267841250256454,0.010098041051706573,1.1643458494053933,0.08405206988062329,1.0406377233709203,0.48829110990902336,1.2611598966462325,0.02915578159137823,1.2611441001597234,0.013054262827494433 +05015,0.5200008994485075,0.013613136150587315,0.1034859448102767,0.4179476363735278,0.03867495936727945,0.017427880057471,0.026179062699747006,0.19901108809625104,0.800988911903749,0.37372185602772623,0.45062439218011635,1.3490816052197003,0.010098041051706573,1.2297736999284137,0.08405206988062329,1.0655033473790008,0.48829110990902336,1.3270502459009001,0.02915578159137823,1.3349820300598025,0.013054262827494433 +05017,0.5101464376998126,0.012942829390038891,0.09892241693008538,0.4131690106974334,0.037762575577192245,0.016771620182303423,0.025370812052312886,0.19390984552614807,0.8060901544738519,0.3817393139906944,0.4441333761257828,1.2837741248061367,0.010098041051706573,1.1740595081498828,0.08405206988062329,1.044678320566578,0.48829110990902336,1.2907886970348297,0.02915578159137823,1.2842768074816973,0.013054262827494433 +05019,0.4842565238588269,0.011014877336288371,0.08573146214904499,0.3999927761128037,0.03206025956346334,0.014251444842065857,0.02274595548763219,0.17703728896802204,0.8229627110319779,0.3739614227939594,0.44452056958101344,1.0914255187692705,0.010098041051706573,1.019342271394728,0.08405206988062329,0.9923853840684156,0.48829110990902336,1.0976197751409442,0.02915578159137823,1.0909825075775386,0.013054262827494433 +05021,0.5185484066030149,0.014094899406164114,0.10475188679667033,0.41556228436930664,0.041253398859189536,0.01826741821780023,0.02718145350884232,0.20200985185335885,0.7979901481466412,0.3938201031095969,0.44281001621593685,1.3976923610577097,0.010098041051706573,1.243681746578412,0.08405206988062329,1.0621435948968678,0.48829110990902336,1.4095430576623942,0.02915578159137823,1.40001211807951,0.013054262827494433 +05023,0.5342275573106944,0.016090941877147352,0.11537977155064896,0.420210088736664,0.04697614812219881,0.02080285338181976,0.030120014695889662,0.21597495294228478,0.7840250470577153,0.4071437089089521,0.4428386364864443,1.5953812029874264,0.010098041051706573,1.3694887181639972,0.08405206988062329,1.0940272120093666,0.48829110990902336,1.606172214853689,0.02915578159137823,1.5950844719157535,0.013054262827494433 +05025,0.5026626684123667,0.012072336488988186,0.09345449346393961,0.4104760035831491,0.03400801165549143,0.015375140526756557,0.02401677555868236,0.18591890613064752,0.8140810938693525,0.36389915984739435,0.4521034832177218,1.1971602416335498,0.010098041051706573,1.1113103662961104,0.08405206988062329,1.0290670728514075,0.48829110990902336,1.165451618671288,0.02915578159137823,1.1764345669144265,0.013054262827494433 +05027,0.4929435890128262,0.011874138182894135,0.09069364303534669,0.4043135061700024,0.03475523828931285,0.01539308228154488,0.024088229256969147,0.18398381692511853,0.8160161830748814,0.38321581453914516,0.4428996329534076,1.1773405425788197,0.010098041051706573,1.0776787439709223,0.08405206988062329,1.0098704665673424,0.48829110990902336,1.1877105032424888,0.02915578159137823,1.1775714097392704,0.013054262827494433 +05029,0.5033532888701651,0.012404829539803769,0.09510973662876847,0.409958047448412,0.035636019870756215,0.015936141360046747,0.024644379631745032,0.18895225030167842,0.8110477496983216,0.3746831936865773,0.44719195403537004,1.229855547565057,0.010098041051706573,1.1301055397857105,0.08405206988062329,1.0307572860269416,0.48829110990902336,1.221211120096558,0.02915578159137823,1.221880847487609,0.013054262827494433 +05031,0.4770643397332601,0.009307865566344102,0.07798498082330871,0.40081897615605455,0.02687956185025955,0.012050388965050195,0.01951071331709343,0.16346847653067564,0.8365315234693244,0.34467613592366997,0.44831046845854133,0.922031964294354,0.010098041051706573,0.9298620113020697,0.08405206988062329,0.9772542252504374,0.48829110990902336,0.9216259671092835,0.02915578159137823,0.9212625032081024,0.013054262827494433 +05033,0.4904728869358691,0.009953427075624379,0.08363609401352234,0.40827928911082195,0.027960034090197327,0.01272170317552089,0.020293531693069553,0.17052134020296628,0.8294786597970337,0.3343058331451577,0.4549959822824775,0.9883025454163594,0.010098041051706573,0.997760571244369,0.08405206988062329,1.0045288650460025,0.48829110990902336,0.9599368337582284,0.02915578159137823,0.9743022417834853,0.013054262827494433 +05035,0.4761767852812377,0.008565254109009593,0.07467167691426829,0.40279879353513776,0.024188439294838618,0.01104989460948985,0.017987550787363176,0.15681503009468636,0.8431849699053137,0.3239305757470766,0.4568254476777136,0.8497943976902795,0.010098041051706573,0.8922048420425471,0.08405206988062329,0.9751257619717302,0.48829110990902336,0.8310386404336388,0.02915578159137823,0.8403683469842249,0.013054262827494433 +05037,0.49808768124492375,0.011378815054551003,0.09066549132127488,0.4092954752116313,0.03304146407286611,0.014717606486736316,0.02284500396819836,0.1820271705870439,0.8179728294129561,0.36443263684286514,0.4454284003360045,1.1271869353554975,0.010098041051706573,1.0755354436678588,0.08405206988062329,1.0196932294963708,0.48829110990902336,1.1306786214372329,0.02915578159137823,1.1279603494611892,0.013054262827494433 +05039,0.5111822946047911,0.013228374307931008,0.09994927302386286,0.4128862869744542,0.03841083024308345,0.017096880998787426,0.02587799782494075,0.1955256942166519,0.8044743057833481,0.38430324784766445,0.4451057394643539,1.3117371313323387,0.010098041051706573,1.1869460023652643,0.08405206988062329,1.0466282143420973,0.48829110990902336,1.3148033540607007,0.02915578159137823,1.3090668385188944,0.013054262827494433 +05041,0.4971677721855819,0.011308321697507867,0.089758871977401,0.4090812721900057,0.032582087839064425,0.014551378584216082,0.022745484180914922,0.18054040707991822,0.8194595929200817,0.3629957364801528,0.4466066955589521,1.1201256099900305,0.010098041051706573,1.066777619769722,0.08405206988062329,1.0178678495111209,0.48829110990902336,1.1162225909670438,0.02915578159137823,1.1162326035447094,0.013054262827494433 +05043,0.4902051564696863,0.010942064642886036,0.08740424033271929,0.4048570178958325,0.031766129725962114,0.014143430356296852,0.022321398497085535,0.17830134828074634,0.8216986517192537,0.3634392290927634,0.44523618326527137,1.0834458311634663,0.010098041051706573,1.0385013110386851,0.08405206988062329,1.00454228571873,0.48829110990902336,1.088021746257315,0.02915578159137823,1.0842337833998916,0.013054262827494433 +05045,0.46548271664819463,0.007954630823545725,0.07080224702718693,0.3951798629502584,0.022883812516331092,0.010291080256946545,0.017088992864922468,0.1521049965872273,0.8478950034127727,0.3232074330570903,0.4497100406500136,0.7877982537315587,0.010098041051706573,0.8464309660169567,0.08405206988062329,0.9530153986674427,0.48829110990902336,0.7853393686470213,0.02915578159137823,0.7874692423646744,0.013054262827494433 +05047,0.5056565436915517,0.012537745493423735,0.09631084751568783,0.41093585203867533,0.03651874586133537,0.016221572474914632,0.024794983175520233,0.19046692605334312,0.8095330739466569,0.37917583328697135,0.444198509349397,1.2432242669714166,0.010098041051706573,1.1440296110276504,0.08405206988062329,1.0353996810645798,0.48829110990902336,1.24937187098415,0.02915578159137823,1.2428846165693042,0.013054262827494433 +05049,0.5337856536531274,0.015768187342524546,0.11363614433318389,0.42110681713493225,0.0455747074174571,0.020278356459524284,0.02954029812268291,0.21288722084507097,0.787112779154929,0.40105819926300007,0.4449475950284826,1.5645361325732388,0.010098041051706573,1.3505688295499558,0.08405206988062329,1.093193248673352,0.48829110990902336,1.5605083392138903,0.02915578159137823,1.5577866537217164,0.013054262827494433 +05051,0.5236895027892534,0.01480607078684853,0.10838972038899998,0.4169051319921592,0.04313714223000264,0.019156994778234664,0.02827261327177468,0.20697325383017823,0.7930267461698217,0.39798185727565033,0.4440951298092862,1.4687481781966667,0.010098041051706573,1.2878786242892195,0.08405206988062329,1.072708103148694,0.48829110990902336,1.4759532020718271,0.02915578159137823,1.4666643018579002,0.013054262827494433 +05053,0.49779628894236394,0.011078906165328339,0.08936539027823037,0.409853130838963,0.031207883685884993,0.014123469211149946,0.02225590349190225,0.17952200983277583,0.8204779901672241,0.349216666415514,0.4525609411168706,1.0983989577678441,0.010098041051706573,1.0630491142032747,0.08405206988062329,1.019388139264128,0.48829110990902336,1.0709905341181116,0.02915578159137823,1.0826726705758905,0.013054262827494433 +05055,0.49464433240511185,0.01089309092086087,0.08772826643646586,0.4086117565631715,0.03119352765824618,0.01398304137828568,0.02202206758924202,0.17735625517006176,0.8226437448299382,0.35556986277435454,0.448267394809679,1.0788035109643084,0.010098041051706573,1.042671478897156,0.08405206988062329,1.0128342500254257,0.48829110990902336,1.0698285657791993,0.02915578159137823,1.0723355126721617,0.013054262827494433 +05057,0.49300697292245854,0.011078140019376716,0.08807973674071204,0.40706651075787703,0.03224500626441466,0.01433708871052112,0.022470554429904817,0.17865819669565902,0.8213418033043409,0.3660888129052552,0.4446297387246415,1.0968818069285948,0.010098041051706573,1.0458487835637642,0.08405206988062329,1.0091125626429849,0.48829110990902336,1.1036006922073585,0.02915578159137823,1.0982070322194994,0.013054262827494433 +05059,0.5032092844672857,0.011908111701766436,0.09368337591428445,0.4111510725084895,0.03411021978882208,0.015283073161993403,0.02366433225565932,0.18617179532659223,0.8138282046734078,0.3641010953750344,0.4480496829575301,1.1808140065979649,0.010098041051706573,1.113332049166519,0.08405206988062329,1.030512797506412,0.48829110990902336,1.1695037761232219,0.02915578159137823,1.1724132661630555,0.013054262827494433 +05061,0.49611070895801995,0.011581453534095575,0.09050714296465334,0.40776957476132225,0.034263102931627244,0.015148443663178903,0.02334449413200548,0.182433358785472,0.8175666412145279,0.37856794291924956,0.44212118480360485,1.146795407173639,0.010098041051706573,1.0718570207534768,0.08405206988062329,1.0152329594992313,0.48829110990902336,1.169680295283208,0.02915578159137823,1.155739768078254,0.013054262827494433 +05063,0.4993372991966156,0.011533122948433318,0.09128870424516831,0.4100143213209576,0.033058597656832,0.014811906782346833,0.02309685851024743,0.1828197180383737,0.8171802819616263,0.3621324010476544,0.44805006359021265,1.1430022264924578,0.010098041051706573,1.0849838117654573,0.08405206988062329,1.022576662658504,0.48829110990902336,1.1335661463806286,0.02915578159137823,1.1354266029096571,0.013054262827494433 +05065,0.536606350182619,0.01616553856476767,0.11600995668736429,0.42141364568126144,0.04585615627452588,0.020618812320626963,0.030125507384074338,0.2161919191747983,0.7838080808252017,0.39527776394317454,0.4496410950187112,1.6024783360772803,0.010098041051706573,1.3782876521302028,0.08405206988062329,1.0991855687945915,0.48829110990902336,1.5720273367882078,0.02915578159137823,1.5794783632679688,0.013054262827494433 +05067,0.5044831155493653,0.011865040907157974,0.09452674507230817,0.4118432437603956,0.034477345857840735,0.015362860288945582,0.023519203203138602,0.18737345643247483,0.8126265435675252,0.3647364122340964,0.4455928931504977,1.17627500844277,0.010098041051706573,1.1217961047942695,0.08405206988062329,1.033347745566914,0.48829110990902336,1.1804587370385358,0.02915578159137823,1.1780868336934462,0.013054262827494433 +05069,0.4890099944799554,0.010238997365497837,0.08461901099387542,0.40593587676574705,0.0295294012151786,0.013222516332773878,0.020938216971182037,0.17304147553030017,0.8269585244696999,0.34896887671395604,0.4477746174540541,1.0139609654564055,0.010098041051706573,1.007194334448641,0.08405206988062329,1.0016744689513448,0.48829110990902336,1.0130165315680486,0.02915578159137823,1.0131857312216697,0.013054262827494433 +05071,0.49206699957567995,0.010777794196782788,0.08696330350201084,0.4067972495223411,0.031146852828293936,0.013912706827151157,0.02190310304506645,0.176730615093069,0.823269384906931,0.35816087446095846,0.446680982629256,1.0672866664466572,0.010098041051706573,1.0333463077114398,0.08405206988062329,1.0072031002205546,0.48829110990902336,1.0663332445111282,0.02915578159137823,1.066187167635783,0.013054262827494433 +05073,0.5151707939089732,0.013365762424487615,0.10103083842148496,0.41527472627775763,0.03796418518719373,0.017087036395044733,0.025944332602925554,0.19611134718040002,0.8038886528196,0.37576828798364564,0.45008305356198236,1.3254719394601617,0.010098041051706573,1.2028642300656718,0.08405206988062329,1.0552145544436669,0.48829110990902336,1.299782900614221,0.02915578159137823,1.3066215352604331,0.013054262827494433 +05075,0.5071412347436677,0.012915960752019739,0.09763476906354117,0.4113081713706298,0.037222621438778206,0.016594965066242168,0.025468173098856878,0.19251987883195937,0.8074801211680407,0.38124350368006243,0.4458301007503377,1.2804134564949021,0.010098041051706573,1.1593990526788152,0.08405206988062329,1.038385537376377,0.48829110990902336,1.274633759617809,0.02915578159137823,1.2744995253032174,0.013054262827494433 +05077,0.5013449741271413,0.011748781063257344,0.09314233549075489,0.409439621049955,0.034007182468179645,0.015192881769008133,0.023434524468331157,0.18578491916253648,0.8142150808374635,0.3651098320543522,0.44675508720030066,1.16529896505782,0.010098041051706573,1.1064924130275657,0.08405206988062329,1.0264646808203357,0.48829110990902336,1.1660687500327458,0.02915578159137823,1.1645817635797768,0.013054262827494433 +05079,0.48481746572094747,0.009704952466521822,0.08224441266496697,0.40366544975016205,0.027924777154455134,0.012561392138337495,0.020017745136491894,0.16963995416845282,0.8303600458315472,0.3395340333720936,0.44982962867918336,0.9618603711819343,0.010098041051706573,0.9796971070476188,0.08405206988062329,0.9926636834967755,0.48829110990902336,0.9589594787869902,0.02915578159137823,0.9617340529997169,0.013054262827494433 +05081,0.5095643840634356,0.012466223619310992,0.09742279354509235,0.4137777919999915,0.03589394063395439,0.016043230104827923,0.02446447202589236,0.19118838873355049,0.8088116112664495,0.3684347299827817,0.4469620727474988,1.2360206987391946,0.010098041051706573,1.1563076740998577,0.08405206988062329,1.0438922359996083,0.48829110990902336,1.2295744209631154,0.02915578159137823,1.231833460017263,0.013054262827494433 +05083,0.509364344793739,0.012829658936830487,0.0978243616611513,0.4131969983831494,0.03684238753511078,0.016441320928669404,0.02518758736838108,0.19205184395221872,0.8079481560477813,0.37661771474397354,0.44626100610338654,1.27135388367136,0.010098041051706573,1.161869675329822,0.08405206988062329,1.0431629866812977,0.48829110990902336,1.261896523034618,0.02915578159137823,1.2635613758333593,0.013054262827494433 +05085,0.4795844169232081,0.008685190139032772,0.07661613783632759,0.4041252534913522,0.0246732383808561,0.011248497943407106,0.018109825575136358,0.15975526963086356,0.8402447303691365,0.32203709398096636,0.45589872597083914,0.8618498510766517,0.010098041051706573,0.913773257097402,0.08405206988062329,0.981612069210904,0.48829110990902336,0.8472419302837773,0.02915578159137823,0.8559325845628465,0.013054262827494433 +05087,0.5001659802260274,0.011112847820456132,0.09010236120588538,0.41192224374955766,0.03149843100702972,0.014273583731323806,0.022218320037348766,0.18014492142222005,0.81985507857778,0.34958496742449713,0.45315221345908546,1.101528049224534,0.010098041051706573,1.072116603881459,0.08405206988062329,1.02436356990885,0.48829110990902336,1.0811000565328213,0.02915578159137823,1.089835926215326,0.013054262827494433 +05089,0.5444463097956702,0.016131943454354078,0.11805454415316718,0.4267943016171998,0.04489804286602645,0.020464816535689268,0.029629998705305523,0.21683413410860083,0.7831658658913991,0.38031609192251425,0.455806427838186,1.5991066999829413,0.010098041051706573,1.4038608298500783,0.08405206988062329,1.1148462647521757,0.48829110990902336,1.5401982252399944,0.02915578159137823,1.5633520581989098,0.013054262827494433 +05091,0.49084770803627475,0.010598699528793951,0.08594291434111848,0.4063276089333888,0.03055939062688451,0.0136557330070687,0.0215926434111223,0.17509079279385592,0.8249092072061441,0.35557777928719475,0.44685881252668436,1.049755912560638,0.010098041051706573,1.0223992091774632,0.08405206988062329,1.0050288499011348,0.48829110990902336,1.0467230618859586,0.02915578159137823,1.0472621789013723,0.013054262827494433 +05093,0.48211375919811783,0.00960001511267063,0.08001675739265665,0.40348068228522527,0.027449693564827803,0.012344497521398923,0.01991234419162395,0.1659706985458071,0.8340293014541929,0.34304931191009413,0.449713491053916,0.9506583011767551,0.010098041051706573,0.9539263227906765,0.08405206988062329,0.987605696232889,0.48829110990902336,0.9424284135869416,0.02915578159137823,0.9451045862176493,0.013054262827494433 +05095,0.514801706442963,0.013470566731889877,0.10158398737475036,0.41483953959965325,0.039276971890311395,0.017443652102717838,0.02616651530735036,0.19732643871102876,0.8026735612889713,0.38664530606990183,0.4441190668016017,1.3354897006732855,0.010098041051706573,1.205916106656695,0.08405206988062329,1.054458483474221,0.48829110990902336,1.343205990411086,0.02915578159137823,1.3357335706262878,0.013054262827494433 +05097,0.5301721404856177,0.01525123538453833,0.11107079906351441,0.42027109917336547,0.043570937258612386,0.01947517491472804,0.028766572627842674,0.20949950135398995,0.79050049864601,0.392280758092835,0.4469762676697644,1.5125118146353378,0.010098041051706573,1.321291705009635,0.08405206988062329,1.08578379594731,0.48829110990902336,1.4923835515102937,0.02915578159137823,1.4971976766961954,0.013054262827494433 +05099,0.5081497643125994,0.012711675184337844,0.09776589086323051,0.41251375857694283,0.03740758532796781,0.016573279644322324,0.025015607754012417,0.1923958205421654,0.8076041794578346,0.38262409310317763,0.44304596244364636,1.2606929989328512,0.010098041051706573,1.159795519518223,0.08405206988062329,1.040608586951382,0.48829110990902336,1.2764030375764004,0.02915578159137823,1.2642790605886733,0.013054262827494433 +05101,0.5247682820979835,0.01403014230127687,0.10626276946100785,0.4195588779825393,0.039912180928801264,0.017981665884066703,0.026735880920976077,0.20249464970744308,0.7975053502925569,0.37559891513505744,0.4505307769611469,1.3906778267252407,0.010098041051706573,1.2640393867714548,0.08405206988062329,1.0751737157717194,0.48829110990902336,1.3681414055076697,0.02915578159137823,1.3754846230420348,0.013054262827494433 +05103,0.5096497409931557,0.012591405338037261,0.09751467180715387,0.41362306118190195,0.036349686250720416,0.01622701505317426,0.02470599771815906,0.19133664547170529,0.8086633545282947,0.37276120174619437,0.44641417098483643,1.2486628122952614,0.010098041051706573,1.1605547202234043,0.08405206988062329,1.0438082898208716,0.48829110990902336,1.2455313124581884,0.02915578159137823,1.24449922076244,0.013054262827494433 +05105,0.5099834187536197,0.012433197215459619,0.09700635116237136,0.41414591282089636,0.034870598044857856,0.015789446571911576,0.024379610705473297,0.19021471599890682,0.8097852840010932,0.35946716505696297,0.45280114070885413,1.2333739809706257,0.010098041051706573,1.1542790847418671,0.08405206988062329,1.0443346613182092,0.48829110990902336,1.1966930881897864,0.02915578159137823,1.2110852170198831,0.013054262827494433 +05107,0.4912856265087606,0.0112938645881103,0.08787621341871504,0.40543859103031166,0.03270027188580709,0.014546620312445992,0.02298838797375015,0.1788699051571948,0.8211300948428052,0.37211744354522786,0.4448470753773661,1.1185232269057044,0.010098041051706573,1.04315557785224,0.08405206988062329,1.0055869945523297,0.48829110990902336,1.1191459316415129,0.02915578159137823,1.115027577677179,0.013054262827494433 +05109,0.5034613283812207,0.012651735079020347,0.09558347603480563,0.40975376770026456,0.037008549253965545,0.01639977002196059,0.02512950720505083,0.18985266721901997,0.8101473327809801,0.3871856390793876,0.44313463652464896,1.253916749394314,0.010098041051706573,1.1337522846547716,0.08405206988062329,1.0305600038199696,0.48829110990902336,1.2641683613150831,0.02915578159137823,1.2549959809774458,0.013054262827494433 +05111,0.5011830065482379,0.011511050201081001,0.091784088868920935,0.41111186266541994,0.033056711642196396,0.014795719417810714,0.02296775838502634,0.18313487821755764,0.8168651217824423,0.3601573219232527,0.4475859419399781,1.140795234068841,0.010098041051706573,1.0907355776668415,0.08405206988062329,1.0263602440531534,0.48829110990902336,1.1325061568466364,0.02915578159137823,1.1351936359070214,0.013054262827494433 +05113,0.5178260301480012,0.013899395234288311,0.10348925295769346,0.41546124203794343,0.03975915282324942,0.01776012181854679,0.026841824136024386,0.19985332318677554,0.8001466768132245,0.38418629651818065,0.4466926621273843,1.3774502665966164,0.010098041051706573,1.231310010913985,0.08405206988062329,1.0607240595935656,0.48829110990902336,1.36164711740362,0.02915578159137823,1.3650428479770182,0.013054262827494433 +05115,0.4835300911865319,0.009999674333034298,0.08212681240343006,0.4022395842901906,0.02864217401619386,0.012852162320162952,0.020680562627438864,0.16984840013141583,0.8301515998685842,0.34875545729810414,0.448714623160118,0.9908784618840671,0.010098041051706573,0.9774877392216629,0.08405206988062329,0.9904219694176735,0.48829110990902336,0.9830677565590229,0.02915578159137823,0.9850992506622158,0.013054262827494433 +05117,0.5186115238292914,0.013236677634893203,0.10215088313314563,0.4177052420244568,0.037797496277578925,0.016978002867215115,0.025523300248241784,0.19696994463001963,0.8030300553699804,0.3700163436503321,0.44918326712783585,1.312129334824765,0.010098041051706573,1.2164881095561735,0.08405206988062329,1.0623499219559234,0.48829110990902336,1.2953522239001443,0.02915578159137823,1.3010756789639077,0.013054262827494433 +05119,0.4860526715525946,0.009603670547947436,0.08169737779991097,0.4053886497195457,0.02766001894925105,0.0124121787631642,0.019758497607410528,0.16808338392410357,0.8319166160758964,0.33856678995248235,0.4487407903059403,0.9508554930100306,0.010098041051706573,0.9738059554263191,0.08405206988062329,0.9953535646552114,0.48829110990902336,0.9497006980176756,0.02915578159137823,0.9510252870204854,0.013054262827494433 +05121,0.5122156504853455,0.013694942720253424,0.10144983517162451,0.41272017799647265,0.04020809960930667,0.017769815395765883,0.026736673717948488,0.19806078763016438,0.8019392123698357,0.39633479484008927,0.4419461642910583,1.3576655372055613,0.010098041051706573,1.2050642378364071,0.08405206988062329,1.0486842644422452,0.48829110990902336,1.3723693790248293,0.02915578159137823,1.360861514907072,0.013054262827494433 +05123,0.4884611489654426,0.009751296104011545,0.08302058491375927,0.4067325415491989,0.028175214521432086,0.012625528966855128,0.019963299281150045,0.16996353771348305,0.830036462286517,0.33937624687540013,0.4481076428806335,0.9658419778499754,0.010098041051706573,0.9887330945327949,0.08405206988062329,1.000213540685495,0.48829110990902336,0.9679409471768907,0.02915578159137823,0.9680321808231558,0.013054262827494433 +05125,0.4985380982159979,0.011103842134644479,0.08984431911705196,0.4105270785637902,0.031386942659136594,0.014258930095296943,0.022272805577706518,0.18021555311130058,0.8197844468886994,0.3493481053403579,0.4542949675012783,1.1007980559983963,0.010098041051706573,1.0685618965339536,0.08405206988062329,1.0210296171121809,0.48829110990902336,1.0772316366039252,0.02915578159137823,1.0881235200529327,0.013054262827494433 +05127,0.5069247264021048,0.012641444309460612,0.09687916842189037,0.4119238425432077,0.0366937963894209,0.01634084749719427,0.024937517645239334,0.19111154650018689,0.8088884534998131,0.37875837486162545,0.44532997686512105,1.2531039028788873,0.010098041051706573,1.1497909386195453,0.08405206988062329,1.0380957164508091,0.48829110990902336,1.2558054627879343,0.02915578159137823,1.2517772944501944,0.013054262827494433 +05129,0.5320775484633549,0.015602020512053933,0.11325730648355208,0.4201714575162848,0.045808352502386684,0.0202174456600632,0.029322831901313483,0.21285864590723716,0.7871413540927629,0.4044626693381522,0.4413484562451758,1.5462836224318726,0.010098041051706573,1.3444549489305169,0.08405206988062329,1.0901219703401916,0.48829110990902336,1.5638293053118517,0.02915578159137823,1.5510653881123146,0.013054262827494433 +05131,0.48811121605281943,0.010018983418368502,0.08358626814474648,0.4061528847730072,0.02889773390859438,0.01294789674563424,0.0205260258090122,0.17124430948479058,0.8287556905152094,0.34572346092245826,0.4480592418280746,0.9920726180378308,0.010098041051706573,0.9949789518537077,0.08405206988062329,0.9998639450437407,0.48829110990902336,0.991676041323976,0.02915578159137823,0.9918970499046189,0.013054262827494433 +05133,0.48017568095308794,0.010014316393729133,0.08072162282386419,0.40147416190668284,0.02899173662139324,0.01291746195565624,0.020855525989679408,0.16810851949778463,0.8318914805022154,0.3591570090786412,0.4455566813518973,0.9918648410473966,0.010098041051706573,0.9583231051111634,0.08405206988062329,0.9832965729558636,0.48829110990902336,0.99365999628401,0.02915578159137823,0.9898311062719671,0.013054262827494433 +05135,0.5365938767734278,0.016977834758016133,0.11852291746530987,0.4193935985025621,0.04966887915468686,0.021972782844836516,0.03164000838046253,0.2208801154757775,0.7791198845242225,0.41906561378076357,0.442385316898441,1.6837511503317257,0.010098041051706573,1.4051919685491208,0.08405206988062329,1.0985793978166392,0.48829110990902336,1.6993665449210025,0.02915578159137823,1.6822172577373575,0.013054262827494433 +05137,0.5330968320627136,0.015435227445813982,0.11294638170514798,0.421177657382246,0.04412642930789383,0.019739169120087136,0.028953890770819998,0.21186841660289765,0.7881315833971023,0.3906847536124532,0.4473321188613821,1.5308610539406886,0.010098041051706573,1.3425580841756553,0.08405206988062329,1.0921181142407637,0.48829110990902336,1.5112387945678876,0.02915578159137823,1.5172302546437768,0.013054262827494433 +05139,0.501682049923701,0.011763982372434346,0.09308472175219887,0.4103774810593054,0.03430386856230848,0.01525585522568446,0.023449079699430123,0.18554525075464784,0.8144547492453522,0.3685230821619569,0.44472696127476696,1.1652937014271243,0.010098041051706573,1.1047252305472912,0.08405206988062329,1.0273444904447442,0.48829110990902336,1.1737828505582475,0.02915578159137823,1.1679108070055715,0.013054262827494433 +05141,0.5337171794388942,0.01627556728296778,0.11573809601649672,0.4197512036024225,0.048320859031941776,0.021214391292538295,0.03049474124119174,0.2168528585461201,0.7831471414538799,0.4175017621255353,0.43903174979804976,1.6138294585329591,0.010098041051706573,1.3725082663192762,0.08405206988062329,1.0927413381189794,0.48829110990902336,1.644007554354591,0.02915578159137823,1.6211140808219398,0.013054262827494433 +05143,0.4638671894256038,0.00776640762749781,0.06934378393864299,0.3954119390521161,0.02233533447378252,0.010042808898960844,0.016742739742198143,0.14949059885979396,0.850509401140206,0.322095697770767,0.44963772137593067,0.7689407300102962,0.010098041051706573,0.8287106690415802,0.08405206988062329,0.9497388536309093,0.48829110990902336,0.7663994890395083,0.02915578159137823,0.7679717031642898,0.013054262827494433 +05145,0.4873793523711678,0.010497245726564994,0.08471515000304425,0.4037307412976435,0.030224562206632173,0.013526625149568724,0.02153814205606874,0.17381768347570195,0.8261823165242981,0.35677871320001264,0.4475375046656781,1.039153071493812,0.010098041051706573,1.0072996098179892,0.08405206988062329,0.9980559634616546,0.48829110990902336,1.0364006367292387,0.02915578159137823,1.0361778240538158,0.013054262827494433 +05147,0.5151578643815475,0.013295140010316167,0.1013276364413829,0.415147686568332,0.03832213022662126,0.01711614879648809,0.025807894879518383,0.19669239945123967,0.8033076005487603,0.37820017887015706,0.44663876186606144,1.3182483878846156,0.010098041051706573,1.2037896503709837,0.08405206988062329,1.0550485036849269,0.48829110990902336,1.3136571022545405,0.02915578159137823,1.3133042496514014,0.013054262827494433 +05149,0.4958602477855166,0.011135610941158457,0.08879938784573801,0.40873523519395527,0.03212056994629579,0.014353138833557015,0.022457156004921663,0.17908148161162543,0.8209185183883746,0.36172062359366186,0.44685193499227577,1.1025723091516562,0.010098041051706573,1.055166527119648,0.08405206988062329,1.0149221432743842,0.48829110990902336,1.1012116153137441,0.02915578159137823,1.100107808126719,0.013054262827494433 +06001,0.48409216917617126,0.009081143231869395,0.0798741206270201,0.4052855455749026,0.026210581729339058,0.011767038251686703,0.01875912028761733,0.1649977539668737,0.8350022460331263,0.32814861088401703,0.4489422773289751,0.8991211324635515,0.010098041051706573,0.9517935982664003,0.08405206988062329,0.9908247137690395,0.48829110990902336,0.9002426227345458,0.02915578159137823,0.9019134163142741,0.013054262827494433 +06003,0.4990776051610427,0.008572356769928879,0.08197063649742983,0.41666933339809614,0.022932599874786304,0.010823781958849537,0.01717640038599357,0.16424426912720216,0.8357557308727979,0.27976603396882677,0.4719823316129959,0.8519255074819756,0.010098041051706573,0.9834490519378325,0.08405206988062329,1.021810568951703,0.48829110990902336,0.7929789260058446,0.02915578159137823,0.826291163443803,0.013054262827494433 +06005,0.5351678963325668,0.014745527871511049,0.11246133150749858,0.4239810218121196,0.04260074699560941,0.019034236584086706,0.02755308749377561,0.2101421484326337,0.7898578515673663,0.3788035089444848,0.4468052305760846,1.462565690082636,0.010098041051706573,1.3377002183644313,0.08405206988062329,1.095741873379392,0.48829110990902336,1.4589853448542076,0.02915578159137823,1.4595371908088826,0.013054262827494433 +06007,0.49501462944616215,0.011701724234093991,0.09118476102455901,0.40604398188166435,0.03431636879226523,0.015226213048319597,0.023639148295851873,0.1842061943231443,0.8157938056768557,0.3763388575753653,0.4437011718953062,1.1596901213960122,0.010098041051706573,1.0829825487704492,0.08405206988062329,1.014504409073298,0.48829110990902336,1.1724832310392497,0.02915578159137823,1.1626979942412357,0.013054262827494433 +06009,0.5390945030688089,0.015419958740082208,0.11488714535402153,0.42496028855278106,0.043861171685476506,0.01974338289184497,0.028603442721644737,0.2131113277913679,0.7868886722086321,0.3817761469337543,0.45013350380656797,1.5286917432611702,0.010098041051706573,1.3675563103540558,0.08405206988062329,1.1039618332239383,0.48829110990902336,1.5027421901684044,0.02915578159137823,1.511922153337942,0.013054262827494433 +06011,0.4784088655084281,0.008994861274431748,0.07713034746568256,0.4026391928720283,0.02613267972999649,0.011657385488891912,0.01880161912315834,0.16122265498510868,0.8387773450148913,0.33881190204184736,0.44608458104321164,0.8907513368280806,0.010098041051706573,0.9189867435045659,0.08405206988062329,0.9795227875436148,0.48829110990902336,0.8984323778432367,0.02915578159137823,0.896295667821011,0.013054262827494433 +06013,0.4899661230052482,0.00986525954811229,0.08401548075322346,0.4076854229676007,0.028418840439887717,0.012759375765661824,0.02013457478978933,0.17147201981620172,0.8285279801837983,0.33825719004526866,0.44897594582195544,0.9769641895762884,0.010098041051706573,0.9994137036766184,0.08405206988062329,1.0032998373420583,0.48829110990902336,0.9759432927520513,0.02915578159137823,0.9778109358111632,0.013054262827494433 +06015,0.4977962913089844,0.010861689072296402,0.08922463211413773,0.4099653947435585,0.030824973176633724,0.013982157365157382,0.021819545990860955,0.17923924639839392,0.820760753601606,0.34547604676253385,0.453598362763744,1.0770301778822517,0.010098041051706573,1.0601153220334307,0.08405206988062329,1.0193049641669099,0.48829110990902336,1.0576030072282443,0.02915578159137823,1.0666123498661237,0.013054262827494433 +06017,0.5081314493337004,0.011192907210258144,0.09320056291627216,0.41529656042808355,0.03182912038302874,0.014450975793523002,0.0220275820851772,0.18341821400443456,0.8165817859955654,0.34151210450974223,0.45401744124943677,1.1094938519179198,0.010098041051706573,1.1092983928759155,0.08405206988062329,1.0405291783680553,0.48829110990902336,1.0927383096999908,0.02915578159137823,1.1029592250164397,0.013054262827494433 +06019,0.46478748236206896,0.008058471472211106,0.07006076599851659,0.3952811030891259,0.02329766729099223,0.01041359658371399,0.017337970100351294,0.15073720497476592,0.849262795025234,0.33253514943706897,0.44698022568724227,0.7976245020940318,0.010098041051706573,0.8365752914682603,0.08405206988062329,0.9517284126858129,0.48829110990902336,0.8001883775282368,0.02915578159137823,0.7981561682554166,0.013054262827494433 +06021,0.48402358445256083,0.009912572107344267,0.08163472599551239,0.40407412400839826,0.02874064663566045,0.012819694854197082,0.020479522952493234,0.1686585708170454,0.8313414291829546,0.3520639811694888,0.44604754432667587,0.9813469829284541,0.010098041051706573,0.9713847207127495,0.08405206988062329,0.9912834599966258,0.48829110990902336,0.9851844540447434,0.02915578159137823,0.9816443321074586,0.013054262827494433 +06023,0.4935120532866835,0.010598829668759656,0.08743241997040146,0.40747950330047245,0.03049699406739555,0.013699991540180154,0.02147633395815511,0.17716369719466923,0.8228363028053307,0.348806473362166,0.4492243238761313,1.050453523530888,0.010098041051706573,1.04174896778505,0.08405206988062329,1.010679249957807,0.48829110990902336,1.0465978042286772,0.02915578159137823,1.0484390526181366,0.013054262827494433 +06025,0.4672065533181513,0.00821563564305448,0.07138350480205286,0.396619154693456,0.02350394918789947,0.010586491859805957,0.017584589909336996,0.15278789283900132,0.8472121071609987,0.32926303146750985,0.45041332310470605,0.8135443850891289,0.010098041051706573,0.8519872588874615,0.08405206988062329,0.9565341160523478,0.48829110990902336,0.8072633356026211,0.02915578159137823,0.8096612164050807,0.013054262827494433 +06027,0.5220481559640786,0.013969606860254316,0.10599868031679102,0.4177530965388298,0.04100477158307963,0.01817446721131605,0.026759230351951564,0.20304387460394485,0.7969561253960551,0.3868422838900585,0.44322810516070854,1.3845005072892054,0.010098041051706573,1.2578994590367318,0.08405206988062329,1.069307996237077,0.48829110990902336,1.4008927121793247,0.02915578159137823,1.389714695654085,0.013054262827494433 +06029,0.4614794493231803,0.007356653394112675,0.06705052594764459,0.39474486677680115,0.02089604724428486,0.009485734731965163,0.015941453958355382,0.14529471690664214,0.8547052830933579,0.31164628388748555,0.45394875983349164,0.7284606127086917,0.010098041051706573,0.8021763814595713,0.08405206988062329,0.9450255468609687,0.48829110990902336,0.7176413448225718,0.02915578159137823,0.7240266632963716,0.013054262827494433 +06031,0.45668173607330115,0.006601923290891786,0.06367117710647696,0.393455107431953,0.018873274849045815,0.008566201338509532,0.014456289291656989,0.13942133454677333,0.8605786654532267,0.2964178723676514,0.45387996556107046,0.6537896760907578,0.010098041051706573,0.7633429566692914,0.08405206988062329,0.9350041511218771,0.48829110990902336,0.6478422230800097,0.02915578159137823,0.6532429189786406,0.013054262827494433 +06033,0.5189819870666128,0.013360406858885347,0.10303139859349042,0.41751826261459224,0.03844101145239048,0.017190572916179116,0.02574348858310279,0.19852596267520561,0.8014740373247944,0.37309996736101,0.44719356402652893,1.3247126933846372,0.010098041051706573,1.2236100395821863,0.08405206988062329,1.0632375663255094,0.48829110990902336,1.3166835211432293,0.02915578159137823,1.319632429553783,0.013054262827494433 +06035,0.48116187004080707,0.008106607082733077,0.07693021369796411,0.4045105294412941,0.023044016824606314,0.010549846100850191,0.01684798315802863,0.15988426865877736,0.8401157313412226,0.2995444275649549,0.45781281020351905,0.8032637299274635,0.010098041051706573,0.9208957768925905,0.08405206988062329,0.9851225372168502,0.48829110990902336,0.791730400265267,0.02915578159137823,0.8042232419689717,0.013054262827494433 +06037,0.4755686929708294,0.00858822456870996,0.07558630910287212,0.4012595002649376,0.02477884002380861,0.011114117907037292,0.018058851845482494,0.15893878259877056,0.8410612174012294,0.32782180156574237,0.4485326147777036,0.8499300445016003,0.010098041051706573,0.9011921954552442,0.08405206988062329,0.9732909421696184,0.48829110990902336,0.8508787504330965,0.02915578159137823,0.851682782751216,0.013054262827494433 +06039,0.47483334605598415,0.008771307616412243,0.07537073233820207,0.40072433444588307,0.02510767485286497,0.011292840547407573,0.018472391817608534,0.15873091678214962,0.8412690832178504,0.33312234170954186,0.4497764374274178,0.8690050359057673,0.010098041051706573,0.8993430734534109,0.08405206988062329,0.9725774811824994,0.48829110990902336,0.8622136752265812,0.02915578159137823,0.8655039031985283,0.013054262827494433 +06041,0.5195035854591311,0.01247988043294954,0.10091401941906926,0.4197132069041121,0.03597768852687891,0.016128723679284952,0.024022703177149333,0.19425086225320784,0.8057491377467921,0.35651823932880006,0.44829794074277984,1.236294452563926,0.010098041051706573,1.1981554641483374,0.08405206988062329,1.0640315161761023,0.48829110990902336,1.233490723762709,0.02915578159137823,1.2364194298936801,0.013054262827494433 +06043,0.5355756279902795,0.014744963766024435,0.11212719571092318,0.42499925134939065,0.04210448495677807,0.01889987210438176,0.02753105816512631,0.2093582863949109,0.7906417136050892,0.3755064477428677,0.4488802588081348,1.4618028645260042,0.010098041051706573,1.334242917374392,0.08405206988062329,1.0972035738307957,0.48829110990902336,1.442661191567662,0.02915578159137823,1.4498240179652928,0.013054262827494433 +06045,0.5086254075276795,0.01204973148858932,0.09609726712856163,0.4137683327672188,0.034824635711188504,0.015583051869664633,0.023690777751667016,0.1889352472493856,0.8110647527506144,0.3623894492712173,0.4474720711768448,1.1935418466961845,0.010098041051706573,1.141154653358408,0.08405206988062329,1.0417099968804466,0.48829110990902336,1.1937828964062551,0.02915578159137823,1.1935576984018796,0.013054262827494433 +06047,0.45845572750710395,0.0073976141579788985,0.06588493400348065,0.3931521155056211,0.02107871741597283,0.009521604424266899,0.016135940100921238,0.14371057018250413,0.8562894298174959,0.31993228398558093,0.45171649851198764,0.7321910610735616,0.010098041051706573,0.7882509688457566,0.08405206988062329,0.9387303837242622,0.48829110990902336,0.7237848820490563,0.02915578159137823,0.7275778318060617,0.013054262827494433 +06049,0.525162105025343,0.013546463092735179,0.10512248069656321,0.4213134285232476,0.03818874499263909,0.01739407221350364,0.025794822137978634,0.20017148931850343,0.7998285106814966,0.3632785750449628,0.4554764032401787,1.341732179608963,0.010098041051706573,1.248540595391069,0.08405206988062329,1.0761769363322466,0.48829110990902336,1.3137371414694816,0.02915578159137823,1.3263295283373266,0.013054262827494433 +06051,0.4813818427850667,0.007651729778781826,0.07499696351350858,0.4066252360644693,0.02068644189606211,0.009703317564899627,0.01589534356865692,0.15579516476900887,0.8442048352309911,0.27583039268431225,0.46906653225592937,0.7588145440265841,0.010098041051706573,0.896605515325839,0.08405206988062329,0.9858320381013936,0.48829110990902336,0.7184271221226128,0.02915578159137823,0.746007998209169,0.013054262827494433 +06053,0.47175855547440565,0.0086098762979861,0.07441537123318866,0.398538408106603,0.02485879787408933,0.011135857768523456,0.01825059916365038,0.15774037454043782,0.8422596254595622,0.3340546107899077,0.44796445205946644,0.8520329310705883,0.010098041051706573,0.8876177655107635,0.08405206988062329,0.9658476848038359,0.48829110990902336,0.8538564054624647,0.02915578159137823,0.8528176989427418,0.013054262827494433 +06055,0.5001343020803474,0.011635892286336998,0.09241915146500479,0.40960900741818396,0.03402303693204566,0.015118024560143644,0.02326553535307737,0.18478866792495569,0.8152113320750443,0.3681383824967138,0.4443467110340247,1.1528760973789323,0.010098041051706573,1.0964362010720894,0.08405206988062329,1.0240934282006244,0.48829110990902336,1.1640515130026143,0.02915578159137823,1.1569546021823227,0.013054262827494433 +06057,0.528924896257256,0.014274552470896927,0.10904936070384555,0.42130122108961204,0.041151909290713926,0.01841243765952605,0.026987862685053373,0.20617172962644328,0.7938282703735567,0.37736956021662155,0.44742608488595403,1.415760396002609,0.010098041051706573,1.2964093518686237,0.08405206988062329,1.083684578736373,0.48829110990902336,1.4097975454902976,0.02915578159137823,1.4115987738864546,0.013054262827494433 +06059,0.4800944562672781,0.009065308354247053,0.07858732427243284,0.40270448383437996,0.026173968747431726,0.011735403061679688,0.01888234333037209,0.16369138040761239,0.8363086195923877,0.33305585843203384,0.4483616212322101,0.897597367308312,0.010098041051706573,0.9358893470294878,0.08405206988062329,0.9824911449362834,0.48829110990902336,0.8988560398062951,0.02915578159137823,0.8992766887671517,0.013054262827494433 +06061,0.4994020782718701,0.01123096808903844,0.09075254384069859,0.410447177377595,0.032377145736919515,0.014476725747664025,0.022488829297431158,0.18172239922336425,0.8182776007766357,0.356762955248421,0.44712791749138897,1.1128063196739602,0.010098041051706573,1.0783077278735256,0.08405206988062329,1.022409469273439,0.48829110990902336,1.1096643547452694,0.02915578159137823,1.1107995915302076,0.013054262827494433 +06063,0.5393511198127425,0.014771069298370451,0.113285195133687,0.42706889226147826,0.04211771996947862,0.01896480285436796,0.027386740762675756,0.21003978850181773,0.7899602114981823,0.3717848560862328,0.4502808525274197,1.4641866911851005,0.010098041051706573,1.3465177513429922,0.08405206988062329,1.104271463595944,0.48829110990902336,1.4438668989862062,0.02915578159137823,1.4527077197826042,0.013054262827494433 +06065,0.474177033965582,0.009037338316952259,0.07608402735744588,0.39976469206224574,0.025972728319830045,0.011649301239269268,0.01905899626005133,0.16045489744863606,0.8395451025513639,0.34136899980082686,0.44852050565573764,0.8951249428984709,0.010098041051706573,0.906533187648862,0.08405206988062329,0.9711716420880974,0.48829110990902336,0.8916220664364004,0.02915578159137823,0.8920491512532678,0.013054262827494433 +06067,0.47740822071496125,0.008909015939104127,0.0771687085276831,0.4015409921572659,0.025722483950954028,0.01152674744518457,0.018661211836197716,0.16164092945889388,0.8383590705411061,0.3333279050760125,0.4481195310360783,0.8819620055810033,0.010098041051706573,0.9197532184107416,0.08405206988062329,0.9773063555193715,0.48829110990902336,0.8834685837856537,0.02915578159137823,0.8832122860497857,0.013054262827494433 +06069,0.4712039167874001,0.008187875987179327,0.07271126677960864,0.3995642844116772,0.023427570424578728,0.010545384483339328,0.017376502392007005,0.15430955513982886,0.8456904448601712,0.3222000036884081,0.45012710632066977,0.8103696336748475,0.010098041051706573,0.8675245485055469,0.08405206988062329,0.965139060797622,0.48829110990902336,0.8037456211309284,0.02915578159137823,0.8074599554678612,0.013054262827494433 +06071,0.4636417059898966,0.007319221746589985,0.06755012814875325,0.396295228907132,0.02081393048039961,0.009447607169576806,0.015786374806302437,0.14569467603120512,0.8543053239687949,0.3081256994000798,0.45390788532101506,0.7249779373990397,0.010098041051706573,0.8080729855988991,0.08405206988062329,0.9496364701774438,0.48829110990902336,0.7145816227207438,0.02915578159137823,0.7210640312063776,0.013054262827494433 +06073,0.47785255548843353,0.009044581005992838,0.07789291031637147,0.4010846955872309,0.026277199823327692,0.01175456280992351,0.01892755600469267,0.16300616041857052,0.8369938395814295,0.33735034057142904,0.4473293535442977,0.8951697355043825,0.010098041051706573,0.9282234494505719,0.08405206988062329,0.9781254849980292,0.48829110990902336,0.9020763864715284,0.02915578159137823,0.8997437043081775,0.013054262827494433 +06075,0.49806137400300154,0.010788842685589824,0.09064310034423803,0.4091953784040117,0.03179573333883494,0.014120737967815681,0.021661673136541614,0.18199182886985285,0.8180081711301471,0.35077941087720216,0.444107950501924,1.0698905440313544,0.010098041051706573,1.076861057189987,0.08405206988062329,1.0199597354431742,0.48829110990902336,1.08950399666608,0.02915578159137823,1.082541916561012,0.013054262827494433 +06077,0.46961316735272784,0.008328440392162711,0.07256894082301495,0.3982664748197497,0.024016275017551374,0.010753148628294802,0.017734682438976832,0.1545291867178592,0.8454708132821408,0.3309442682389917,0.44774423262709456,0.8239042542482744,0.010098041051706573,0.8652341622545896,0.08405206988062329,0.9614912407358869,0.48829110990902336,0.8250132465116391,0.02915578159137823,0.824229923445014,0.013054262827494433 +06079,0.4978708145696701,0.01150580926267648,0.09179355564842831,0.4078735650017314,0.0336334487502781,0.0149786347322878,0.0231100296019991,0.18437223665695127,0.8156277633430488,0.366403158834974,0.44534935574110424,1.1398977059555144,0.010098041051706573,1.0906525703785577,0.08405206988062329,1.019609669798418,0.48829110990902336,1.151393790534296,0.02915578159137823,1.1443006516282375,0.013054262827494433 +06081,0.49613820084704396,0.010536245683751527,0.08821359338389828,0.40963569471643374,0.03066761778696027,0.013682694102787047,0.021236513668496534,0.17780044599124495,0.822199554008755,0.3476518369850021,0.44616097010980965,1.0437107749963115,0.010098041051706573,1.047667946548541,0.08405206988062329,1.015895520194249,0.48829110990902336,1.051457063697908,0.02915578159137823,1.0488855885151893,0.013054262827494433 +06083,0.47960381196121993,0.009937725356551883,0.08112070377098422,0.40006877525113155,0.02920736194929223,0.012944228954504634,0.020720697185274736,0.169141073836051,0.830858926163949,0.3600481824189906,0.4431837759595507,0.9839339967849565,0.010098041051706573,0.964552952183751,0.08405206988062329,0.9828001637596759,0.48829110990902336,0.9990395255483525,0.02915578159137823,0.9897910880563193,0.013054262827494433 +06085,0.48097687894974833,0.008790757140489398,0.0778408149099729,0.4043257553804215,0.02534785896027382,0.01139950520195348,0.018276880917196522,0.1618389954210368,0.8381610045789631,0.32563712224223224,0.44972260654516194,0.8702115418375855,0.010098041051706573,0.9276030549308445,0.08405206988062329,0.9843246892125874,0.48829110990902336,0.8700890780071762,0.02915578159137823,0.8725129110368184,0.013054262827494433 +06087,0.4854842402862455,0.00933530554294759,0.0812545468499334,0.4053828205346262,0.02687878104088835,0.01206625994502173,0.019228853932402454,0.16736804227058957,0.8326319577294105,0.3307972548358428,0.4489139565766163,0.9243376372743728,0.010098041051706573,0.9695666619146899,0.08405206988062329,0.994490783506383,0.48829110990902336,0.9239597591464338,0.02915578159137823,0.9261224780849775,0.013054262827494433 +06089,0.5082306374556713,0.012499538452275617,0.0971322158618897,0.4125427550883413,0.036240975940087766,0.016152683954571326,0.024594224611982088,0.19111837953760064,0.8088816204623994,0.3731097413819743,0.4457022344341483,1.2396848764793704,0.010098041051706573,1.154431608066807,0.08405206988062329,1.0409500400589715,0.48829110990902336,1.240697369930451,0.02915578159137823,1.2380068413230796,0.013054262827494433 +06091,0.5516937683718885,0.015158852499439091,0.11765119528553411,0.43493135269370753,0.04167542568073762,0.019203365137949742,0.027476932618207016,0.21325453001351866,0.7867454699864813,0.354228663632301,0.46078389900707206,1.5034634196001302,0.010098041051706573,1.3997491958740735,0.08405206988062329,1.1296780837858726,0.48829110990902336,1.4348844761139894,0.02915578159137823,1.4680457444601993,0.013054262827494433 +06093,0.5287526072280719,0.014538431267773072,0.10911084798229176,0.4210081000061404,0.041689083748693304,0.018662861440285842,0.027495715518055255,0.20635519615552067,0.7936448038444793,0.3820801003714981,0.4476678248144709,1.44095912258452,0.010098041051706573,1.298163091253967,0.08405206988062329,1.0834930672513785,0.48829110990902336,1.4280586601861867,0.02915578159137823,1.432166875024239,0.013054262827494433 +06095,0.48304551264358225,0.00906535499191528,0.0793981534020532,0.4049114851357087,0.025843049587894303,0.011709739705027537,0.01876708251009921,0.16436992234443457,0.8356300776555654,0.325486783767266,0.45310982611404915,0.8985117315075417,0.010098041051706573,0.9472210180872438,0.08405206988062329,0.9892465753214691,0.48829110990902336,0.8869107765626536,0.02915578159137823,0.8943054912409825,0.013054262827494433 +06097,0.49872449436033633,0.010908589511491713,0.08985608727203792,0.4104164580029593,0.0316425456332993,0.014147796847372548,0.021872977234621414,0.1801717948248908,0.8198282051751092,0.35214693399126074,0.4471131056056373,1.0801299568437885,0.010098041051706573,1.0678859746364369,0.08405206988062329,1.021336065760662,0.48829110990902336,1.0850434662219768,0.02915578159137823,1.0834105841092532,0.013054262827494433 +06099,0.47104510313541537,0.008409882166253895,0.07317778443169597,0.39917014654103583,0.024246378668435556,0.010862676897410672,0.017853666475408054,0.15535196936472329,0.8446480306352767,0.33133523864837816,0.44801234221223857,0.8323803523675929,0.010098041051706573,0.872783781808554,0.08405206988062329,0.964703623322192,0.48829110990902336,0.8327767166045099,0.02915578159137823,0.8322042333000763,0.013054262827494433 +06101,0.4802582054626984,0.00957868881832251,0.07945692086394648,0.40226149650405807,0.02751586929431167,0.012336586779658792,0.019944872798360727,0.16544625361974769,0.8345537463802524,0.3462992146578005,0.4483444316334619,0.9487631738674449,0.010098041051706573,0.9465095059667272,0.08405206988062329,0.9836620450276756,0.48829110990902336,0.9439250972343063,0.02915578159137823,0.9448154024247581,0.013054262827494433 +06103,0.4999913067817868,0.011713926271925143,0.0919302931404003,0.40985484724586974,0.033763363203676365,0.01507359735107518,0.02342825987780123,0.18386378301677514,0.8161362169832249,0.36727135365609415,0.44644833691905056,1.1606244043632663,0.010098041051706573,1.092372987577758,0.08405206988062329,1.0237655018277527,0.48829110990902336,1.156825194826252,0.02915578159137823,1.1568524493992474,0.013054262827494433 +06105,0.535635123490509,0.014330852414135481,0.11082283561905207,0.4258036415307531,0.040383162659591965,0.018414483499268657,0.026754878060922027,0.20689986664217652,0.7931001333578235,0.36439387635240683,0.4559940897767891,1.4203188614079862,0.010098041051706573,1.3172056524685165,0.08405206988062329,1.0969392962213984,0.48829110990902336,1.3879997389799001,0.02915578159137823,1.4029704701147288,0.013054262827494433 +06107,0.45935601777711443,0.007610336836067015,0.06686547872546639,0.3930495827907988,0.021788320813555008,0.009799193723693544,0.016567404238861307,0.1455635196618027,0.8544364803381973,0.3258530594391259,0.4497452468937966,0.7534879315372814,0.010098041051706573,0.7996279940020332,0.08405206988062329,0.9406953701256597,0.48829110990902336,0.7476111025809646,0.02915578159137823,0.7492034645596771,0.013054262827494433 +06109,0.5293956919697644,0.014369135323775952,0.1095535780814839,0.4211636019808951,0.041542283294435683,0.018559960191133318,0.0271425240925395,0.2069408190192467,0.7930591809807532,0.3791960429036586,0.44677275102062824,1.4253568989183174,0.010098041051706573,1.301831152843888,0.08405206988062329,1.0845935811280487,0.48829110990902336,1.4224015089984339,0.02915578159137823,1.4225461565534798,0.013054262827494433 +06111,0.48192470224897244,0.00920549708714196,0.07935711585248842,0.40397974948345344,0.02652942881268864,0.011896275481769938,0.01910152570346188,0.16466704338282884,0.8353329566171712,0.33430434722454383,0.4484180781185957,0.9113350230198736,0.010098041051706573,0.945107775169928,0.08405206988062329,0.9866690804677543,0.48829110990902336,0.911209380340489,0.02915578159137823,0.9122323086933377,0.013054262827494433 +06113,0.46351264635474376,0.007901387384258683,0.07000847464373389,0.3940471262141494,0.022774557926163782,0.01023341017265788,0.01704675686067787,0.15103897422068124,0.8489610257793188,0.32531144325113814,0.44933518384133253,0.7824623204472594,0.010098041051706573,0.8374962429372235,0.08405206988062329,0.9496787034921387,0.48829110990902336,0.7823769086371026,0.02915578159137823,0.7825666111157581,0.013054262827494433 +06115,0.4689802181368813,0.00818298420453065,0.07169026750167923,0.39843012418629836,0.023286816780564622,0.010557380056685849,0.01744846347046195,0.1528641608519935,0.8471358391480065,0.3248253576403403,0.4533629545063939,0.811384691083585,0.010098041051706573,0.8567280907033877,0.08405206988062329,0.9605621614535638,0.48829110990902336,0.8000290403800862,0.02915578159137823,0.8058346835490608,0.013054262827494433 +08001,0.46456635562615567,0.007070446389219595,0.06700300589910477,0.3982231691168645,0.020004069029463643,0.00914294664917105,0.015219454236391802,0.14422698735640513,0.8557730126435948,0.2985548000575735,0.4570543440789253,0.701078037448494,0.010098041051706573,0.8026482511676982,0.08405206988062329,0.9510568684154291,0.48829110990902336,0.6871183628659127,0.02915578159137823,0.6966304302604207,0.013054262827494433 +08003,0.4733493732922415,0.008801794868057055,0.07515114893333624,0.39942310810715864,0.025077351814366364,0.011316142188832944,0.018594711147157068,0.15876465286231323,0.8412353471376868,0.3336921946011968,0.4512494888854304,0.8718456989724138,0.010098041051706573,0.8976767899637172,0.08405206988062329,0.969348161756314,0.48829110990902336,0.8608827718923888,0.02915578159137823,0.865109233173609,0.013054262827494433 +08005,0.4796721347284598,0.00839011201749422,0.07601854999688318,0.40475335631144677,0.023897212208187735,0.010849572794407323,0.01749134754772408,0.15848022950075458,0.8415197704992454,0.3143602740274254,0.4540099782304318,0.831114155035173,0.010098041051706573,0.9079635227122933,0.08405206988062329,0.9820402357413163,0.48829110990902336,0.8206792018109463,0.02915578159137823,0.8284639557911915,0.013054262827494433 +08007,0.5004018560419226,0.012402934295387826,0.09350731567643611,0.40804434439479,0.0349042835528838,0.015804007626956766,0.024785947824999145,0.1868644461394689,0.8131355538605312,0.37327863922073534,0.45278132132441473,1.2290809799748368,0.010098041051706573,1.1127449632778954,0.08405206988062329,1.024268961629859,0.48829110990902336,1.1987128246142396,0.02915578159137823,1.207892338835081,0.013054262827494433 +08009,0.5366365482499731,0.0171736087291339,0.11964468194037033,0.4181945372055976,0.051181181056765085,0.022518695979917132,0.03200230917021735,0.2229529135325276,0.7770470864674723,0.4277764813840473,0.4399799987995906,1.7024493429027707,0.010098041051706573,1.417400340971002,0.08405206988062329,1.098365673606796,0.48829110990902336,1.7461704247696321,0.02915578159137823,1.716614408189229,0.013054262827494433 +08011,0.5018543019358304,0.010723042153103175,0.09135233475382387,0.4115387809385247,0.03139245818946297,0.014017641136451616,0.021366843148978878,0.1820295938511346,0.8179704061488654,0.3436415530490744,0.44652894181943054,1.0632203298185012,0.010098041051706573,1.0846215469444926,0.08405206988062329,1.0272907485846126,0.48829110990902336,1.076707160190665,0.02915578159137823,1.0738195052007573,0.013054262827494433 +08013,0.4781134240904099,0.00826078158459928,0.07562743170912034,0.4030991653366648,0.02355835343032381,0.010693676530625359,0.0172778699956293,0.15817885024458006,0.84182114975542,0.311505400856853,0.4539229179260333,0.8179880139029991,0.010098041051706573,0.9045582582162038,0.08405206988062329,0.9785998848596502,0.48829110990902336,0.8093327511573827,0.02915578159137823,0.8166647788618672,0.013054262827494433 +08014,0.47920916646225353,0.007926978044287016,0.07458024047028203,0.4052120097347924,0.022642307258292423,0.010267192915770103,0.016541791349292585,0.15563191543448196,0.844368084565518,0.3035965976445825,0.45345170872592455,0.7846104402975885,0.010098041051706573,0.8914010654166483,0.08405206988062329,0.9809278923087379,0.48829110990902336,0.7775036044946367,0.02915578159137823,0.7848664246811399,0.013054262827494433 +08015,0.5295206384362389,0.014291941529562976,0.1091227505968641,0.42071530855585454,0.04065910971201026,0.018360130265905016,0.026990338982384933,0.20607837103218762,0.7939216289678124,0.3725997511024864,0.4515625254942961,1.417047705401364,0.010098041051706573,1.2982234321146493,0.08405206988062329,1.0841539046710418,0.48829110990902336,1.3929083580349844,0.02915578159137823,1.4019438626129557,0.013054262827494433 +08017,0.5105922983841441,0.013938598045302463,0.10282837196945138,0.41008432102461784,0.04213610222853563,0.018405573589729073,0.027298880318824863,0.20139037015417036,0.7986096298458296,0.4097711693913969,0.4368124391264732,1.380661546081035,0.010098041051706573,1.2171212540801641,0.08405206988062329,1.0454645161779261,0.48829110990902336,1.4331890965973824,0.02915578159137823,1.4021672282070623,0.013054262827494433 +08019,0.5159033382530682,0.010236934787232067,0.09344240593565009,0.42197466523534255,0.02854389859558596,0.013138710633054707,0.01984273802510365,0.1811238637300955,0.8188761362699045,0.3054705014256906,0.46029839228361336,1.0144398351807642,0.010098041051706573,1.1173635546239171,0.08405206988062329,1.0564211389728706,0.48829110990902336,0.982230032564047,0.02915578159137823,1.0043766063444242,0.013054262827494433 +08021,0.4977558909798366,0.011664695925866582,0.09044794957479291,0.40891666348050837,0.0332970507449048,0.0149166881282391,0.023434571317487638,0.1817114598016015,0.8182885401983985,0.36813494282002396,0.4479882690667939,1.1558062008313668,0.010098041051706573,1.0770096401549374,0.08405206988062329,1.0186923535504748,0.48829110990902336,1.1414940208929036,0.02915578159137823,1.143247570332397,0.013054262827494433 +08023,0.530259668125109,0.015464911203095883,0.11233531430269869,0.41851424770223766,0.045065465467169954,0.019962745613207083,0.029164788749211648,0.2118496296350308,0.7881503703649693,0.4011691759346181,0.442972138560288,1.5337502353008565,0.010098041051706573,1.3347070454437775,0.08405206988062329,1.0855291171892336,0.48829110990902336,1.5400591370240002,0.02915578159137823,1.5333970816685119,0.013054262827494433 +08025,0.4835956728314778,0.008329171431337535,0.07853216779079061,0.4059789370136353,0.023574020256206148,0.010869949108310238,0.017223420099211812,0.16239220531271648,0.8376077946872835,0.3001829813103752,0.46109865819126,0.8256506793670245,0.010098041051706573,0.9380577448253102,0.08405206988062329,0.9904613585333879,0.48829110990902336,0.8120010652497731,0.02915578159137823,0.827036217590851,0.013054262827494433 +08027,0.5633126660154278,0.017233925941443934,0.12646455563207598,0.43706031620921304,0.04722435079902887,0.021797846413375385,0.03059389035816911,0.22450153043179116,0.7754984695682088,0.3734196555153282,0.4615806473685529,1.7117565201367286,0.010098041051706573,1.5078247754312266,0.08405206988062329,1.1528118727034697,0.48829110990902336,1.6255234748046035,0.02915578159137823,1.6607203605299317,0.013054262827494433 +08029,0.5257542186368925,0.014717533449173162,0.10870725941768386,0.4182765142752641,0.042814504242024744,0.01902236580461057,0.02799318184708223,0.20676440732996107,0.793235592670039,0.3938513809599355,0.4442972338784923,1.4593035899348723,0.010098041051706573,1.2918907643693045,0.08405206988062329,1.076988245937403,0.48829110990902336,1.4647584378236944,0.02915578159137823,1.4580546408422839,0.013054262827494433 +08031,0.47527604841422183,0.008668318542600771,0.07607672415924545,0.4001719107010474,0.025348634644500653,0.011308367055136832,0.018238492285742095,0.16006850000768727,0.8399314999923128,0.3331982932314533,0.44611345793293705,0.858193445674679,0.010098041051706573,0.9073656539836041,0.08405206988062329,0.972524957906645,0.48829110990902336,0.870238428168668,0.02915578159137823,0.8663170936162387,0.013054262827494433 +08033,0.5142478935342192,0.012791584643379216,0.10068505673931588,0.4158471626674982,0.03873224297488563,0.016975289984544305,0.0248743549642329,0.19579089774650885,0.8042091022534912,0.38468710481206214,0.43827283629174923,1.265987678522705,0.010098041051706573,1.1898080117966985,0.08405206988062329,1.0531880481057483,0.48829110990902336,1.3199933600724445,0.02915578159137823,1.291127727519092,0.013054262827494433 +08035,0.4691956534303521,0.006323694611512283,0.06688466205279184,0.40266135212184817,0.017383901663845503,0.008094766352036837,0.013477734853848086,0.14255175120184754,0.8574482487981525,0.25990864168715466,0.4656472700183342,0.6271880654560823,0.010098041051706573,0.7962257600659268,0.08405206988062329,0.960774088197218,0.48829110990902336,0.6006347924318964,0.02915578159137823,0.6204105830481814,0.013054262827494433 +08037,0.461095108694312,0.005267868437651143,0.0620923807035227,0.39853749593822946,0.014056098106013042,0.0066699453367071344,0.011424689480155674,0.13466284836408343,0.8653371516359165,0.2263739600052989,0.47452324865702283,0.5227066131649726,0.010098041051706573,0.7435012533342381,0.08405206988062329,0.9438724882920784,0.48829110990902336,0.490287283586347,0.02915578159137823,0.5146643510402205,0.013054262827494433 +08039,0.4990525801216995,0.00866353854749994,0.08313526850900131,0.4148224978145702,0.02360840959046341,0.010994523504588918,0.01735997145909403,0.16658619115590556,0.8334138088440944,0.28397586263773544,0.46570369183319077,0.8597784662632272,0.010098041051706573,0.9972065224671982,0.08405206988062329,1.0223509301666467,0.48829110990902336,0.8154163590439941,0.02915578159137823,0.844618574678808,0.013054262827494433 +08041,0.47531548754380243,0.00823648434846761,0.07428744462661982,0.40198080936118696,0.023441809841191055,0.010652086311745372,0.017328457759770727,0.1562908143610067,0.8437091856389933,0.3155554745356125,0.45440545691262846,0.8162251778504794,0.010098041051706573,0.8875088067052005,0.08405206988062329,0.9731495996926858,0.48829110990902336,0.8045062748899926,0.02915578159137823,0.812585626279789,0.013054262827494433 +08043,0.5153344110037639,0.012718103698578852,0.10075866762606273,0.4161598327773753,0.03672552865007989,0.016400802838201625,0.02467932167348701,0.19552093839378176,0.8044790616062183,0.36449001872847603,0.44657771966928367,1.2611299828835907,0.010098041051706573,1.1960136327448645,0.08405206988062329,1.0557089782579983,0.48829110990902336,1.2583358083355094,0.02915578159137823,1.2605199858653573,0.013054262827494433 +08045,0.47209303144253534,0.007450058526834747,0.07074232223777317,0.4018427705415931,0.021077793688714062,0.0096188108387204,0.015780911876776115,0.14984826618095115,0.8501517338190488,0.2979516790227658,0.45634808750740913,0.7383178221685291,0.010098041051706573,0.8481509645746752,0.08405206988062329,0.9661338224961704,0.48829110990902336,0.7242058016842818,0.02915578159137823,0.7341752011116272,0.013054262827494433 +08047,0.5088173919797452,0.008518028977274616,0.08662935006033765,0.42092932977269687,0.023211877253840323,0.010884584020681931,0.016740836912299762,0.17025626762338766,0.8297437323766124,0.2679447235570066,0.46892303891022497,0.8459431088604845,0.010098041051706573,1.039754478068454,0.08405206988062329,1.0422668834556958,0.48829110990902336,0.8001139985916357,0.02915578159137823,0.8342044554525427,0.013054262827494433 +08049,0.49988800082149976,0.009295056309078235,0.08581680863819485,0.4146417397648264,0.0257441753443185,0.01192017403971544,0.018594277705812182,0.17167207153835717,0.8283279284616428,0.29998989420425065,0.4630241163404021,0.9215837400325703,0.010098041051706573,1.0241171623689869,0.08405206988062329,1.0237921921894801,0.48829110990902336,0.8884300967757177,0.02915578159137823,0.9109731891395922,0.013054262827494433 +08051,0.47039957530061405,0.007332822716812633,0.07116046109167196,0.39998461152253695,0.020516318809385443,0.009454505963747993,0.01558849774072715,0.15127662699566868,0.8487233730043313,0.28831065024937713,0.46082857512542225,0.7265548935874152,0.010098041051706573,0.8527736323746415,0.08405206988062329,0.963720256709967,0.48829110990902336,0.7070335897965907,0.02915578159137823,0.7215942711662908,0.013054262827494433 +08053,0.593504549037208,0.01762341643277944,0.13814886406989382,0.4564297837713184,0.04738692994380162,0.022171109250732818,0.029693818625937094,0.23276799528158798,0.767232004718412,0.34301353299457527,0.46787393226416174,1.7476722295286213,0.010098041051706573,1.64125696696262,0.08405206988062329,1.2161084957504333,0.48829110990902336,1.6345556240231658,0.02915578159137823,1.6921681018289465,0.013054262827494433 +08055,0.5470317824613689,0.017268214258190348,0.12302548928120541,0.42523710648901336,0.05028393934869753,0.02230797164008223,0.031567113304627456,0.22489641959677803,0.775103580403222,0.4087278143943086,0.443640095207856,1.712482243680062,0.010098041051706573,1.4607528720318759,0.08405206988062329,1.1204745233594346,0.48829110990902336,1.719969912717291,0.02915578159137823,1.710207098564946,0.013054262827494433 +08057,0.5333195580644372,0.014387396744276706,0.10916389243376506,0.4244902512577813,0.04001058167523269,0.01827322306196663,0.026977065676144545,0.2046875851130432,0.7953124148869568,0.3665184593844436,0.4567097576908786,1.4274154340332046,0.010098041051706573,1.30131770091139,0.08405206988062329,1.091759692216788,0.48829110990902336,1.3722865315116772,0.02915578159137823,1.395852146925936,0.013054262827494433 +08059,0.49635668904564156,0.009996441799528286,0.0864397821490055,0.41107867326454345,0.028521726995569874,0.012913516605222232,0.020139633493705334,0.1741485187098125,0.8258514812901875,0.3299606533760569,0.4527606833635291,0.990122927201545,0.010098041051706573,1.0301014844424663,0.08405206988062329,1.0167130756154497,0.48829110990902336,0.9792033015227595,0.02915578159137823,0.9873254992262026,0.013054262827494433 +08061,0.5249194732260605,0.015332339668958793,0.11141878316234344,0.41513576548528697,0.04628911390637183,0.020285299783051332,0.029208936705527416,0.21225881081832168,0.7877411891816783,0.4154516194897407,0.4382304622223283,1.5181266497186399,0.010098041051706573,1.3147809673222075,0.08405206988062329,1.0743470367068733,0.48829110990902336,1.5814614411715975,0.02915578159137823,1.5443556933893263,0.013054262827494433 +08063,0.501526983971895,0.011771033311580251,0.09339201890398222,0.40964762197706484,0.03454329412136717,0.015313104844831577,0.023470388808112242,0.1862153421224805,0.8137846578775195,0.3698741554873299,0.4433018110846433,1.16686488223952,0.010098041051706573,1.1074583974639984,0.08405206988062329,1.0270870981632867,0.48829110990902336,1.1806724831466977,0.02915578159137823,1.1729183142821018,0.013054262827494433 +08065,0.47369323206085134,0.007569544824930177,0.07205939657916255,0.4021628753045887,0.02161614797444919,0.009812264947430906,0.01597984584242019,0.15212249553505483,0.8478775044649451,0.2999768108063778,0.4539321695534857,0.7493405278556808,0.010098041051706573,0.8621534080718607,0.08405206988062329,0.9692198138372123,0.48829110990902336,0.743589259409793,0.02915578159137823,0.7494671572633548,0.013054262827494433 +08067,0.4907620789501722,0.009449542721084371,0.08326028470183613,0.40839753552673186,0.02674524712640758,0.01221563572575956,0.019254834728263094,0.1696550900590053,0.8303449099409947,0.3212245456784724,0.4567404319737301,0.9360383141389186,0.010098041051706573,0.9940923010314691,0.08405206988062329,1.0050933572987288,0.48829110990902336,0.9199167620386349,0.02915578159137823,0.931339073862697,0.013054262827494433 +08069,0.4815753647530714,0.00917819984436384,0.07952246233689672,0.402883739942285,0.02626836933076311,0.011853924011689707,0.019058698837449834,0.16512983876920698,0.834870161230793,0.33032640789563616,0.45126227145769093,0.9093481965025323,0.010098041051706573,0.9496342555384866,0.08405206988062329,0.9865234065378974,0.48829110990902336,0.90201276238678,0.02915578159137823,0.9069151482994886,0.013054262827494433 +08071,0.5161300367457647,0.013138101772059646,0.10134250910333636,0.41584690373873395,0.03803330899863336,0.016961888460754127,0.025455022642929828,0.19635072925092256,0.8036492707490774,0.37529472415027504,0.4459745656462238,1.3030171256659315,0.010098041051706573,1.2055469312378857,0.08405206988062329,1.0571435025958427,0.48829110990902336,1.3025784087123713,0.02915578159137823,1.3002097968105693,0.013054262827494433 +08073,0.5054709271039979,0.012396217576072616,0.09697198770351026,0.4102749145282364,0.03696569643159977,0.016297017868989308,0.02452409606838211,0.19184483716816972,0.8081551628318303,0.3811997392960695,0.44086868210760827,1.2288610930315476,0.010098041051706573,1.15085594869625,0.08405206988062329,1.0349466761732482,0.48829110990902336,1.2592078737337822,0.02915578159137823,1.242200593322201,0.013054262827494433 +08075,0.4929532638176787,0.01094623528930853,0.08849303911781384,0.40643022653294847,0.03241028341595617,0.014368473687010165,0.02220542208106173,0.1795160831931188,0.8204839168068812,0.36624669848672775,0.4433307016357748,1.08328992012834,0.010098041051706573,1.0491835360034156,0.08405206988062329,1.0096210339465257,0.48829110990902336,1.1079986301468265,0.02915578159137823,1.0948784535553222,0.013054262827494433 +08077,0.49743179789042574,0.011440215963591942,0.09080301006270458,0.40885761171691865,0.03315517263162924,0.014789342544058302,0.02299856183723903,0.1825436380380063,0.8174563619619937,0.36513296870592427,0.44606441077461395,1.1340179648510058,0.010098041051706573,1.079369942413682,0.08405206988062329,1.0189938071363662,0.48829110990902336,1.1364544859339905,0.02915578159137823,1.1329605793932953,0.013054262827494433 +08079,0.6030544651540076,0.024071575203069597,0.159797824494806,0.443483427131702,0.06774056798606343,0.03051086072889409,0.03991608817111107,0.2649807500455153,0.7350192499544848,0.4239142065933772,0.45040751260265827,2.3883813234616538,0.010098041051706573,1.8935434877753758,0.08405206988062329,1.2329102909905485,0.48829110990902336,2.3206391630800702,0.02915578159137823,2.3374540988307873,0.013054262827494433 +08081,0.48459154635075385,0.0088220633721912,0.07845334626511419,0.4071900450331952,0.024801204727555835,0.01135712805648683,0.01820515326490172,0.1618958210392069,0.838104178960793,0.31612679265134386,0.4579264669295796,0.8753983366584698,0.010098041051706573,0.9376980385075249,0.08405206988062329,0.9924939913029991,0.48829110990902336,0.8519233726329278,0.02915578159137823,0.8650346572788871,0.013054262827494433 +08083,0.5126819577021617,0.012403595288166768,0.09781602420387162,0.41577032839817385,0.035536433209890056,0.015926901416254365,0.02419354748460357,0.19079279606850727,0.8092072039314927,0.36329868750158734,0.4481851434606495,1.2298624366400355,0.010098041051706573,1.1643970585892034,0.08405206988062329,1.0500701255258904,0.48829110990902336,1.217832184615533,0.02915578159137823,1.2219913005257124,0.013054262827494433 +08085,0.5116706259115432,0.01294160403583879,0.0991405914123803,0.41426281637185847,0.03738517459531072,0.016673284922079295,0.02529284148915774,0.19375861421741955,0.8062413857825804,0.37709251137917055,0.44598654687493827,1.2831624710063732,0.010098041051706573,1.1771847168727159,0.08405206988062329,1.047831153431241,0.48829110990902336,1.2806618282514481,0.02915578159137823,1.2794781253830605,0.013054262827494433 +08087,0.48761133340813845,0.01078711338463698,0.0857447339967802,0.40378704932840703,0.03182957819565051,0.014078466459369715,0.022122359850089854,0.17584647468603953,0.8241535253139605,0.3712132128935841,0.4423076665619631,1.0682768934941191,0.010098041051706573,1.0172312542742696,0.08405206988062329,0.9985570541123714,0.48829110990902336,1.0864801981257886,0.02915578159137823,1.0744207951574452,0.013054262827494433 +08089,0.5098623083210401,0.013684113385485716,0.10058206164139513,0.41126484219548365,0.04027741618956726,0.017787026453916832,0.026838840922654303,0.1972729891970414,0.8027270108029586,0.40044333484799893,0.44161289716801805,1.3567920003623892,0.010098041051706573,1.1939827103725986,0.08405206988062329,1.043625531674843,0.48829110990902336,1.3726995303208644,0.02915578159137823,1.3580420255125119,0.013054262827494433 +08091,0.523287100787425,0.01074776244433219,0.0963760641760346,0.42617388332479395,0.02851478782619315,0.013419596366316809,0.02053894014998519,0.18417435482550804,0.815825645174492,0.2958700178304624,0.4706188398845395,1.0653517605894076,0.010098041051706573,1.1547054275158657,0.08405206988062329,1.0719042895675255,0.48829110990902336,0.9850330513534449,0.02915578159137823,1.0334978363757994,0.013054262827494433 +08093,0.5158160572519637,0.009495387569310747,0.09100331121734544,0.4235772721892943,0.025166420223078953,0.011882662702169177,0.01840847611433019,0.176425898220715,0.823574101779285,0.276544005777695,0.4721634065091284,0.942994161998761,0.010098041051706573,1.0933356533637117,0.08405206988062329,1.0558502614567313,0.48829110990902336,0.8721007413737434,0.02915578159137823,0.9168833700079255,0.013054262827494433 +08095,0.5087228433994514,0.013649150939379105,0.10024658697131074,0.4102899424765136,0.04044956306723396,0.01776292697193562,0.026830230087902168,0.19705540702955357,0.8029445929704464,0.4035006506387105,0.4391376723256727,1.3532436433879147,0.010098041051706573,1.188139844863333,0.08405206988062329,1.041321935269007,0.48829110990902336,1.3767840314140205,0.02915578159137823,1.358669040565244,0.013054262827494433 +08097,0.5095863685959923,0.009682174469942888,0.08968498104964898,0.41959959397873037,0.026206506163368844,0.012313866316728789,0.01900006567408608,0.17599564387239836,0.8240043561276016,0.2922061849894477,0.46987821421006404,0.9610307652098825,0.010098041051706573,1.0748889880294912,0.08405206988062329,1.0435638146933806,0.48829110990902336,0.905723913874225,0.02915578159137823,0.9405511104832597,0.013054262827494433 +08099,0.49155048914397914,0.011146338503643024,0.08745854968890626,0.4061910611520652,0.03234191201129545,0.014383377201249062,0.022675877147541948,0.17792383818234578,0.8220761618176542,0.3697970310088264,0.44472872216786846,1.1038219902160151,0.010098041051706573,1.0385847235807928,0.08405206988062329,1.006261137018888,0.48829110990902336,1.1072181022927312,0.02915578159137823,1.1020506340159901,0.013054262827494433 +08101,0.49861532633801264,0.01170057086375357,0.09167080514698085,0.4091632227549511,0.03404102562809774,0.015138675652675078,0.023466127585139097,0.1838507568955812,0.8161492431044188,0.3713398783125979,0.4447185527858917,1.15945892209458,0.010098041051706573,1.0883039914101826,0.08405206988062329,1.0209730573466682,0.48829110990902336,1.1650476763514963,0.02915578159137823,1.1593432446658691,0.013054262827494433 +08103,0.49278883666560225,0.009951733907879234,0.08477360728137703,0.40952954127298413,0.02827112937449415,0.01284106437900788,0.020194722703575172,0.17202826235875732,0.8279717376412427,0.3334897532513603,0.4542112276063836,0.9861132707664921,0.010098041051706573,1.0115524172291808,0.08405206988062329,1.0094541785717053,0.48829110990902336,0.9735156022498361,0.02915578159137823,0.9819501333337701,0.013054262827494433 +08105,0.50340632105722,0.012123832086503836,0.09386666883721011,0.41101201160980205,0.03486338105286542,0.015599444048602376,0.024083591284754194,0.18646303177138826,0.8135369682286118,0.37141385205996647,0.4474449573593568,1.2010029967321052,0.010098041051706573,1.1134289174182874,0.08405206988062329,1.0310583084546447,0.48829110990902336,1.1940663962897042,0.02915578159137823,1.1954552564054097,0.013054262827494433 +08107,0.4859477525322329,0.007569763433372024,0.07651696979429051,0.4092909152822465,0.020414802192938453,0.00961015606930786,0.015577319565584209,0.15745925234877003,0.84254074765123,0.2668009756243869,0.47074451069783296,0.7515019773109624,0.010098041051706573,0.915826551049651,0.08405206988062329,0.9952086983508976,0.48829110990902336,0.7077606602398544,0.02915578159137823,0.7372723037960762,0.013054262827494433 +08109,0.5100345326183839,0.011203377296605184,0.09328902284527832,0.41746919593838294,0.03083175656197887,0.014216590738795349,0.021965919129220475,0.18290726780078373,0.8170927321992163,0.3304971541304913,0.4611021986443346,1.1113300321413906,0.010098041051706573,1.1124410632649222,0.08405206988062329,1.0446080857303177,0.48829110990902336,1.0621622927848302,0.02915578159137823,1.0886498108705078,0.013054262827494433 +08111,0.5082453741227726,0.010707148284077657,0.09366570213773567,0.4142172940084212,0.028988027123794363,0.013605235443426823,0.021066887824720704,0.18429228657398392,0.8157077134260161,0.3094839035228433,0.4693398203791241,1.0628595970933976,0.010098041051706573,1.1176110043660634,0.08405206988062329,1.0402642617742628,0.48829110990902336,1.0007110681799776,0.02915578159137823,1.0397345955515278,0.013054262827494433 +08113,0.4869200876769715,0.007174247907612655,0.07557444784279087,0.41131299014460554,0.01911716332975475,0.009075227887647256,0.014733932916672222,0.15520913955993504,0.8447908604400649,0.25295802847970605,0.47471623959618486,0.7124692124534862,0.010098041051706573,0.9024897839373249,0.08405206988062329,0.9967718945441879,0.48829110990902336,0.6640479721002788,0.02915578159137823,0.6973205560622192,0.013054262827494433 +08115,0.5513353986155478,0.019209802479964337,0.13098579178640046,0.4223787040138195,0.05890172909989038,0.02561130439247731,0.03484231654307316,0.2375791435037863,0.7624208564962137,0.44968029201168536,0.43481413506628236,1.9021351210213489,0.010098041051706573,1.5480382227034535,0.08405206988062329,1.1289855406326978,0.48829110990902336,2.0054775211400893,0.02915578159137823,1.9438942620101947,0.013054262827494433 +08117,0.47882756090160994,0.007019797993696239,0.0728577236128132,0.4066750664940235,0.01886924224168693,0.008896128443643502,0.01466038834623113,0.15215858392868095,0.847841416071319,0.25898753496559246,0.47146188117664334,0.6972426927280466,0.010098041051706573,0.8726522156718566,0.08405206988062329,0.9804053103690151,0.48829110990902336,0.6530191511204889,0.02915578159137823,0.6831641157922476,0.013054262827494433 +08119,0.5210095164023079,0.010821562995824228,0.09604148780148794,0.4242909389194991,0.029171924067606405,0.013676114550156425,0.02077037492625786,0.1843373005250975,0.8156626994749026,0.30374294209084973,0.46881085109305126,1.0728408782541003,0.010098041051706573,1.15002853117959,0.08405206988062329,1.0670656757479882,0.48829110990902336,1.0086954268830226,0.02915578159137823,1.0477831501216923,0.013054262827494433 +08121,0.5162265308471143,0.013457589955656352,0.10276291389248686,0.41514465698428055,0.03989816590474504,0.017641130105703586,0.026069155983852274,0.1990655414859356,0.8009344585140644,0.38825452094991686,0.44215391123042946,1.3334081564696598,0.010098041051706573,1.2189108471461836,0.08405206988062329,1.057184551673803,0.48829110990902336,1.36033266968772,0.02915578159137823,1.3431230974341228,0.013054262827494433 +08123,0.46919841148531893,0.007770163427821937,0.0705381020657081,0.39957485498668527,0.022003663582851857,0.010028672892106055,0.016560506680370683,0.15033746990406255,0.8496625300959375,0.311940113760856,0.4557728695653079,0.7702447097605962,0.010098041051706573,0.8439807759270206,0.08405206988062329,0.9606237347530502,0.48829110990902336,0.7556020097828391,0.02915578159137823,0.7642646954638028,0.013054262827494433 +08125,0.4998877673467534,0.012193917446289752,0.0932455916459282,0.40883491213410866,0.03561402817788323,0.015773648507056554,0.02439331034446236,0.18653305349087934,0.8134669465091207,0.38193792917435365,0.44290548736220164,1.2083447077903702,0.010098041051706573,1.1070812992279047,0.08405206988062329,1.0230482771036258,0.48829110990902336,1.2170400839811644,0.02915578159137823,1.206637616884639,0.013054262827494433 +09001,0.4931958426338958,0.010497642246799591,0.08721579069349504,0.40781303110196687,0.030766340874233702,0.01367078462086593,0.021284936610043763,0.1768380492173698,0.8231619507826302,0.3527611299467173,0.44434223350606455,1.0391018413364312,0.010098041051706573,1.0343446351751822,0.08405206988062329,1.0098886863355556,0.48829110990902336,1.0534959884196033,0.02915578159137823,1.046682485770369,0.013054262827494433 +09003,0.4993351024731201,0.011315333588902642,0.0912997031121972,0.4096283572890882,0.033367715153672275,0.014791301115246007,0.022660801399420467,0.1828425493421264,0.8171574506578736,0.36547451980941337,0.44328180839251,1.12017311897702,0.010098041051706573,1.082212173868832,0.08405206988062329,1.0223242343919794,0.48829110990902336,1.1401367445931312,0.02915578159137823,1.129272634692506,0.013054262827494433 +09005,0.5119138760670983,0.012083658871261244,0.09775743888548369,0.4151081490571581,0.0351853586484001,0.015698746119288544,0.023604866826617138,0.19096462013596657,0.8090353798640334,0.359925127433191,0.44617269007153854,1.197523284063653,0.010098041051706573,1.160807503306265,0.08405206988062329,1.0482523756174484,0.48829110990902336,1.2052536758935948,0.02915578159137823,1.2019817348460915,0.013054262827494433 +09007,0.5090781009158374,0.011812104825949986,0.0957772956479038,0.41446940026892554,0.034209523617643206,0.015278318077388357,0.023202932525873483,0.18813870695989346,0.8118612930401066,0.35717779862363364,0.4466100799342533,1.1707266303321897,0.010098041051706573,1.1375103943718403,0.08405206988062329,1.0422681694241096,0.48829110990902336,1.1722009630108423,0.02915578159137823,1.1722967992061686,0.013054262827494433 +09009,0.4958737546440264,0.01110635882581874,0.08986095703440186,0.40800375795940663,0.03288382267209452,0.014564724169950865,0.022397553251818456,0.18121740905386388,0.8187825909461361,0.36594115795478854,0.4429145697319007,1.0991032871611324,0.010098041051706573,1.065023674240924,0.08405206988062329,1.0155605190108927,0.48829110990902336,1.1237087008390483,0.02915578159137823,1.1103334620392316,0.013054262827494433 +09011,0.49788922361278,0.010870381390858833,0.0897229108847625,0.40950913710173387,0.03153350906205894,0.014081908616502369,0.021832931654919653,0.18020657332913495,0.8197934266708651,0.3514543693590109,0.4465696662172525,1.0776161207918937,0.010098041051706573,1.0656540674494728,0.08405206988062329,1.0194819705853946,0.48829110990902336,1.0811133376049926,0.02915578159137823,1.0798742121859113,0.013054262827494433 +09013,0.48529234615843064,0.009405172154441838,0.08167432538845507,0.4046173390761726,0.026889201457391695,0.012155191172754553,0.01938042548763253,0.16829922424078642,0.8317007757592136,0.3292246532738741,0.45204730947534916,0.9320230226708761,0.010098041051706573,0.973713785154211,0.08405206988062329,0.9940501611298658,0.48829110990902336,0.9232773802649119,0.02915578159137823,0.9296096086190624,0.013054262827494433 +09015,0.49194351820559923,0.010077982223988584,0.0854865970938615,0.4081451565768043,0.02924233185729762,0.01309286369865554,0.020486055514561462,0.17377319535722363,0.8262268046427763,0.34206919975058186,0.44773664981810013,0.9980906350469081,0.010098041051706573,1.0160861885725452,0.08405206988062329,1.007506970886948,0.48829110990902336,1.0038591344846082,0.02915578159137823,1.0028315138838986,0.013054262827494433 +10001,0.4863328266291586,0.010041716227179892,0.08299825203975382,0.40469098566049666,0.028547512338306616,0.012936391960761837,0.020647827325949684,0.17066142257973085,0.8293385774202692,0.3439531753588396,0.4531530386065576,0.9955911889736417,0.010098041051706573,0.988542973887822,0.08405206988062329,0.9961711414106971,0.48829110990902336,0.9810380166947819,0.02915578159137823,0.9877007032307793,0.013054262827494433 +10003,0.48603463324574225,0.009710147593315442,0.08234326291317148,0.40508628945276137,0.02806024627809183,0.012580734854993513,0.01997830386791784,0.1694185090541443,0.8305814909458558,0.34077161003056833,0.44834727144985825,0.9615206952534012,0.010098041051706573,0.9800995260831455,0.08405206988062329,0.9951645000343281,0.48829110990902336,0.9634242323080839,0.02915578159137823,0.9631896324655623,0.013054262827494433 +10005,0.5257511794279339,0.014536651147412774,0.10809845926443504,0.4191761358974021,0.041542720711940644,0.018599616591843483,0.02764929821599259,0.2056076400666494,0.7943923599333507,0.38430446645235783,0.44772264004599455,1.4415981164392384,0.010098041051706573,1.2850179337899545,0.08405206988062329,1.0776373161945192,0.48829110990902336,1.422711352287314,0.02915578159137823,1.4281214398978483,0.013054262827494433 +11001,0.47915359753720727,0.009193958962754439,0.07935189673410878,0.4009764800679251,0.026740979218195307,0.011965721434968591,0.019187915962668962,0.16560847532392145,0.8343915246760786,0.336992312960062,0.4474675866329824,0.9105399199754469,0.010098041051706573,0.9460419579097612,0.08405206988062329,0.9806541987794984,0.48829110990902336,0.9177965278037217,0.02915578159137823,0.916098057233637,0.013054262827494433 +12001,0.46610511676030175,0.008443321975892855,0.07320978400726644,0.39417404755360724,0.02431447320361372,0.010919543146464409,0.01811463052493135,0.15706711077560462,0.8429328892243954,0.3321205428116054,0.44909643137329003,0.8359589916061341,0.010098041051706573,0.8731803313383748,0.08405206988062329,0.9552263036315604,0.48829110990902336,0.8350287872093886,0.02915578159137823,0.835456551471154,0.013054262827494433 +12003,0.48017683349763607,0.008586733280989193,0.07696966254919263,0.4039779521853008,0.024516281037979867,0.0111285747723643,0.017882439722139293,0.16029441068312505,0.839705589316875,0.31851875435092486,0.45392589337364236,0.8507835925493518,0.010098041051706573,0.9182412725869137,0.08405206988062329,0.9831217526571462,0.48829110990902336,0.8423157130427368,0.02915578159137823,0.8494033058630434,0.013054262827494433 +12005,0.4969571260879661,0.010839048602783933,0.08888422651630941,0.40941873770356435,0.03090841125237767,0.01396813433440812,0.02181083243157946,0.17885693121256513,0.8211430687874348,0.34773786602852724,0.45192016569061283,1.0743349854850353,0.010098041051706573,1.0572968361361599,0.08405206988062329,1.0175381128163303,0.48829110990902336,1.061416649891969,0.02915578159137823,1.0678013351295328,0.013054262827494433 +12007,0.49747434646903405,0.010613443259522326,0.08902578491829832,0.4098833279388428,0.030960342342407052,0.013827056084477863,0.021334654409527375,0.17895552916483876,0.8210444708351612,0.3477682602947034,0.446605400274875,1.0510979763953627,0.010098041051706573,1.0579232559205727,0.08405206988062329,1.0187025188783512,0.48829110990902336,1.061596675679227,0.02915578159137823,1.0589809899515115,0.013054262827494433 +12009,0.5229681988334375,0.014417460381235802,0.10738871952691004,0.41680809152225806,0.04219345280473303,0.018719413331211666,0.02756852216520279,0.20534464574797742,0.7946553542520226,0.3929039566782428,0.4436568255706209,1.4301633523178134,0.010098041051706573,1.2760069978735287,0.08405206988062329,1.0708577352902624,0.48829110990902336,1.4419241726919085,0.02915578159137823,1.4319952189541783,0.013054262827494433 +12011,0.4963628228462099,0.01096097327446596,0.08971784476867325,0.40846967387214184,0.032387895753020146,0.014344595203987846,0.02208258308229914,0.18075053295534765,0.8192494670446524,0.3609972557469305,0.4428998818995588,1.0850180103481257,0.010098041051706573,1.06312181112744,0.08405206988062329,1.0164815467109378,0.48829110990902336,1.1070377777086775,0.02915578159137823,1.095958607219282,0.013054262827494433 +12013,0.5016039350803432,0.011803963848413482,0.0931490122799881,0.41002936049797944,0.033527100279922464,0.015172789362967615,0.023532438688948505,0.18570231564285514,0.8142976843571449,0.3599297454614593,0.4525529865776601,1.1702290813204632,0.010098041051706573,1.1068873390820024,0.08405206988062329,1.027352188552143,0.48829110990902336,1.1492674636699358,0.02915578159137823,1.1567428843068308,0.013054262827494433 +12015,0.5739452609894344,0.02193938561105793,0.1447191963887216,0.42990717806392054,0.06461941830022125,0.028475442059108506,0.038225571500035097,0.25214808140281114,0.7478519185971888,0.4465158728953337,0.44066385628561144,2.175383428563224,0.010098041051706573,1.7135618900474867,0.08405206988062329,1.1749423703702577,0.48829110990902336,2.209026701516576,0.02915578159137823,2.1812410457315616,0.013054262827494433 +12017,0.5680234384027342,0.02084601471732138,0.13962991113101614,0.42929545235446487,0.06085139098210776,0.02691643441894168,0.03669921575056794,0.24581716473470092,0.7541828352652991,0.43580483930130337,0.44233063508533377,2.0674642312725977,0.010098041051706573,1.6528485643442759,0.08405206988062329,1.1631092084991468,0.48829110990902336,2.083338443414788,0.02915578159137823,2.064242578846705,0.013054262827494433 +12019,0.48586931630643104,0.00913912017193343,0.08013676446811951,0.4071285506602724,0.02569864027288734,0.011804101382296858,0.018809831914081015,0.16493481226046053,0.8350651877395394,0.3206847748777145,0.45932785769799883,0.9070132467095382,0.010098041051706573,0.9564411516425853,0.08405206988062329,0.9951846680757044,0.48829110990902336,0.8835657294634605,0.02915578159137823,0.8977243646264531,0.013054262827494433 +12021,0.5367152860768873,0.017053096381461637,0.11877528470820471,0.41929920730428183,0.04967647652553174,0.022021339693685818,0.031773077502806,0.22130035754411048,0.7786996424558895,0.4182391702749605,0.4432951214317248,1.6910645630898236,0.010098041051706573,1.4061714332343018,0.08405206988062329,1.0991994673575807,0.48829110990902336,1.7004194664056036,0.02915578159137823,1.6877100362903081,0.013054262827494433 +12023,0.5019257214934865,0.011558127085438446,0.09216319596143488,0.4116133868765325,0.03315984576299168,0.014849643480538204,0.02302756481785211,0.1836191930694488,0.8163808069305512,0.35979487708810803,0.44782004074069826,1.1458418143317215,0.010098041051706573,1.0961230123048458,0.08405206988062329,1.027774199190581,0.48829110990902336,1.1369917676603998,0.02915578159137823,1.1396211718569274,0.013054262827494433 +12027,0.4991107272661919,0.01232088830502004,0.09352090358956455,0.4075065586477119,0.03529724203776746,0.015772599447567696,0.024685681216482677,0.1873750622468325,0.8126249377531675,0.37742622967669953,0.44685076048409894,1.2204923195719688,0.010098041051706573,1.11030839487143,0.08405206988062329,1.0221677536586506,0.48829110990902336,1.209124514153527,0.02915578159137823,1.2103607737262103,0.013054262827494433 +12029,0.5222700540281706,0.013618636969498247,0.10436586556491165,0.41924737984866234,0.038022295529593804,0.017347510388493147,0.026075852644547134,0.19983122669959225,0.8001687733004077,0.36431734958347434,0.4562457407389067,1.3507205232459427,0.010098041051706573,1.2415880759278328,0.08405206988062329,1.0705769645436511,0.48829110990902336,1.3050881422518128,0.02915578159137823,1.3253821892036144,0.013054262827494433 +12031,0.48050951217413546,0.008856986572453061,0.07791922980352142,0.4034358793714987,0.025346220696955683,0.011437786505619876,0.01843248957211759,0.16215959898684312,0.8378404010131568,0.325288388512924,0.45126201031594665,0.8775046053769675,0.010098041051706573,0.9298932506376889,0.08405206988062329,0.9833900553478885,0.48829110990902336,0.8697958086823018,0.02915578159137823,0.8754708926750829,0.013054262827494433 +12033,0.49229725059213375,0.010836953551757641,0.08762789541666832,0.4067007085213976,0.03119509212872228,0.013955605716418299,0.022013028792508965,0.1779979378541516,0.8220020621458484,0.35599499429251885,0.4473654271906748,1.073690192670612,0.010098041051706573,1.0425630454424306,0.08405206988062329,1.0089340044311386,0.48829110990902336,1.0691275039380659,0.02915578159137823,1.0703679359587421,0.013054262827494433 +12035,0.5388969715103189,0.01655256755263801,0.1178805495294874,0.4223414546459202,0.04793772858653268,0.02131186197522609,0.030715644042770534,0.2187441306250321,0.7812558693749679,0.40666359953251857,0.44457387956452543,1.6415532116597367,0.010098041051706573,1.3992455374737431,0.08405206988062329,1.1036654122949026,0.48829110990902336,1.6400210382427083,0.02915578159137823,1.6352440358759996,0.013054262827494433 +12037,0.5184935219211413,0.012558486975488982,0.10033732805678808,0.4191081482200855,0.035277243340556555,0.016096583595055905,0.024221106811434814,0.19351703312514787,0.8064829668748521,0.3515864337207648,0.4562880222715825,1.2452759899197177,0.010098041051706573,1.1944426945378528,0.08405206988062329,1.0616056551838993,0.48829110990902336,1.2108236455215162,0.02915578159137823,1.228655782468357,0.013054262827494433 +12039,0.4950590940199678,0.01050149997283811,0.08702853213585628,0.4098872495044067,0.029935324650233245,0.013511499624691727,0.021212619058391724,0.17579422979420323,0.8242057702057968,0.34397138404566646,0.45135637520425054,1.0404412897558886,0.010098041051706573,1.036389025956053,0.08405206988062329,1.0138924358335855,0.48829110990902336,1.0274315327993953,0.02915578159137823,1.03367609414861,0.013054262827494433 +12041,0.5029001931130632,0.011944208948884398,0.09392309718915468,0.41051100090488335,0.03423875750777837,0.01533567437373934,0.023750654926074113,0.18676289744044433,0.8132371025595557,0.3645403370677168,0.4479039395706862,1.1845210871605434,0.010098041051706573,1.1162413110414886,0.08405206988062329,1.0300114629446964,0.48829110990902336,1.1739147438761326,0.02915578159137823,1.1767618484621383,0.013054262827494433 +12043,0.5219357723439398,0.01422170286316899,0.10582020289470297,0.41736445054212623,0.03955644440780286,0.01808016016153869,0.027247994134031724,0.20274564132571213,0.7972543586742878,0.3738080567390684,0.45707242984589935,1.4106675007931526,0.010098041051706573,1.2553932082876085,0.08405206988062329,1.0690851756746724,0.48829110990902336,1.3562741524109554,0.02915578159137823,1.37745061714325,0.013054262827494433 +12045,0.5137540110439244,0.011967511516276085,0.09781009070953875,0.4167820641442497,0.03385570699628855,0.015455199791931142,0.023294244441923975,0.1903831183931648,0.8096168816068352,0.3461371597827057,0.4565020542511614,1.1859925048992168,0.010098041051706573,1.1623014205305189,0.08405206988062329,1.05174038025017,0.48829110990902336,1.1638010211701275,0.02915578159137823,1.1768244228241118,0.013054262827494433 +12047,0.4915424131239054,0.009888764965840109,0.08450631786569657,0.40795505770397533,0.027651395757028175,0.012654552528939596,0.020117826461797918,0.17192070431650558,0.8280792956834944,0.3272109879520929,0.45764606749455605,0.9813858449561634,0.010098041051706573,1.009090703561191,0.08405206988062329,1.006459552730902,0.48829110990902336,0.9502753899557195,0.02915578159137823,0.9680877462655265,0.013054262827494433 +12049,0.4776690115412,0.009616017111337891,0.07879363142185766,0.40052711519447126,0.027117106802905102,0.012278156007970052,0.020131130299434315,0.16495445490095717,0.8350455450990428,0.3441535351724214,0.45278266952338264,0.9537493198740981,0.010098041051706573,0.9369940801013801,0.08405206988062329,0.9783318008877637,0.48829110990902336,0.9320055591053973,0.02915578159137823,0.9394591317138421,0.013054262827494433 +12051,0.47024928932774324,0.0084865247898408,0.0731022238489355,0.39859927103478754,0.024255632658844003,0.010948493549315664,0.018046863615621675,0.1554541931438974,0.8445458068561026,0.33180430610384515,0.45137942610306075,0.8411692874131602,0.010098041051706573,0.8722537399191255,0.08405206988062329,0.963024321831836,0.48829110990902336,0.8333358286961834,0.02915578159137823,0.8369239038590192,0.013054262827494433 +12053,0.5389677627694165,0.01738169259180524,0.12084156226198049,0.4197222258997233,0.05101251966765527,0.02253332000022298,0.03224996705274477,0.2242092581586915,0.7757907418413085,0.42214382794110045,0.44172136853907135,1.723765565761577,0.010098041051706573,1.4307485070884856,0.08405206988062329,1.1036518485752644,0.48829110990902336,1.7438918952916704,0.02915578159137823,1.726082242977443,0.013054262827494433 +12055,0.557158507991887,0.020780664789137763,0.13578854921146,0.4217394511203985,0.061389801330239024,0.027003854176198244,0.03729758137237376,0.24371619074950437,0.7562838092504957,0.45209851409958196,0.43987524948866136,2.0617430378074797,0.010098041051706573,1.6063733063914079,0.08405206988062329,1.1401353838610144,0.48829110990902336,2.1004663389137095,0.02915578159137823,2.067461025348385,0.013054262827494433 +12057,0.4823358517364137,0.009328227944916816,0.07996238370443871,0.40348050312928607,0.02681861477818551,0.012059802316320483,0.019339694346449898,0.16578154706222514,0.8342184529377749,0.33539038652616865,0.44968028423787304,0.9238124992044437,0.010098041051706573,0.9524141324065241,0.08405206988062329,0.9872663024792425,0.48829110990902336,0.9207205454403125,0.02915578159137823,0.9230626193008976,0.013054262827494433 +12059,0.5083607503390895,0.012375095152761414,0.09690319017657287,0.41305348715661455,0.035429619145385144,0.015900919680941497,0.02434313653150231,0.19061894552625472,0.8093810544737453,0.36561870750412656,0.44880300902169473,1.227413170030681,0.010098041051706573,1.150732477508408,0.08405206988062329,1.04115210886265,0.48829110990902336,1.2145933538850238,0.02915578159137823,1.2191891564684927,0.013054262827494433 +12061,0.5436652433153893,0.01826103265054585,0.12510251345587697,0.4199694231600049,0.05463564878903228,0.023954540541330192,0.033588743946892916,0.23010945612961117,0.7698905438703888,0.43672702713764416,0.4384415866246453,1.81047698586549,0.010098041051706573,1.4791208239425873,0.08405206988062329,1.1129798283028085,0.48829110990902336,1.8609137259183306,0.02915578159137823,1.825164746758095,0.013054262827494433 +12063,0.5036126252774319,0.011577357681369832,0.09366459913467573,0.41154147420511145,0.03350663606594405,0.014985296688531685,0.022988616846116708,0.18598540710348047,0.8140145928965196,0.35772998951040724,0.4472336960069428,1.1484406797720519,0.010098041051706573,1.1123354375779475,0.08405206988062329,1.031645074505624,0.48829110990902336,1.1485932461677382,0.02915578159137823,1.1487187442150244,0.013054262827494433 +12065,0.5195028762450767,0.01282082901122049,0.10139396641959281,0.41862798719422556,0.036044669679718554,0.01642792001603012,0.024679033740656775,0.1951749856564027,0.8048250143435973,0.3554912678981013,0.4557655864793153,1.2707795974646139,0.010098041051706573,1.207356387826413,0.08405206988062329,1.0642738532576463,0.48829110990902336,1.2384607438320594,0.02915578159137823,1.2533289662956528,0.013054262827494433 +12067,0.48762992833823654,0.010538685220934162,0.08550315260194456,0.4038798973800679,0.030670441452517197,0.013638689369650197,0.02161205579987325,0.17534434954254222,0.8246556504574578,0.35870538710194494,0.4446851340814606,1.0436119483050323,0.010098041051706573,1.0152063897475503,0.08405206988062329,0.9989396399375172,0.48829110990902336,1.0509002366629199,0.02915578159137823,1.046099311035725,0.013054262827494433 +12069,0.5327019012923027,0.01624535090548966,0.11499301084618582,0.4190715403473489,0.04701350694259836,0.020889090911287243,0.030496138395750834,0.215867468404411,0.7841325315955889,0.40883795107759574,0.44432105302827124,1.6107008476102962,0.010098041051706573,1.3642804378978504,0.08405206988062329,1.0908232422103832,0.48829110990902336,1.6093033848592169,0.02915578159137823,1.6031279331895418,0.013054262827494433 +12071,0.5289350387653313,0.01573545054976156,0.11269774273783714,0.4174655279889845,0.045895750898063366,0.02033146292522666,0.029749306429939105,0.21306537566674028,0.7869346243332598,0.40724640780808047,0.4429922711229587,1.5605281782628073,0.010098041051706573,1.3375667756344,0.08405206988062329,1.0832150670564407,0.48829110990902336,1.5695378959759076,0.02915578159137823,1.5591175353911462,0.013054262827494433 +12073,0.46237977862295954,0.0076142487726071646,0.06921553864340038,0.39388835560068863,0.021623338436189257,0.009841316696691669,0.016467521125780215,0.14969412989801426,0.8503058701019858,0.31240583920892473,0.45512475909922595,0.7539976049840652,0.010098041051706573,0.8285343390677822,0.08405206988062329,0.9474270457172695,0.48829110990902336,0.7436271511570595,0.02915578159137823,0.7502543100235861,0.013054262827494433 +12075,0.5219445108645883,0.01357739189856926,0.10386064202766879,0.4194152539699557,0.03832693536140652,0.01741506569730514,0.026013094526233533,0.19898789979729106,0.801012100202709,0.36902270786267727,0.45438189965069103,1.3456839852332605,0.010098041051706573,1.2353549430622142,0.08405206988062329,1.0694057732473374,0.48829110990902336,1.3156078133794726,0.02915578159137823,1.3276155951046658,0.013054262827494433 +12077,0.4787158891076144,0.007157031243678861,0.07332507678185113,0.40558866202187405,0.019482784362277454,0.009132102779201916,0.014950477739563756,0.15317034268183188,0.8468296573181682,0.2657042476783289,0.46872677998138107,0.7105002713264829,0.010098041051706573,0.8791694425744984,0.08405206988062329,0.9799569526040134,0.48829110990902336,0.6747981365822296,0.02915578159137823,0.7003452123834233,0.013054262827494433 +12079,0.5028995631045894,0.012034232889862023,0.09443603464972673,0.41011746636608665,0.03509334346454449,0.015614238251902085,0.02392969446139533,0.18778309145217256,0.8122169085478275,0.37160966780010857,0.4449344721934934,1.193103563826746,0.010098041051706573,1.122589573269789,0.08405206988062329,1.0299920331137913,0.48829110990902336,1.2007960869820917,0.02915578159137823,1.1942843025579675,0.013054262827494433 +12081,0.5294990444102087,0.015958326314171968,0.1137206000263984,0.41729033144480066,0.04708404998195587,0.02075798061409863,0.030138536570821228,0.21477017046002034,0.7852298295399797,0.4140327255662216,0.4408707539401084,1.5827708333295751,0.010098041051706573,1.3475376209133634,0.08405206988062329,1.0841869448654406,0.48829110990902336,1.6055626012153033,0.02915578159137823,1.587254987583092,0.013054262827494433 +12083,0.5380041700013997,0.017012898147586605,0.11910872573393957,0.42031455943598295,0.04945204931357677,0.02193812810613243,0.03162224216132441,0.2213899675417566,0.7786100324582435,0.4151841018267698,0.4436242463284418,1.6869979630284466,0.010098041051706573,1.4118328038674592,0.08405206988062329,1.1018327465210116,0.48829110990902336,1.6923973376565298,0.02915578159137823,1.682676181178101,0.013054262827494433 +12085,0.5484001319806767,0.01855703141865054,0.12742943503662424,0.4224040448503325,0.05533545010558525,0.024283996492775246,0.03383848824329679,0.23236579935964405,0.7676342006403559,0.4342438628067479,0.4388506183005486,1.840551678178922,0.010098041051706573,1.5079608358488221,0.08405206988062329,1.122777664006366,0.48829110990902336,1.8843032586355015,0.02915578159137823,1.8522879973000081,0.013054262827494433 +12086,0.4917752174765938,0.010546418753740879,0.08676341675479673,0.40659062276211877,0.030608544868279287,0.013657313630654706,0.021445608438458653,0.17642901405239328,0.8235709859476067,0.352781690868428,0.446192842208852,1.0446753461581488,0.010098041051706573,1.0300999703971603,0.08405206988062329,1.0069453779012725,0.48829110990902336,1.049973739941592,0.02915578159137823,1.0473957553665083,0.013054262827494433 +12087,0.5270000332463204,0.01285164082407285,0.10453808685076146,0.42248673923657043,0.03622214286009522,0.016549601077910932,0.024386413687503466,0.1983644786638946,0.8016355213361054,0.34649708973348575,0.4568918283446753,1.2742184873318911,0.010098041051706573,1.243943405539241,0.08405206988062329,1.078758951171745,0.48829110990902336,1.2447578756065645,0.02915578159137823,1.2613711958003517,0.013054262827494433 +12089,0.5111041145618611,0.011919012162987248,0.09620370627658825,0.4156062495049437,0.03374671749662545,0.015354553627535463,0.023320125632728866,0.18822721933877976,0.8117727806612203,0.35078396459698474,0.45499398953604486,1.1812662411789678,0.010098041051706573,1.1445857222529225,0.08405206988062329,1.0465876884375716,0.48829110990902336,1.1597916426532984,0.02915578159137823,1.1702865385093981,0.013054262827494433 +12091,0.4921339022386541,0.010355992825965058,0.08587886147752863,0.40757727808672917,0.029534828549909683,0.013350481625064484,0.021043038853566016,0.17450303888205362,0.8254969611179463,0.3439126700304227,0.45202502538669076,1.0266550502950853,0.010098041051706573,1.0226253765707356,0.08405206988062329,1.0078256613934966,0.48829110990902336,1.013942697619566,0.02915578159137823,1.020403903660947,0.013054262827494433 +12093,0.4995656328534262,0.012172215763711807,0.0935954256398204,0.40782635290236363,0.03526610063281663,0.0157182980819313,0.024365598758638318,0.18735361178714535,0.8126463882128546,0.3767929938000365,0.44570558694841206,1.2070222861614388,0.010098041051706573,1.1111133106458744,0.08405206988062329,1.0230389679952507,0.48829110990902336,1.2085023486383526,0.02915578159137823,1.2045933135208378,0.013054262827494433 +12095,0.4703022621687122,0.007885870619649762,0.07199747906138715,0.3991027149396685,0.02261301812461348,0.010207517581986106,0.01676766465737486,0.15308767329628406,0.846912326703716,0.3140806930938924,0.45140005309046205,0.7808491931930314,0.010098041051706573,0.8601326475698353,0.08405206988062329,0.9624494274843266,0.48829110990902336,0.7759651915546661,0.02915578159137823,0.7806103363288803,0.013054262827494433 +12097,0.4780247760865468,0.008669320491432691,0.07638334347729561,0.4028077817534733,0.024558109755158215,0.01122891234121107,0.018135713722635796,0.15978950736115471,0.8402104926388453,0.321511322196284,0.4572384622905489,0.8605345473823869,0.010098041051706573,0.9113606489261373,0.08405206988062329,0.9787569090127397,0.48829110990902336,0.8438847672294305,0.02915578159137823,0.853762650344422,0.013054262827494433 +12099,0.5208170691387506,0.015229158178312644,0.10936850137034679,0.4135261121191329,0.04595405855585442,0.020075107612363877,0.029240896815260584,0.20999408016946156,0.7900059198305385,0.4201763577270155,0.43685167846412915,1.5083200395795013,0.010098041051706573,1.295398110792589,0.08405206988062329,1.0663963557741982,0.48829110990902336,1.5628999530151866,0.02915578159137823,1.5296612824214448,0.013054262827494433 +12101,0.5213757458169064,0.014723242660933725,0.10764664764038973,0.41560891446214876,0.04338086415524144,0.019157680068371763,0.028239216685971708,0.20646654261165504,0.793533457388345,0.40299317355577974,0.4416159161748063,1.4603584873443394,0.010098041051706573,1.277561378439347,0.08405206988062329,1.067803678628981,0.48829110990902336,1.4796706730333609,0.02915578159137823,1.4653392563900791,0.013054262827494433 +12103,0.5294110935551978,0.015295743243915326,0.11243916324871497,0.4186547626434811,0.04549840577994778,0.020003269584941114,0.028891996087952305,0.21238535538355086,0.7876146446164491,0.4046490961454906,0.43964770285988847,1.516376143840624,0.010098041051706573,1.3331267088368417,0.08405206988062329,1.0840732149559238,0.48829110990902336,1.5499010556492645,0.02915578159137823,1.527907726590822,0.013054262827494433 +12105,0.5054727368907197,0.012675037331120239,0.09634531964324745,0.4109210124021684,0.036617564755730074,0.01634093361262936,0.025075610227937,0.19060438399880855,0.8093956160011915,0.38006583912243513,0.44625943100359394,1.256666193064461,0.010098041051706573,1.143916185420062,0.08405206988062329,1.0349621659664152,0.48829110990902336,1.2547493991295977,0.02915578159137823,1.252132762815354,0.013054262827494433 +12107,0.5140770526891626,0.013375183904499599,0.10122143979436354,0.4144035507661356,0.03868366731169608,0.017248000168492407,0.026017858285121556,0.19689935441558645,0.8031006455844135,0.3821687123823164,0.4458729320960074,1.3261675227022391,0.010098041051706573,1.2020064696597381,0.08405206988062329,1.0528875893637202,0.48829110990902336,1.3251947128219776,0.02915578159137823,1.3219793405804743,0.013054262827494433 +12109,0.5080538989166323,0.011859943482070106,0.09517044804039265,0.41407467874747017,0.03418746800968173,0.01528848336963243,0.02334386864732285,0.18732352658513773,0.8126764734148623,0.3592235690134793,0.44719554444051846,1.1760828719676462,0.010098041051706573,1.1314428036255593,0.08405206988062329,1.0402435656282485,0.48829110990902336,1.1718790836446322,0.02915578159137823,1.1737846838862365,0.013054262827494433 +12111,0.5162380688737895,0.014033948645926024,0.1036235754719782,0.4144805058643686,0.0411008770633471,0.018184089178932397,0.02718503243385768,0.20072827193476933,0.7992717280652306,0.3966363530320527,0.44242581857574487,1.391625370790168,0.010098041051706573,1.2304691485220673,0.08405206988062329,1.0572372550104774,0.48829110990902336,1.404611536523373,0.02915578159137823,1.3937180206064315,0.013054262827494433 +12113,0.49230072314503154,0.009651202718509971,0.08367787572751811,0.4098807748807401,0.02704323946085934,0.012388309489775786,0.019604283042393037,0.1699730912295789,0.8300269087704211,0.32318267195167294,0.45809265963516815,0.9579477047465341,0.010098041051706573,0.9988421018433021,0.08405206988062329,1.0080639252719905,0.48829110990902336,0.9292564107858591,0.02915578159137823,0.9463458782973992,0.013054262827494433 +12115,0.5608460234813447,0.020459597734597556,0.13678455732932482,0.42542476289408215,0.06131894504004495,0.026830464679596745,0.036479883743489,0.24388968023747545,0.7561103197625245,0.44828850739643383,0.43755587546515745,2.0286617308533836,0.010098041051706573,1.6187478220333804,0.08405206988062329,1.1481132009857582,0.48829110990902336,2.0895287682187984,0.02915578159137823,2.0473723249943476,0.013054262827494433 +12117,0.48717895036431336,0.009435024713298084,0.08205605881139888,0.4062761272433209,0.027104591903586293,0.012198305734217449,0.01936665101446307,0.16843104315167395,0.831568956848326,0.3303179837808764,0.45004572574300417,0.9342764981043976,0.010098041051706573,0.9773021517323963,0.08405206988062329,0.9973587825542702,0.48829110990902336,0.9307589003187642,0.02915578159137823,0.9347621254051994,0.013054262827494433 +12119,0.6075614182289021,0.025544166903852736,0.164081490208339,0.4439227392726789,0.07230703680175424,0.03241627611223208,0.04204376074161581,0.27006568436595557,0.7299343156340444,0.44067759690592706,0.4483142657485534,2.5333963101949513,0.010098041051706573,1.9434596224342187,0.08405206988062329,1.2424976956739768,0.48829110990902336,2.4794523685748433,0.02915578159137823,2.4920832659610452,0.013054262827494433 +12121,0.5124216556170724,0.013403294922391337,0.10100210292745318,0.41317842183889564,0.03927368495437296,0.017404180518369824,0.026156769089414684,0.19710740523997494,0.8028925947600251,0.3888402698167788,0.44315119751532106,1.329319960301107,0.010098041051706573,1.1992335376060548,0.08405206988062329,1.049113401653866,0.48829110990902336,1.3405660062248765,0.02915578159137823,1.3303368963891755,0.013054262827494433 +12123,0.5046743323253289,0.01170138538009383,0.09359205561961785,0.41235704609213975,0.033147849573977393,0.01503849221185623,0.023186012504695305,0.18545039766216104,0.8145496023378389,0.3541737528311032,0.4536792704544595,1.1603706127761277,0.010098041051706573,1.1131697321711398,0.08405206988062329,1.0334161877199204,0.48829110990902336,1.1366500518412335,0.02915578159137823,1.1468263868395843,0.013054262827494433 +12125,0.48346467973915264,0.008157394562793935,0.07736811017018244,0.4065554860565924,0.02246688438990719,0.010402730053979053,0.016872782862225127,0.16002846415156002,0.83997153584844,0.2903894684836944,0.46302504047478327,0.8092566077706094,0.010098041051706573,0.9244165542844613,0.08405206988062329,0.9902026855796403,0.48829110990902336,0.7758083765871722,0.02915578159137823,0.7980894222032388,0.013054262827494433 +12127,0.5236357034739222,0.014841491452349712,0.10890915000766334,0.41650408707668135,0.043732385320537366,0.01931922616329173,0.02834316177045945,0.20798648618712298,0.792013513812877,0.4015492299541421,0.44176017433513143,1.4713956009312428,0.010098041051706573,1.293315058580395,0.08405206988062329,1.0722972983829355,0.48829110990902336,1.4909082856394034,0.02915578159137823,1.4762361499068657,0.013054262827494433 +12129,0.49246798068995656,0.009256014708602031,0.08288174892276226,0.4104806399906672,0.02582241374758086,0.011846849303640772,0.018795160439942078,0.16829875681794262,0.8317012431820574,0.31155729799626747,0.4587816390615547,0.9184836215095444,0.010098041051706573,0.9901761089027463,0.08405206988062329,1.008406906027178,0.48829110990902336,0.8869387081799802,0.02915578159137823,0.9059940856564409,0.013054262827494433 +12131,0.5110446594900582,0.01201401063673608,0.09657477364162356,0.41571124598751275,0.034062153893671995,0.015469721765448623,0.023508729449837448,0.18897521351263102,0.811024786487369,0.35270239431336614,0.4541615839602721,1.1909903961933037,0.010098041051706573,1.1491438667362732,0.08405206988062329,1.0465411540782457,0.48829110990902336,1.1698831786569674,0.02915578159137823,1.1803506516118742,0.013054262827494433 +12133,0.5043448288551162,0.011352282675257536,0.09292920952217351,0.41273493219095375,0.032653638542311486,0.014678676901230578,0.02250897010489369,0.18425728629582006,0.81574271370418,0.3513818605604314,0.4495265323100347,1.1246854388364955,0.010098041051706573,1.1032147664656504,0.08405206988062329,1.0327080308456051,0.48829110990902336,1.1194086236138086,0.02915578159137823,1.1230451145415687,0.013054262827494433 +13001,0.49867293799093804,0.01025123699380484,0.08694847375494094,0.41292839985225516,0.028542354138598687,0.013112077412868663,0.020557034907699615,0.17435971983007625,0.8256402801699237,0.32826745434363347,0.4593901872703907,1.01732624380209,0.010098041051706573,1.036357543249553,0.08405206988062329,1.0211906750341235,0.48829110990902336,0.982899559624646,0.02915578159137823,1.001922614246928,0.013054262827494433 +13003,0.4732089358092203,0.008028109179202603,0.07212572847811896,0.40225105278984286,0.022687409784285906,0.010343774910917702,0.016965252706975992,0.1524183569246826,0.8475816430753174,0.31455363104122636,0.45592577598180306,0.796065090663417,0.010098041051706573,0.860003731710107,0.08405206988062329,0.969194565389264,0.48829110990902336,0.7824933286407526,0.02915578159137823,0.7908830112316372,0.013054262827494433 +13005,0.4901311459684101,0.010118520202805781,0.08362813454186832,0.4080231491935772,0.028587195179250083,0.013018595682611735,0.020644515832213484,0.17062399569942513,0.8293760043005749,0.3418370544297857,0.4553995451803274,1.0031228330663242,0.010098041051706573,0.997471953706494,0.08405206988062329,1.0033442527708756,0.48829110990902336,0.9836181344298593,0.02915578159137823,0.9934508059014081,0.013054262827494433 +13007,0.49336570426294957,0.010987962502825466,0.08653844922279866,0.4081094603334148,0.03101591754434111,0.014012452664415096,0.022271435585983095,0.1754042659938847,0.8245957340061153,0.3584062092965023,0.45178262562706883,1.0885957159635449,0.010098041051706573,1.0314229596773754,0.08405206988062329,1.0091645724345262,0.48829110990902336,1.0649887446460367,0.02915578159137823,1.0710926576815805,0.013054262827494433 +13009,0.4806779790596357,0.009155320657688155,0.07916344310544941,0.40229327036785545,0.025821706735630015,0.011796698256114926,0.019046682095982377,0.16469122063864702,0.835308779361353,0.32618220889197924,0.4568519957605003,0.9081757373773188,0.010098041051706573,0.9453379517233969,0.08405206988062329,0.9846551432443387,0.48829110990902336,0.8867530818174616,0.02915578159137823,0.8988647898400872,0.013054262827494433 +13011,0.4900294247752364,0.009798969779678066,0.08358655052957956,0.4080177256427898,0.02791509429430885,0.012679455019001931,0.019996696696678154,0.17057455390136725,0.8294254460986328,0.3339663392907962,0.45421501662585956,0.9714411217448483,0.010098041051706573,0.9964056783369601,0.08405206988062329,1.0036474770908617,0.48829110990902336,0.9597782370964018,0.02915578159137823,0.9674971152351641,0.013054262827494433 +13013,0.47025615793817055,0.007702613511215905,0.07064089907127197,0.40046030180041964,0.021605562993802462,0.009901278997256804,0.016379612220258577,0.15021791395777928,0.8497820860422207,0.30585062305059124,0.4582745193956287,0.7648292285356781,0.010098041051706573,0.845471004508037,0.08405206988062329,0.9626104671403537,0.48829110990902336,0.7424991595741515,0.02915578159137823,0.7554767461063896,0.013054262827494433 +13015,0.4800470260162013,0.008363026732988749,0.07587246201704828,0.4047381379247417,0.023486589754870744,0.010776990752163328,0.017421265583898237,0.15805214469652318,0.8419478553034768,0.30955354723553574,0.45885719743234976,0.8297372254417337,0.010098041051706573,0.9067422236951487,0.08405206988062329,0.9826565664332415,0.48829110990902336,0.8070410133556829,0.02915578159137823,0.8208920130863853,0.013054262827494433 +13017,0.4924704915597354,0.010567375131579362,0.08578074420870602,0.4083837593981231,0.0299822964610588,0.01359276653378926,0.021457884914303678,0.1741845362897262,0.8258154637102738,0.34952245678950233,0.45335975352800717,1.047754145854847,0.010098041051706573,1.021215392857314,0.08405206988062329,1.0079667725943042,0.48829110990902336,1.030867198538874,0.02915578159137823,1.0376162505060378,0.013054262827494433 +13019,0.4929252599417374,0.010585420490036065,0.0864934507385958,0.40814421081505303,0.03033800639415101,0.01362727584584932,0.021474696775099812,0.17546970660180636,0.8245302933981936,0.35075495468252077,0.4491816525055707,1.0486130289428148,0.010098041051706573,1.0283382253799074,0.08405206988062329,1.0093806200308744,0.48829110990902336,1.0407456973475955,0.02915578159137823,1.0438344553354582,0.013054262827494433 +13021,0.48610756159849483,0.010136995418909077,0.08302260299763747,0.4045179755961577,0.02917696336655462,0.013061838110327167,0.02085339998739173,0.17079060182612585,0.8292093981738742,0.3514339747620885,0.4476764064247986,1.0039747650343993,0.010098041051706573,0.9879964057074291,0.08405206988062329,0.9954942433205693,0.48829110990902336,1.0003078694828216,0.02915578159137823,1.00058463873678,0.013054262827494433 +13023,0.493075498667472,0.011226000389663513,0.08894589325068941,0.4060032633188645,0.03264970782616489,0.014521362061317475,0.022767305250416182,0.18039000820577,0.81960999179423,0.3670738089519588,0.44476238925728817,1.112308722574244,0.010098041051706573,1.0552565923101311,0.08405206988062329,1.009697618392325,0.48829110990902336,1.1165519352641795,0.02915578159137823,1.113411496431389,0.013054262827494433 +13025,0.4892753568578807,0.00986810941666751,0.08321362675387912,0.4075309633671016,0.027670087888200093,0.012581788247338214,0.020168825750882625,0.17007524615234218,0.8299247538476578,0.33251871078807665,0.4547072021662684,0.9797941501975929,0.010098041051706573,0.9931625707790326,0.08405206988062329,1.0023134623225263,0.48829110990902336,0.9510934330449432,0.02915578159137823,0.9649778292702602,0.013054262827494433 +13027,0.49881084246664964,0.011768577075836771,0.0922433092178516,0.4087855689383367,0.034528132500447214,0.0153021149488662,0.023593266372560085,0.1849264317545763,0.8150735682454238,0.3743158478725206,0.4431781808259686,1.1649534954997507,0.010098041051706573,1.092834862783283,0.08405206988062329,1.021628520392336,0.48829110990902336,1.180655149763423,0.02915578159137823,1.171050416420337,0.013054262827494433 +13029,0.4762049698729778,0.007654435786594737,0.07229292324432396,0.4048258215745635,0.021182617133217185,0.009761438102503626,0.016073825917097148,0.15181051819683292,0.8481894818031671,0.29301093637654674,0.4608230437775501,0.7599672179243419,0.010098041051706573,0.8644366874139587,0.08405206988062329,0.9752162879014838,0.48829110990902336,0.7296203958060867,0.02915578159137823,0.7481274441606081,0.013054262827494433 +13031,0.45236076974295725,0.00735011254703672,0.06540388718899812,0.38786570348817895,0.020715548503697348,0.00942443023406803,0.01624834211687552,0.14458346426937563,0.8554165357306244,0.3167326804878656,0.4549447596034419,0.7288127032161515,0.010098041051706573,0.7803928944206249,0.08405206988062329,0.9274359459079626,0.48829110990902336,0.7125803772260637,0.02915578159137823,0.7202240090717028,0.013054262827494433 +13033,0.4834005897309371,0.009464504368728123,0.07955916990925996,0.4052214287450327,0.0263575643678989,0.012080025283472726,0.019579008734755803,0.16458227730657704,0.835417722693423,0.3312951152954541,0.458313412986865,0.9397944170284653,0.010098041051706573,0.9509928601559556,0.08405206988062329,0.9899119698051804,0.48829110990902336,0.906718060996613,0.02915578159137823,0.9227627323668273,0.013054262827494433 +13035,0.48699090536728507,0.009349931675388933,0.08180934955972,0.40586176011687725,0.02661067715003384,0.012102138165480777,0.019199396892919964,0.16798948123686205,0.8320105187631379,0.3252767231770779,0.45478505102473077,0.9270161960315384,0.010098041051706573,0.9756931353464706,0.08405206988062329,0.9969705900504473,0.48829110990902336,0.9134032561002936,0.02915578159137823,0.9223464826694961,0.013054262827494433 +13037,0.48810820366156327,0.009753451306982606,0.08334030013098853,0.40592311855630214,0.028322813804303307,0.01267969652253233,0.019982149928677084,0.17074144524883608,0.829258554751164,0.3398453540458513,0.447684916129548,0.9659694668126424,0.010098041051706573,0.993060972163774,0.08405206988062329,0.9989950110569132,0.48829110990902336,0.9722157479769882,0.02915578159137823,0.9706634461379066,0.013054262827494433 +13039,0.4650616674036472,0.00717628725688365,0.0676491507843697,0.39791286942115023,0.01966827609867564,0.009066263641631503,0.015430829414403314,0.14546275370757245,0.8545372462924276,0.2907394382727415,0.46095873355377487,0.7125369921439169,0.010098041051706573,0.8113089904546491,0.08405206988062329,0.9523915958553,0.48829110990902336,0.6780853275834002,0.02915578159137823,0.6971897751569149,0.013054262827494433 +13043,0.4947331255775895,0.011747964825787282,0.09084514079732971,0.40595592387878754,0.03444050977321025,0.015262313203832045,0.023746064733530435,0.18362453634223522,0.8163754636577648,0.37911229451495976,0.44315003768335404,1.1634660293298764,0.010098041051706573,1.0777367827311188,0.08405206988062329,1.0131166750308305,0.48829110990902336,1.1766569820634156,0.02915578159137823,1.1669084739270525,0.013054262827494433 +13045,0.4725298188961372,0.008422324746348572,0.07392844241389726,0.3998019112028177,0.023793776872183432,0.010855548595505164,0.017823901073637453,0.1564524384653635,0.8435475615346365,0.32184875124206075,0.4562347816330097,0.8360548918347015,0.010098041051706573,0.8831616649655336,0.08405206988062329,0.9674703725203551,0.48829110990902336,0.8169734733007081,0.02915578159137823,0.8274893097571142,0.013054262827494433 +13047,0.4936147574913653,0.010339059007022275,0.08602757844985534,0.4095397393321668,0.029430922572723797,0.013342326374139164,0.0209456035301034,0.17428080733862622,0.8257191926613738,0.34211032209721914,0.45334380331334434,1.0250215086810013,0.010098041051706573,1.0230520790017579,0.08405206988062329,1.011110763176899,0.48829110990902336,1.0120655437049484,0.02915578159137823,1.0192888589644709,0.013054262827494433 +13049,0.4888671091885349,0.009480593813860483,0.08246575278653723,0.40749335986692886,0.026755073469782363,0.01222981529411259,0.01939298765588304,0.1686874638046753,0.8313125361953246,0.3244386010643464,0.45710266159146046,0.9410422037022481,0.010098041051706573,0.9854524615487759,0.08405206988062329,1.0014455540727054,0.48829110990902336,0.9183655592865259,0.02915578159137823,0.931393449684781,0.013054262827494433 +13051,0.4826789259742173,0.009756929314328672,0.08127667448156611,0.40230954862912405,0.028183469514141423,0.01262194131687213,0.02021411913651653,0.16838662329730048,0.8316133767026995,0.34675962930217513,0.44784909503561676,0.9662303080561769,0.010098041051706573,0.9689924715110616,0.08405206988062329,0.9885571596659184,0.48829110990902336,0.9665547967558735,0.02915578159137823,0.9661771220781668,0.013054262827494433 +13053,0.41403247903130835,0.0032143311887484647,0.04110174537386143,0.37188712250836503,0.008790862751178272,0.00408635807124078,0.007763475938575831,0.09927179015043744,0.9007282098495626,0.2138805218906544,0.46484152772070864,0.3183111674077302,0.010098041051706573,0.4949930457754022,0.08405206988062329,0.8487075082243415,0.48829110990902336,0.30550716469425027,0.02915578159137823,0.3141963365959927,0.013054262827494433 +13055,0.4964171685787605,0.010984723601813316,0.08915848791666109,0.4087065923515998,0.031660685265771385,0.014179474841224289,0.02212800905589651,0.17960395723605074,0.8203960427639493,0.35510567760374656,0.44785748388566404,1.0887392197588026,0.010098041051706573,1.059282253544916,0.08405206988062329,1.0163888330278437,0.48829110990902336,1.0856454007802994,0.02915578159137823,1.0863519389184062,0.013054262827494433 +13057,0.47577383479347923,0.007613719264688199,0.07223599777253187,0.40422051230032496,0.021240441586113074,0.009776408819621319,0.016002812067193884,0.1518284371478469,0.8481715628521531,0.2940423367999752,0.4602733318884058,0.7553879483217,0.010098041051706573,0.864535954836992,0.08405206988062329,0.9739693164746253,0.48829110990902336,0.7301660875355283,0.02915578159137823,0.7466097279189795,0.013054262827494433 +13059,0.4422786008865204,0.006671430455593146,0.060744420094893656,0.38151575279016403,0.019149618416249906,0.008642649783284165,0.01508422619186339,0.13734424404240944,0.8626557559575906,0.31524901194767807,0.45132229767827753,0.6596663888461559,0.010098041051706573,0.7238904980968617,0.08405206988062329,0.9067520367320241,0.48829110990902336,0.6587762057165338,0.02915578159137823,0.6582558101680731,0.013054262827494433 +13061,0.5216614049055759,0.014944046801451994,0.1073880000148432,0.4158723078034089,0.04346016532819821,0.01925658739036302,0.028647024029230157,0.2058576674543924,0.7941423325456076,0.40470225092367057,0.44308592120952633,1.482439283386948,0.010098041051706573,1.273341876642862,0.08405206988062329,1.0682193717681157,0.48829110990902336,1.4859173839071236,0.02915578159137823,1.4751269067942734,0.013054262827494433 +13063,0.4571879837164867,0.005902332261293362,0.061369470425545185,0.3959845828130649,0.016431554058270674,0.007591537758671642,0.012910077411294213,0.13423246588125962,0.8657675341187404,0.26774801777385066,0.462009724201985,0.5857970471249452,0.010098041051706573,0.7364202855405995,0.08405206988062329,0.9360873525971234,0.48829110990902336,0.5662295551971936,0.02915578159137823,0.5800547004237693,0.013054262827494433 +13065,0.48901410101995635,0.008429446301862691,0.0788361368486972,0.4115488056935751,0.02292830797219859,0.010713503609904213,0.017237634424612822,0.16121444490918665,0.8387855550908133,0.2908350014182296,0.46726097812776796,0.8349176545573365,0.010098041051706573,0.9409192503412889,0.08405206988062329,1.0019200289424817,0.48829110990902336,0.7927698041872819,0.02915578159137823,0.8192404411826073,0.013054262827494433 +13067,0.47323725012383183,0.007341388687001086,0.07085497055355616,0.4029881678043993,0.02066805751766269,0.0094983250300547,0.015513125150397749,0.14972399263797506,0.8502760073620249,0.29169523826194543,0.459565444016088,0.7278305354984771,0.010098041051706573,0.8489185192061623,0.08405206988062329,0.9682270948032257,0.48829110990902336,0.710798390601979,0.02915578159137823,0.7238686873018374,0.013054262827494433 +13069,0.4780489985388183,0.008797328844794863,0.07654934929910567,0.40268815178377604,0.024943695733165454,0.011376159799099289,0.018402567250813948,0.1601286678417542,0.8398713321582458,0.3258511791615826,0.456073547432404,0.8732745468620473,0.010098041051706573,0.9143253676910051,0.08405206988062329,0.9788987486627693,0.48829110990902336,0.8568782842785878,0.02915578159137823,0.8656922426363775,0.013054262827494433 +13071,0.48117060124294253,0.009593985490568321,0.07969898665050668,0.40289087859614675,0.02733457831251823,0.012352942310558255,0.019938843864910873,0.1656356112460552,0.8343643887539448,0.3429727210006434,0.451916329907349,0.9512814971355725,0.010098041051706573,0.9501342894096869,0.08405206988062329,0.9856245487106703,0.48829110990902336,0.9398253304924062,0.02915578159137823,0.9444361553839337,0.013054262827494433 +13073,0.48150957701550634,0.008471225082416817,0.07692419705393531,0.40558130669143727,0.023850720618237065,0.010937425740334539,0.017593056268835155,0.1597563178924229,0.8402436821075772,0.3100548531109679,0.4585784184638604,0.8400151803086644,0.010098041051706573,0.9189234582456578,0.08405206988062329,0.9858919681774232,0.48829110990902336,0.8197850585963077,0.02915578159137823,0.8329798729766085,0.013054262827494433 +13075,0.48701073137744927,0.010074966866717017,0.08275993136034866,0.4055346054011866,0.028556772534837092,0.012961648187744156,0.020687361114653934,0.16993451279045227,0.8300654872095478,0.3450555367246112,0.4538905148308315,0.9992688287752984,0.010098041051706573,0.985927497465467,0.08405206988062329,0.9970339311189289,0.48829110990902336,0.9824058499287742,0.02915578159137823,0.989626495290647,0.013054262827494433 +13077,0.4796595672122794,0.008279912654580822,0.07542078218024306,0.4047468315871756,0.023202220681092456,0.010645608087566377,0.017262060887688793,0.15723814833628585,0.8427618516637141,0.307636967031753,0.4588184999137392,0.821589506486788,0.010098041051706573,0.9014177495454008,0.08405206988062329,0.9819576237109237,0.48829110990902336,0.79742322319192,0.02915578159137823,0.812199475526029,0.013054262827494433 +13079,0.49546566720137897,0.009641857672173328,0.0844304975020704,0.41214061659848894,0.026989137435225602,0.012384530414269497,0.01946019333011515,0.17040635323729536,0.8295936467627046,0.3196610020515842,0.4588709233110019,0.9572188271992019,0.010098041051706573,1.0073818236301042,0.08405206988062329,1.0147723117225311,0.48829110990902336,0.9277474307039046,0.02915578159137823,0.9458550256755381,0.013054262827494433 +13081,0.49484771039559905,0.010975811334915254,0.08777615041848892,0.408839969611999,0.031094556564542818,0.014087592507934059,0.02218018009245874,0.17738012842035283,0.8226198715796471,0.3542483512468228,0.45305654958264197,1.0884045667677325,0.010098041051706573,1.0446604519120835,0.08405206988062329,1.013173775154082,0.48829110990902336,1.0678683625406866,0.02915578159137823,1.0755963112585463,0.013054262827494433 +13083,0.4952933076851447,0.010467726804477837,0.08690708249676599,0.4100587552777677,0.029048988701031224,0.01330666288100011,0.021134399843601593,0.17546589293310694,0.824534107066893,0.3342534102685153,0.4580766310989591,1.0386499662385984,0.010098041051706573,1.0353881577306074,0.08405206988062329,1.0143212819525855,0.48829110990902336,0.9985776204628993,0.02915578159137823,1.0181885488004567,0.013054262827494433 +13085,0.4994291900180584,0.010086784320083341,0.08725085009439669,0.41309546126625973,0.0276257841192649,0.012817437192287156,0.020196625511053175,0.17470114250078547,0.8252988574992145,0.31662481327547604,0.46396645745699894,1.0009381534850634,0.010098041051706573,1.0417808772995674,0.08405206988062329,1.022553508201325,0.48829110990902336,0.9526612489601898,0.02915578159137823,0.9802330606583154,0.013054262827494433 +13087,0.48920272960184497,0.01050268643466791,0.0852386773573928,0.4054430088814631,0.03011306720407457,0.01351688995142386,0.021468985758145494,0.17423998722731437,0.8257600127726856,0.35327938135190745,0.4488712444939818,1.0402994914556678,0.010098041051706573,1.0133717479056834,0.08405206988062329,1.0017242413298324,0.48829110990902336,1.0331437213037815,0.02915578159137823,1.0341385304454946,0.013054262827494433 +13089,0.4708208576640723,0.007544759868723648,0.07093277596153993,0.40027715051576107,0.02160424362138471,0.009792501758065439,0.01602469335397793,0.15065767543406078,0.8493423245659393,0.3045734969275505,0.45326751214619915,0.7472139633293444,0.010098041051706573,0.849638637104662,0.08405206988062329,0.9631214218815219,0.48829110990902336,0.741973224904901,0.02915578159137823,0.7480735998753087,0.013054262827494433 +13091,0.48937779349669297,0.010171372822915244,0.08462035266740744,0.40638431996725316,0.029038928650152732,0.013119548440576334,0.020784295810071282,0.17291416527664588,0.8270858347233541,0.3431671901000884,0.45179175163913393,1.008332131064849,0.010098041051706573,1.0067582468599054,0.08405206988062329,1.0025425063761413,0.48829110990902336,0.9980702475433332,0.02915578159137823,1.0038927211143172,0.013054262827494433 +13093,0.49882201019901934,0.01051182961936454,0.08826921591967744,0.4119552774260699,0.029666284755808004,0.013492710312412247,0.021073307521395343,0.17695533499907093,0.8230446650009291,0.33608868558211175,0.454816315001179,1.0431574726124047,0.010098041051706573,1.0517980906342679,0.08405206988062329,1.0217930633077783,0.48829110990902336,1.018390715388227,0.02915578159137823,1.0317770248959341,0.013054262827494433 +13095,0.4782798790942473,0.00940643774771757,0.07840433897366249,0.4012159393095396,0.02706830281402424,0.012134870789813708,0.019667224482725915,0.16392982937551623,0.8360701706244837,0.3452398574920324,0.44830556511753533,0.9311796707442526,0.010098041051706573,0.9352204040679833,0.08405206988062329,0.9795218816521827,0.48829110990902336,0.9287939589631523,0.02915578159137823,0.9286936829018204,0.013054262827494433 +13097,0.4693344753705089,0.007049665197763412,0.0686429582839222,0.4010787499874636,0.019752759309156598,0.00909319533261638,0.01502055691135445,0.1462559472745595,0.8537440527254405,0.2877608978834346,0.4603506371082614,0.6993852080527846,0.010098041051706573,0.8222825044153883,0.08405206988062329,0.9605407192985422,0.48829110990902336,0.6795327177706681,0.02915578159137823,0.6939735433301184,0.013054262827494433 +13099,0.5004076801910805,0.011905735533934557,0.09238621585677179,0.410144925018056,0.03464661998125433,0.015400232069003799,0.023792071954987493,0.18462189833196432,0.8153781016680357,0.37501936473908276,0.4444945012626382,1.179237115157119,0.010098041051706573,1.0944981589584732,0.08405206988062329,1.024234939500914,0.48829110990902336,1.1843177210082287,0.02915578159137823,1.17951381741624,0.013054262827494433 +13101,0.44996826144631785,0.006929028768889478,0.06265704402619657,0.38786355967360747,0.019286377283394548,0.008823203596761075,0.015398927796857793,0.13924769677043475,0.8607523032295652,0.30780860449355096,0.4574837185393961,0.6879417245884376,0.010098041051706573,0.7496283919251936,0.08405206988062329,0.9222091713025236,0.48829110990902336,0.6643995526075088,0.02915578159137823,0.6759021392573195,0.013054262827494433 +13103,0.47252482996953304,0.007479073819022354,0.07103574761802908,0.4022639511507217,0.02089349424573382,0.009614096824633357,0.015827895900210328,0.15033230660621422,0.8496676933937858,0.2941264778134184,0.4601478676357082,0.7419772204411329,0.010098041051706573,0.8498924822559337,0.08405206988062329,0.9674915553515102,0.48829110990902336,0.7190991252348538,0.02915578159137823,0.7345471950189133,0.013054262827494433 +13105,0.5030944208903603,0.012203598358506651,0.09472782513551808,0.4099293170555957,0.03550450848571683,0.015792941267254088,0.024257073526892062,0.18829035107936962,0.8117096489206304,0.37480548545186076,0.4448150936551468,1.2095526280270108,0.010098041051706573,1.1236988449210803,0.08405206988062329,1.0300341662679395,0.48829110990902336,1.214349896038008,0.02915578159137823,1.2103189783676478,0.013054262827494433 +13107,0.49154118200417474,0.010489108284454202,0.08551875785123852,0.4073368733143199,0.029547021961461466,0.013459560772503886,0.021339225823738033,0.1739808605711336,0.8260191394288664,0.34550340421056003,0.4555301982737669,1.0399793542820537,0.010098041051706573,1.0185255853705768,0.08405206988062329,1.0066104462629384,0.48829110990902336,1.0153485892321967,0.02915578159137823,1.0266261556216154,0.013054262827494433 +13109,0.48855156667742566,0.010694720558727003,0.085392861632591,0.40494072799275094,0.030800084948528508,0.013776574995623105,0.02189066884271885,0.17478781659290646,0.8252121834070936,0.3606868813115564,0.44729016230461044,1.0589200018650375,0.010098041051706573,1.0137067193254028,0.08405206988062329,1.0004640600029586,0.48829110990902336,1.055991252626678,0.02915578159137823,1.0550731326126006,0.013054262827494433 +13111,0.5369661290759855,0.014875593857494401,0.11234486020314999,0.4257284090907021,0.041798707802760376,0.018941501849595317,0.027703039450723662,0.20922150228818656,0.7907784977118134,0.37205714375519244,0.45315998616455855,1.4751239221956352,0.010098041051706573,1.3381143068131074,0.08405206988062329,1.0994752940228887,0.48829110990902336,1.4329491362373266,0.02915578159137823,1.4498369542820326,0.013054262827494433 +13113,0.4969839071354801,0.01000268262171524,0.08654763549860603,0.4108132606908982,0.028340572999637104,0.012936167734383212,0.020126773680396986,0.17414575050820055,0.8258542494917994,0.3274563520582092,0.45645399387474833,0.9910206896212952,0.010098041051706573,1.0310803803991244,0.08405206988062329,1.0180022488114162,0.48829110990902336,0.9729676929668205,0.02915578159137823,0.984874076904956,0.013054262827494433 +13115,0.4915987642952043,0.010738997996245146,0.08664033017159935,0.4064808627755546,0.030854989180961554,0.013815924764535956,0.021845046766220903,0.17624196085157764,0.8237580391484224,0.35612732684478854,0.4477695546579803,1.063263141107968,0.010098041051706573,1.0300701524737854,0.08405206988062329,1.0067110227977305,0.48829110990902336,1.0580647082272066,0.02915578159137823,1.0589584118580408,0.013054262827494433 +13117,0.4744373327270426,0.00736770451532524,0.07100363182461755,0.40340943287824615,0.020666348978847386,0.009493443614425291,0.015529352365624423,0.14965861016141405,0.850341389838586,0.2910604492724299,0.4593672362806855,0.7309437320128391,0.010098041051706573,0.8472609724674984,0.08405206988062329,0.9711394894526698,0.48829110990902336,0.7098202351003917,0.02915578159137823,0.7249104293547373,0.013054262827494433 +13119,0.5051445249036899,0.01245463672498873,0.09568334377684654,0.4112708067755537,0.03562009581335455,0.01593741375814805,0.024655590847714945,0.18941775879900782,0.8105822412009922,0.3722706001624277,0.44742759372850577,1.2343147790123121,0.010098041051706573,1.1368731633798084,0.08405206988062329,1.0345798244663054,0.48829110990902336,1.2204410579502252,0.02915578159137823,1.2234088876736404,0.013054262827494433 +13121,0.4716671095707019,0.0076015725739541976,0.07135455373156213,0.40075627671842795,0.02181878088767273,0.009871804079842294,0.01611639315039994,0.15128159730388457,0.8487184026961154,0.30577979605556227,0.45244526404404695,0.7529513372002,0.010098041051706573,0.8545770949818509,0.08405206988062329,0.9649358507513642,0.48829110990902336,0.7495145833649997,0.02915578159137823,0.7549085387427373,0.013054262827494433 +13123,0.511498044563328,0.012510352072007205,0.09789491589441242,0.41489756462969907,0.03548403800761926,0.01608466120217337,0.024458259821281313,0.19138864153036297,0.808611358469637,0.36247069302242074,0.4532928636453273,1.24095891719836,0.010098041051706573,1.1647930246478868,0.08405206988062329,1.0477852499140594,0.48829110990902336,1.2169399786294077,0.02915578159137823,1.2263300999157705,0.013054262827494433 +13125,0.49274657130743926,0.011012475351591045,0.08863381785831044,0.4059910800140049,0.03269057751953927,0.014425046925803164,0.02234916687978339,0.17987708696405957,0.8201229130359404,0.36882736532683563,0.44126008227236924,1.0907898817127273,0.010098041051706573,1.0489677726296787,0.08405206988062329,1.0090179991732624,0.48829110990902336,1.1154363643693892,0.02915578159137823,1.1026550598209965,0.013054262827494433 +13127,0.5000907211071051,0.011378404387070315,0.09106315824738719,0.41072145479218114,0.03252046789881005,0.014607051681977144,0.02275268047741559,0.18209327708738685,0.8179067229126131,0.3571199212140563,0.44916486833547764,1.1278669620086998,0.010098041051706573,1.0828669986604964,0.08405206988062329,1.0239510053975576,0.48829110990902336,1.1152824923027131,0.02915578159137823,1.1195515340966788,0.013054262827494433 +13129,0.48109465627768266,0.00902508570300718,0.07805722027520581,0.40417225052837624,0.025467842402106616,0.01160492380794093,0.018759480250385485,0.1622491941173257,0.8377508058826744,0.32627144948686126,0.4556696882567881,0.8962418313195744,0.010098041051706573,0.9315420983356606,0.08405206988062329,0.9849414756706925,0.48829110990902336,0.8743428098366388,0.02915578159137823,0.8861825176181565,0.013054262827494433 +13131,0.4897445020848606,0.010395260494204852,0.08491051827733476,0.40622793375860167,0.02972092279287099,0.013352917299185328,0.02122588502770698,0.17337717506958733,0.8266228249304126,0.35002639715136946,0.4492766726068218,1.0299921473669995,0.010098041051706573,1.0103944593651848,0.08405206988062329,1.0025715011559664,0.48829110990902336,1.0197736474303838,0.02915578159137823,1.02268234116578,0.013054262827494433 +13133,0.5259246026198445,0.014035730457035798,0.1062239968912371,0.4202629331571621,0.03861442958739103,0.01779492246210753,0.026687723653006746,0.2019757135568333,0.7980242864431667,0.3635188913756314,0.4608360825798188,1.3929893725589426,0.010098041051706573,1.2631264165318883,0.08405206988062329,1.0776687071356632,0.48829110990902336,1.3288778933472245,0.02915578159137823,1.3568928960991524,0.013054262827494433 +13135,0.463151157130717,0.006239300224036246,0.06446471437765605,0.3989869536607734,0.01741396588184064,0.00804911906838817,0.013471412362844003,0.1391872035406832,0.8608127964593169,0.27013174649039395,0.4622220534371109,0.6189139071107629,0.010098041051706573,0.7715314659865077,0.08405206988062329,0.9481923587062936,0.48829110990902336,0.5998327549154154,0.02915578159137823,0.6144379768654535,0.013054262827494433 +13137,0.4913021555760865,0.011196595468779253,0.08769436279625886,0.40544255934267004,0.032049633488366654,0.014341694847773383,0.02278963228982876,0.17849374728150955,0.8215062527184904,0.3654697116943294,0.44748389565762486,1.1090598925242783,0.010098041051706573,1.0418327435202197,0.08405206988062329,1.0060005614657215,0.48829110990902336,1.0987665156678892,0.02915578159137823,1.1002664886123728,0.013054262827494433 +13139,0.47540286281241395,0.008587394704308382,0.0749408592351134,0.4015383252860092,0.024523501061850916,0.01109117233060156,0.018063405536741215,0.15763653334305605,0.842363466656944,0.32723805561012936,0.45226708464784154,0.8511131286508373,0.010098041051706573,0.893999016107714,0.08405206988062329,0.9731846646636082,0.48829110990902336,0.842117148257659,0.02915578159137823,0.8476133917868239,0.013054262827494433 +13141,0.5061764892416598,0.011498616800927187,0.09417029982865283,0.41319000342219436,0.0327194752644982,0.014852965684069365,0.02271661573644819,0.1860424216259753,0.8139575783740247,0.34745004873121127,0.4539487740558408,1.1393946179248688,0.010098041051706573,1.1186570733424355,0.08405206988062329,1.0365310359393685,0.48829110990902336,1.1258749439599895,0.02915578159137823,1.134725934200243,0.013054262827494433 +13143,0.49385681213287047,0.010585244985355704,0.08695950740279113,0.4087371624758277,0.030580801118723855,0.013692606646126013,0.021433834110012803,0.17608242969704135,0.8239175703029586,0.3516671383276753,0.44775173132211943,1.0486730918938099,0.010098041051706573,1.033299299275486,0.08405206988062329,1.0112167427024819,0.48829110990902336,1.0481044562114024,0.02915578159137823,1.0487970942284548,0.013054262827494433 +13145,0.5040441555851836,0.01078014095746447,0.09059380522307656,0.41432074148753617,0.03029427071144964,0.013884189439485398,0.021387294819337755,0.17973386700198765,0.8202661329980123,0.33439671329461845,0.4583107337929051,1.0688024920587136,0.010098041051706573,1.078629679283719,0.08405206988062329,1.0323415927249266,0.48829110990902336,1.041509998661955,0.02915578159137823,1.0575796997755482,0.013054262827494433 +13147,0.5142790431505556,0.012871065056641194,0.09958505769038632,0.4163371899385232,0.03662424243050249,0.016521408660615626,0.02502739559012748,0.19364012400799446,0.8063598759920055,0.3677684512105082,0.4511058130954205,1.2759425987340796,0.010098041051706573,1.1822768689105796,0.08405206988062329,1.0533203731162308,0.48829110990902336,1.256079400894984,0.02915578159137823,1.2634079342702123,0.013054262827494433 +13149,0.49327770813156574,0.009817891000851614,0.08441358864061302,0.41008826980898816,0.027191070889336248,0.012539698385534866,0.019903374587997825,0.17112792094407486,0.8288720790559252,0.32211722457507386,0.4611697140053673,0.9745281015583411,0.010098041051706573,1.0073697236082741,0.08405206988062329,1.0101671265420356,0.48829110990902336,0.9367814861752405,0.02915578159137823,0.958329961527518,0.013054262827494433 +13151,0.46811757370747864,0.006925419777906101,0.06811738507535356,0.40056635443809985,0.019296345142238075,0.008879052761020703,0.014794188825377697,0.1455134113762611,0.8544865886237389,0.28328076776423317,0.4601416846335944,0.6873932271186307,0.010098041051706573,0.8148296016163141,0.08405206988062329,0.9585767002771595,0.48829110990902336,0.6639977027942571,0.02915578159137823,0.6804540119583682,0.013054262827494433 +13153,0.476463259360911,0.008427570431508106,0.07501551932629257,0.40245334752325035,0.02382583958188323,0.010868015980779617,0.017687765564153177,0.15744240054713196,0.842557599452868,0.31761213940609745,0.45614409277914697,0.8364633442604401,0.010098041051706573,0.8959375663415775,0.08405206988062329,0.9754635311001987,0.48829110990902336,0.8178516377043152,0.02915578159137823,0.8282240617074432,0.013054262827494433 +13155,0.500514097298423,0.01185740879559509,0.0921126392189896,0.41024901950427894,0.03306119970829881,0.015015387015779098,0.023690459189055192,0.1840360535620818,0.8159639464379183,0.3589214247753639,0.45416945386921437,1.1755777325291081,0.010098041051706573,1.0943175860220595,0.08405206988062329,1.0251538114890584,0.48829110990902336,1.134916554148207,0.02915578159137823,1.1500563900112228,0.013054262827494433 +13157,0.4847783586607788,0.008993310434038407,0.07906852269541781,0.4066368675946171,0.025191736314572347,0.01160839317435525,0.018551385954774912,0.16310241842034373,0.8368975815796562,0.3186063866605195,0.4608016307173035,0.8924572610282624,0.010098041051706573,0.9440810743593224,0.08405206988062329,0.992718988586005,0.48829110990902336,0.8673840116506139,0.02915578159137823,0.8822641900065551,0.013054262827494433 +13159,0.4897992631625667,0.010005074842671356,0.08399741792417345,0.40741372257937514,0.028581893240486142,0.01287869162124928,0.02042688830944734,0.17149355713974257,0.8285064428602574,0.34027109340774886,0.4505891724137666,0.9911045413116617,0.010098041051706573,1.000947358224117,0.08405206988062329,1.0033518787383584,0.48829110990902336,0.9809647565855963,0.02915578159137823,0.9858722669438007,0.013054262827494433 +13161,0.49011288300666556,0.010202961590517397,0.08375106210937763,0.4079679295434553,0.02867863685085071,0.013087656329332623,0.020817574775684147,0.1708811684271491,0.8291188315728509,0.34242714215847003,0.45635559309871443,1.01237654248355,0.010098041051706573,0.998287362211066,0.08405206988062329,1.003283417226447,0.48829110990902336,0.986132632261859,0.02915578159137823,0.9980005423637681,0.013054262827494433 +13163,0.49637992545512954,0.011252085596255481,0.08917007127949061,0.4091953321526976,0.032174811630176936,0.014412519522952326,0.022668293013538916,0.1796407685055571,0.8203592314944429,0.360825231700552,0.4479441772219963,1.1147486205895416,0.010098041051706573,1.0592338885660544,0.08405206988062329,1.0160116993560009,0.48829110990902336,1.1031916820165766,0.02915578159137823,1.1060678915042308,0.013054262827494433 +13165,0.5004390316171716,0.011856905977017666,0.0923250949777823,0.4099309643529697,0.034126865243067295,0.015231000018319472,0.023693007994804092,0.18448819765203608,0.8155118023479639,0.36963801934110985,0.44630527620504423,1.175673539787843,0.010098041051706573,1.0962127384668605,0.08405206988062329,1.0245258450910337,0.48829110990902336,1.168345392591049,0.02915578159137823,1.170310685299254,0.013054262827494433 +13167,0.4976496492864165,0.010657736462536125,0.08939525953636515,0.40940921047460954,0.03120461140766981,0.013906348586159094,0.021416143822904993,0.17963492924098245,0.8203650707590175,0.34906337952938177,0.44565043302353186,1.055049335439508,0.010098041051706573,1.060703463570248,0.08405206988062329,1.0191544510473127,0.48829110990902336,1.0695407589302945,0.02915578159137823,1.063747758648037,0.013054262827494433 +13169,0.4905710681224329,0.009526860465776941,0.08285728658167013,0.40883421118778523,0.026696362384199396,0.01228732342043466,0.019419939504869664,0.16889965993875378,0.8311003400612462,0.32219691816585777,0.4602620852834647,0.94468302358317,0.010098041051706573,0.9882311624682214,0.08405206988062329,1.0046727536263256,0.48829110990902336,0.9188492642149602,0.02915578159137823,0.9345129918038152,0.013054262827494433 +13171,0.4918521560897227,0.01023270331460701,0.08536953796643262,0.4081219396803562,0.029090859064753616,0.013188958201600865,0.020804429111296565,0.17356747735972042,0.8264325226402796,0.34076392771613884,0.4533712178194339,1.014750351088574,0.010098041051706573,1.0174405131292228,0.08405206988062329,1.0076608991050184,0.48829110990902336,0.9985024139444569,0.02915578159137823,1.0064876315367606,0.013054262827494433 +13173,0.4755547033582951,0.008231203189116298,0.07379355008464782,0.4021723270236871,0.02298221512502547,0.010517028727347163,0.0173086358540643,0.15517363105343923,0.8448263689465607,0.31143934800077794,0.4576159726176746,0.817451467054609,0.010098041051706573,0.8839311830592969,0.08405206988062329,0.9734839736788659,0.48829110990902336,0.7897665665978433,0.02915578159137823,0.8043015581938735,0.013054262827494433 +13175,0.4927898210455688,0.010813489995999997,0.08735862903675914,0.4073409007144543,0.0314746774532329,0.013996752465252353,0.02194341184453983,0.17727360693329133,0.8227263930667087,0.3602927129269491,0.44469883721762127,1.070908839879731,0.010098041051706573,1.0375733781040735,0.08405206988062329,1.00881180171536,0.48829110990902336,1.0776509904691491,0.02915578159137823,1.072982890377458,0.013054262827494433 +13177,0.473078980799961,0.007315411895956941,0.07051879514374675,0.4032111382650517,0.02042095349461553,0.009407028919395637,0.015463405039866325,0.14906347144086127,0.8509365285591387,0.2895817129743794,0.46065571433165564,0.7256928181779174,0.010098041051706573,0.8452859390733056,0.08405206988062329,0.9683554153452916,0.48829110990902336,0.7031818217992734,0.02915578159137823,0.7189983906876576,0.013054262827494433 +13179,0.4447689948719739,0.0054062847047616595,0.05595456136126199,0.3881682053611504,0.01499211963178284,0.006915971882009619,0.012155264344174554,0.125805894759747,0.874194105240253,0.2679338246436878,0.4613071434774285,0.5357781418115962,0.010098041051706573,0.673417483988465,0.08405206988062329,0.9112542854591168,0.48829110990902336,0.5172806120049033,0.02915578159137823,0.5288868449271233,0.013054262827494433 +13181,0.5148865540492767,0.01275645791378875,0.10031941759321814,0.4155091679396884,0.03719283071821554,0.016550337272010898,0.024775278774453888,0.19483790517399519,0.8051620948260048,0.37074408534773906,0.4449872986920895,1.2639407470239479,0.010098041051706573,1.1905294519737923,0.08405206988062329,1.054441780316778,0.48829110990902336,1.272469400012319,0.02915578159137823,1.2677447101062898,0.013054262827494433 +13183,0.4580805079113798,0.006289374942998539,0.06283868606979488,0.39478684240677686,0.01728527150834832,0.007989639658516186,0.013729846248370125,0.13717825793616098,0.862821742063839,0.27507372590747015,0.4622223986853435,0.6243724854440067,0.010098041051706573,0.7538211343766654,0.08405206988062329,0.9380142813872283,0.48829110990902336,0.5961861700795319,0.02915578159137823,0.6128790062742506,0.013054262827494433 +13185,0.463228238357698,0.007832336879620018,0.06950157191835497,0.3942028857678397,0.02226371873741061,0.010114964832997316,0.01690815937169185,0.1500374246716084,0.8499625753283916,0.3203340316326124,0.4543250367244686,0.7765307950309673,0.010098041051706573,0.8309240845191443,0.08405206988062329,0.9486717197298508,0.48829110990902336,0.764940618902626,0.02915578159137823,0.7712281457716437,0.013054262827494433 +13187,0.4833435599358079,0.009005191528079229,0.07901262387843083,0.40504348764205333,0.02499288278129843,0.011540814850083056,0.018631036543189268,0.16347093543343036,0.8365290645665696,0.31631505896769846,0.4617640530334807,0.8940475256945348,0.010098041051706573,0.9448088402683059,0.08405206988062329,0.9899673033929718,0.48829110990902336,0.8621790788388695,0.02915578159137823,0.880390522288526,0.013054262827494433 +13189,0.4927037131363058,0.010312063101886254,0.08520537856936043,0.4092544306468302,0.029057729511735478,0.01326236598838346,0.020929542089798372,0.1729343138637733,0.8270656861362267,0.34103163438304984,0.4564143933897939,1.0227309962584163,0.010098041051706573,1.0152121620305201,0.08405206988062329,1.0087109098128928,0.48829110990902336,0.9991632129891943,0.02915578159137823,1.0106830943784824,0.013054262827494433 +13191,0.5105387030479771,0.012165337184819594,0.0965466012104755,0.4145577210365903,0.03404414651993294,0.015528673835160994,0.023828432814576205,0.18910731083477264,0.8108926891652274,0.35261879851902117,0.4561334450275883,1.206831161847319,0.010098041051706573,1.1510424818321043,0.08405206988062329,1.0457825455032035,0.48829110990902336,1.168197024551438,0.02915578159137823,1.1858394185224364,0.013054262827494433 +13193,0.48813397024545024,0.009727566768757603,0.08269987235179599,0.4067342286387588,0.027608291793505515,0.012568807853249295,0.019928067624275878,0.16942044068396162,0.8305795593160383,0.33383717541984753,0.4552548179096666,0.9644373542173652,0.010098041051706573,0.9863984559227499,0.08405206988062329,0.9998282022482379,0.48829110990902336,0.9495782181064909,0.02915578159137823,0.9586953847174708,0.013054262827494433 +13195,0.49432555519448573,0.01005889786465753,0.08565130429900118,0.4100590667239593,0.028489571195998337,0.013001989728518489,0.020348731233812083,0.17326901957416066,0.8267309804258394,0.33262273621127525,0.45637716479020773,0.9972074011678953,0.010098041051706573,1.021196608238112,0.08405206988062329,1.0124492276210009,0.48829110990902336,0.9781936975892463,0.02915578159137823,0.9890712541368846,0.013054262827494433 +13197,0.49888030476865397,0.010411282721320206,0.0879619801915495,0.41171877381088884,0.02841326774115906,0.013198569897442166,0.02086929995392028,0.17631880703797306,0.8236811929620269,0.32301760009591873,0.464521364373831,1.0322811622590624,0.010098041051706573,1.0494262507519436,0.08405206988062329,1.02172452143781,0.48829110990902336,0.9813267622772741,0.02915578159137823,1.0097193373870526,0.013054262827494433 +13199,0.5001197026031747,0.011469227069274989,0.091133541758605,0.4106698507406664,0.03230530797729867,0.014606684731850603,0.02293296386760305,0.18222345827258055,0.8177765417274194,0.35448318318264355,0.4521450388931409,1.137540094371046,0.010098041051706573,1.0834041136626864,0.08405206988062329,1.024026933578187,0.48829110990902336,1.1090195703756571,0.02915578159137823,1.1190957692420156,0.013054262827494433 +13201,0.5072245771235653,0.013349135589199475,0.0994299327122623,0.41040260011739843,0.040198278803969686,0.017622690982888562,0.02631799836061076,0.19602743478268034,0.8039725652173196,0.4042874988188762,0.43839416779079293,1.3213854427176703,0.010098041051706573,1.1770048679118699,0.08405206988062329,1.0383696258998927,0.48829110990902336,1.3690259165260033,0.02915578159137823,1.340738308248778,0.013054262827494433 +13205,0.4872828560185951,0.00993345432513322,0.08305456501456439,0.40559304315261563,0.02856826765684442,0.012831321096072237,0.0203853967001748,0.1704442583783308,0.8295557416216692,0.34396986669949703,0.4491459282795572,0.9838656068732616,0.010098041051706573,0.9884835244883312,0.08405206988062329,0.9980338774623887,0.48829110990902336,0.980537591952386,0.02915578159137823,0.9822337708975735,0.013054262827494433 +13207,0.4975695369795329,0.010219183253397893,0.08727455089556835,0.4114544766203667,0.028614237250503875,0.01306263229230041,0.02053820118376389,0.17540171656280137,0.8245982834371987,0.32786461754175417,0.45650814236085874,1.0141138000804677,0.010098041051706573,1.041706274164599,0.08405206988062329,1.0190833518572964,0.48829110990902336,0.9823913646209672,0.02915578159137823,0.9999914486306346,0.013054262827494433 +13209,0.48391906466188317,0.009593292211448272,0.08096084832629871,0.40376741654262116,0.02708756479087774,0.012377216796940671,0.019824166708850698,0.16730245662643295,0.832697543373567,0.3345760988287325,0.45693353730745623,0.9517768906838161,0.010098041051706573,0.966121058207013,0.08405206988062329,0.9911482495471748,0.48829110990902336,0.9319257769677354,0.02915578159137823,0.9433193386334573,0.013054262827494433 +13211,0.5044137590139236,0.011252994583063732,0.09224548338358915,0.4134449287446975,0.03248574297540036,0.014561934333838674,0.022309055575847423,0.182876620106318,0.817123379893682,0.3521662176164574,0.4482561579356708,1.1144390447524484,0.010098041051706573,1.0952689142101453,0.08405206988062329,1.0329639921698681,0.48829110990902336,1.1143403698910126,0.02915578159137823,1.1159307033849537,0.013054262827494433 +13213,0.4770477463454933,0.008100524812824913,0.07401660324960832,0.4039709511609275,0.022521600463108433,0.010365550194325585,0.016980532608906307,0.1551555453654803,0.8448444546345197,0.30427768195681976,0.46024927097454293,0.8042238117859569,0.010098041051706573,0.8844681014586444,0.08405206988062329,0.9764417224195687,0.48829110990902336,0.7760081066749482,0.02915578159137823,0.7927753414396458,0.013054262827494433 +13215,0.4776954112874606,0.009325238018851805,0.07814398382622909,0.4011702151533168,0.02685324487172912,0.012033268685807055,0.019521305414508573,0.1635853767479561,0.836414623252044,0.3436380327299849,0.4481122763109937,0.9232854067074561,0.010098041051706573,0.9310442208792782,0.08405206988062329,0.9783022112030739,0.48829110990902336,0.9217956750393832,0.02915578159137823,0.9211717821725114,0.013054262827494433 +13217,0.47209294727904483,0.007787423702677158,0.07127305173279566,0.4016508213406716,0.02186034716372547,0.010026450833187433,0.016495530694878534,0.15097249841071564,0.8490275015892843,0.30671265832253714,0.45865926822173636,0.7732840762647797,0.010098041051706573,0.852644847136671,0.08405206988062329,0.9665064460600826,0.48829110990902336,0.7513602768463516,0.02915578159137823,0.7642535694946436,0.013054262827494433 +13219,0.48637671816092093,0.008836062143136857,0.07956347884130895,0.40770531610074456,0.024868403672146405,0.011406496832872863,0.01816711576275201,0.16358406122347502,0.836415938776525,0.31256053699897873,0.45867426728514105,0.8764731568512081,0.010098041051706573,0.9499286079634235,0.08405206988062329,0.9962160386108758,0.48829110990902336,0.8548560881535917,0.02915578159137823,0.8683978612881136,0.013054262827494433 +13221,0.49786893769081864,0.010749675143545304,0.0887605072943393,0.4096308713100745,0.029876965046938722,0.013700552186833555,0.0215913754198117,0.1782808698731481,0.8217191301268519,0.33660200868234696,0.4585657266495799,1.065913547922877,0.010098041051706573,1.057954021835565,0.08405206988062329,1.01932721325836,0.48829110990902336,1.0275493982501764,0.02915578159137823,1.0477130702364041,0.013054262827494433 +13223,0.46084248667512995,0.006143386291139262,0.06342612866254112,0.3973158185877924,0.01712669819379985,0.007890477285662265,0.013330772376180737,0.13763081854745143,0.8623691814525486,0.27002591132311565,0.46071211136999823,0.6094481852269521,0.010098041051706573,0.758803456939326,0.08405206988062329,0.9433079973630286,0.48829110990902336,0.5894610942354446,0.02915578159137823,0.6045900228826933,0.013054262827494433 +13225,0.47620854123478135,0.00887739725236553,0.0766228183665836,0.40064548263137556,0.025121385466085017,0.01143590056744323,0.01864182702256232,0.16090181450316923,0.8390981854968308,0.3278577583233462,0.4552257112921659,0.8804559306135844,0.010098041051706573,0.9152079889642881,0.08405206988062329,0.975787523436713,0.48829110990902336,0.8626349426566793,0.02915578159137823,0.8711889675826381,0.013054262827494433 +13227,0.5087525292998636,0.011855067356931363,0.09516837040008727,0.41501396859295836,0.0333839440502257,0.015284589413874367,0.023302227849846962,0.1870622059236862,0.8129377940763138,0.35078822837755647,0.45784253025582916,1.1751686488579933,0.010098041051706573,1.1308771479112438,0.08405206988062329,1.0421365508590128,0.48829110990902336,1.1493853407003256,0.02915578159137823,1.1624297899616134,0.013054262827494433 +13229,0.4961701914531444,0.010643736650578342,0.08742614738225832,0.41030520399692627,0.030255569015839,0.013698747238656158,0.021451785766101347,0.17620193411097806,0.8237980658890219,0.3460700250641362,0.4527677939715749,1.0552014358653783,0.010098041051706573,1.0403311830393283,0.08405206988062329,1.0155718133387583,0.48829110990902336,1.0390051186638098,0.02915578159137823,1.046120813337645,0.013054262827494433 +13231,0.49004461295285945,0.009801413730711882,0.08323441528982442,0.4083855387158244,0.02762618516109304,0.012595231722730207,0.020001064130980954,0.16985068928373523,0.8301493107162647,0.3319082024532513,0.4559164303462546,0.9729891116139531,0.010098041051706573,0.9912352069548929,0.08405206988062329,1.0032497933260343,0.48829110990902336,0.9487216647957872,0.02915578159137823,0.9621321150291884,0.013054262827494433 +13233,0.48732503123856613,0.010051813802963836,0.08318062207530538,0.4056368348153031,0.028673534020105654,0.01294675277277616,0.020626508302716447,0.17068817881957918,0.8293118211804208,0.3447141089441099,0.4515227444129489,0.9963006296816919,0.010098041051706573,0.9907566900213428,0.08405206988062329,0.9980676862079654,0.48829110990902336,0.9855095813516493,0.02915578159137823,0.9901504729840122,0.013054262827494433 +13235,0.5067281098299972,0.010869980284298569,0.092326929359519,0.4148584863033381,0.030439094619949002,0.014049346470068762,0.021451307068686896,0.18220210714281052,0.8177978928571895,0.32968815091228526,0.4615559905931361,1.0777690269215034,0.010098041051706573,1.096050136137705,0.08405206988062329,1.0372522540270412,0.48829110990902336,1.0524737427221487,0.02915578159137823,1.0713519225360129,0.013054262827494433 +13237,0.5156672025931541,0.012505323025805109,0.0993492662563204,0.4173199418399135,0.035125582062646474,0.01608638316926727,0.024250762823230066,0.192661595999744,0.807338404000256,0.35355653228502687,0.45796773247991185,1.2396436426988893,0.010098041051706573,1.1813859190669262,0.08405206988062329,1.0565253930500347,0.48829110990902336,1.2091946163679872,0.02915578159137823,1.2239522254488344,0.013054262827494433 +13239,0.5080458551983269,0.013230557417450477,0.09871802894526646,0.4108606933186807,0.037828043748955015,0.016918333342444074,0.026042053649440046,0.19430928908322598,0.805690710916774,0.38319285902607025,0.44724314729892517,1.3118743965868698,0.010098041051706573,1.1720401863351986,0.08405206988062329,1.0405250356550013,0.48829110990902336,1.296095224382058,0.02915578159137823,1.299922970462426,0.013054262827494433 +13241,0.5276995208260029,0.014741289926730811,0.10930676549949286,0.41997309511110126,0.04231910230227462,0.01889137901675809,0.027935007224672886,0.20713826938557012,0.7928617306144299,0.3871590391399054,0.44640311322820037,1.462226505722386,0.010098041051706573,1.3005073352573948,0.08405206988062329,1.0814152880951438,0.48829110990902336,1.448789843075702,0.02915578159137823,1.4519868692705438,0.013054262827494433 +13243,0.500350761897548,0.012776869213261863,0.09570808750945621,0.40634908837175104,0.03757709760227651,0.016602428672212614,0.025535824438053037,0.19128198615405212,0.8087180138459479,0.392621967276943,0.4418230712743179,1.2671087453459315,0.010098041051706573,1.1365480979544598,0.08405206988062329,1.0243901735820944,0.48829110990902336,1.2802818840418835,0.02915578159137823,1.2669639624517712,0.013054262827494433 +13245,0.4773307229585947,0.008928235658094603,0.0769629882648463,0.40160103366268196,0.025471237206706264,0.011503073159402846,0.01870450660027821,0.16123619235697578,0.8387638076430242,0.3309543688591486,0.451610303262938,0.8850090190225601,0.010098041051706573,0.9192626634641097,0.08405206988062329,0.9777771616915869,0.48829110990902336,0.8746595311891112,0.02915578159137823,0.8800074370382934,0.013054262827494433 +13247,0.4812655096725401,0.008604917211318824,0.07725563947797338,0.40484598730215104,0.02424160623400797,0.011123771747587535,0.01787977122477306,0.1605260255000181,0.839473974499982,0.3137842932608121,0.4588710682043115,0.853877159884977,0.010098041051706573,0.9220033874273488,0.08405206988062329,0.9852814737923441,0.48829110990902336,0.8331561220480057,0.02915578159137823,0.8458091062631128,0.013054262827494433 +13249,0.4775879755549456,0.007512883582527036,0.07225202237265438,0.4060614652395659,0.02027197022379186,0.00949272331593307,0.015730889316878736,0.15128526275959794,0.848714737240402,0.2805730491422799,0.46826841254887464,0.745238741486185,0.010098041051706573,0.8635465091138885,0.08405206988062329,0.978129033011838,0.48829110990902336,0.7036913118199544,0.02915578159137823,0.7302062368689637,0.013054262827494433 +13251,0.4961718375149533,0.011000641810125656,0.08874564900120133,0.40914884952950104,0.031173661607527582,0.014142425210290428,0.022171032248064916,0.1788607137512652,0.8211392862487348,0.3512697462734831,0.45366583458631693,1.0901639037151516,0.010098041051706573,1.055627855138702,0.08405206988062329,1.0161947454276534,0.48829110990902336,1.0725401862705475,0.02915578159137823,1.080332714505788,0.013054262827494433 +13253,0.5145136129456677,0.013208028650184235,0.10115752565505051,0.414816219259386,0.03886263007631928,0.01721554008941184,0.025670902222715328,0.19660806460670396,0.803391935393296,0.384179326497583,0.4429844314603409,1.3083836532826618,0.010098041051706573,1.200237708775801,0.08405206988062329,1.0535718014553885,0.48829110990902336,1.3285776889210237,0.02915578159137823,1.3155458832869291,0.013054262827494433 +13255,0.48752648842353385,0.010028472717145274,0.08326661837415347,0.40576119896500656,0.028594599851244674,0.012923732101053482,0.02057010840492658,0.1707940396088108,0.8292059603911892,0.34341012532485204,0.451964083018666,0.9940710866397556,0.010098041051706573,0.9917143011039293,0.08405206988062329,0.9986713850069153,0.48829110990902336,0.9823380258195857,0.02915578159137823,0.9876811498638849,0.013054262827494433 +13257,0.5055120606488958,0.012294451788097845,0.09569799368548165,0.4112672683939507,0.03571618341826492,0.015912733178613747,0.02432078825639924,0.1893090217523986,0.8106909782476014,0.3732176824484819,0.44553285529595876,1.218192903526081,0.010098041051706573,1.1351303941308983,0.08405206988062329,1.0352185791115311,0.48829110990902336,1.2219500630535722,0.02915578159137823,1.2185211163898522,0.013054262827494433 +13259,0.5167355830250719,0.013837603621729908,0.10402236163770037,0.4144894055914028,0.04113218396281,0.018118148183958765,0.026778886680731077,0.20130675156669678,0.7986932484333032,0.3954167480456687,0.44048592703806916,1.3702936332660705,0.010098041051706573,1.2330799940948531,0.08405206988062329,1.0581840847231256,0.48829110990902336,1.4048722973199022,0.02915578159137823,1.384307689902458,0.013054262827494433 +13261,0.47919042327248307,0.009775083568278525,0.08005294128491391,0.4007945451928102,0.02855722174733963,0.012690819835292475,0.020399163033189623,0.16705872529383425,0.8329412747061657,0.3567292005636934,0.44439966701154127,0.967696003610315,0.010098041051706573,0.9528924025575192,0.08405206988062329,0.98130369302795994,0.48829110990902336,0.9776894315856011,0.02915578159137823,0.9706535374550123,0.013054262827494433 +13263,0.5144204907724237,0.012411161891773815,0.09846989493674835,0.4166714738518381,0.0351476711830587,0.01592031122345517,0.024126492070986404,0.19141907583986734,0.8085809241601327,0.356938241943242,0.4529549380537285,1.230262134495296,0.010098041051706573,1.172600817419451,0.08405206988062329,1.0535603118198504,0.48829110990902336,1.2070296683043438,0.02915578159137823,1.2157743896891855,0.013054262827494433 +13265,0.5164872182683826,0.013418741778279347,0.10245105556500088,0.4156010463810971,0.038798331425460755,0.017376836562510448,0.0259807819122187,0.19836126033958146,0.8016387396604185,0.37870113891452145,0.44787587311312027,1.3304805420719374,0.010098041051706573,1.2148896245554002,0.08405206988062329,1.0579722094819473,0.48829110990902336,1.327633865828874,0.02915578159137823,1.329073401163893,0.013054262827494433 +13267,0.48430799668486957,0.009312384907263351,0.0807899775264474,0.40467888344306957,0.026644016064074544,0.01204624814942076,0.019228228670613405,0.16681528713021845,0.8331847128697816,0.3297935818258194,0.4521183338296856,0.9227488389328337,0.010098041051706573,0.9625631135041703,0.08405206988062329,0.9913121848423035,0.48829110990902336,0.9146806309650846,0.02915578159137823,0.9207631174189794,0.013054262827494433 +13269,0.4948179100499923,0.010639955261149758,0.08741360440375356,0.4091843495498272,0.03048996961286443,0.013730686086720283,0.021502769089491496,0.1766581253999517,0.8233418746000483,0.3488011942858998,0.45033452840592486,1.0544822284250461,0.010098041051706573,1.0387693480038185,0.08405206988062329,1.0130144771335852,0.48829110990902336,1.046544706803433,0.02915578159137823,1.0507025225793545,0.013054262827494433 +13271,0.4950517376892808,0.010473923123724194,0.08805106393413147,0.40813601873841765,0.03045406570387077,0.013611613089873634,0.02115722928801868,0.17786234696422118,0.8221376530357788,0.3458682308103921,0.44695553041194014,1.0380410072064201,0.010098041051706573,1.0456482926447839,0.08405206988062329,1.0133188858395878,0.48829110990902336,1.0442280244056619,0.02915578159137823,1.043195641902933,0.013054262827494433 +13273,0.49568735361719396,0.011072212502003975,0.0888647854390464,0.40888360302204807,0.032355941210002626,0.014389212420205832,0.02233708893560909,0.17927587781001628,0.8207241221899837,0.36410307018853966,0.4447162370216417,1.096718011164902,0.010098041051706573,1.0550844352756967,0.08405206988062329,1.0147572753134053,0.48829110990902336,1.107770822303301,0.02915578159137823,1.1014265900102789,0.013054262827494433 +13275,0.4990991676628316,0.01130954203335429,0.09039219344343269,0.4103052874170815,0.03237751718496158,0.014518473523874104,0.02265990962540434,0.18111068761488597,0.818889312385114,0.3581893076333344,0.44841219420671063,1.1205539357096215,0.010098041051706573,1.0757791070988327,0.08405206988062329,1.0216329821101722,0.48829110990902336,1.1102558425597464,0.02915578159137823,1.112857566779787,0.013054262827494433 +13277,0.4808550831967586,0.009571588619016975,0.0795914767268261,0.4027431809379127,0.027557767994720636,0.012349615492445188,0.019905349768550594,0.16552071405317445,0.8344792859468255,0.3462401896286511,0.4481355491058296,0.9483716976642098,0.010098041051706573,0.948809636048688,0.08405206988062329,0.984689275108749,0.48829110990902336,0.9452258138727323,0.02915578159137823,0.9462707616691572,0.013054262827494433 +13279,0.48627446336265745,0.010236068048939725,0.08306916442523005,0.40498397208877834,0.029537081435305326,0.013193190600511346,0.0210499806593911,0.17082773347955577,0.8291722665204442,0.355572150504673,0.44666534266116353,1.0136149730101676,0.010098041051706573,0.9886285482266512,0.08405206988062329,0.9957821103269928,0.48829110990902336,1.0115770236976591,0.02915578159137823,1.0108960894498178,0.013054262827494433 +13281,0.5497786148966146,0.019355922479615026,0.12905291739624253,0.4206178234995924,0.056163255613976636,0.024970215112720108,0.03520675769328512,0.2347361536070493,0.7652638463929506,0.4351955519264524,0.4446005638338759,1.9192007981187817,0.010098041051706573,1.528247727620867,0.08405206988062329,1.124542157054616,0.48829110990902336,1.9240223193761556,0.02915578159137823,1.9124089125477584,0.013054262827494433 +13283,0.4902777876670542,0.010261974816015476,0.08486515281583487,0.4066737158213596,0.02837705762980052,0.013018348172314283,0.020930939712456124,0.17309605890909027,0.8269039410909097,0.3343782069347277,0.45876314388010764,1.0192321084290739,0.010098041051706573,1.0080142468690807,0.08405206988062329,1.004175724465082,0.48829110990902336,0.9792344256801311,0.02915578159137823,0.9971645082971249,0.013054262827494433 +13285,0.48472106893686806,0.009785450259463067,0.08159410321460285,0.404592714392746,0.0282042287233098,0.012636686396798026,0.020187796418516236,0.16833207476118597,0.831667925238814,0.34566503720408687,0.4480422606399533,0.968379057023673,0.010098041051706573,0.9715697014149461,0.08405206988062329,0.9928364086997828,0.48829110990902336,0.967762139880217,0.02915578159137823,0.9675486894473255,0.013054262827494433 +13287,0.49335095588893646,0.010869493853326416,0.08704457501194658,0.40824985486874354,0.031001370391803895,0.013985282914532184,0.022031970798032395,0.17643540358629026,0.8235645964137097,0.3561551123381217,0.4511182163169663,1.077472275931585,0.010098041051706573,1.033047641880096,0.08405206988062329,1.0100529671554872,0.48829110990902336,1.065034184827094,0.02915578159137823,1.069941943385293,0.013054262827494433 +13289,0.5078689566714818,0.011442665629281534,0.09371092715813287,0.41490686708668845,0.03167896790153302,0.014554143650945414,0.02253074435633067,0.18451792716826826,0.8154820728317318,0.33804988235871597,0.459426067673155,1.1348381637965632,0.010098041051706573,1.1145360457401938,0.08405206988062329,1.0400090784327425,0.48829110990902336,1.092769369971599,0.02915578159137823,1.1161102794443725,0.013054262827494433 +13291,0.5509243662799147,0.017336864990324746,0.12348368938227336,0.4287889690338389,0.04981544562483456,0.022237261832459516,0.031468684362957,0.22413909592725026,0.7758609040727498,0.40341721140691633,0.44639291194804737,1.7193671575367164,0.010098041051706573,1.4681032706550416,0.08405206988062329,1.1281523890645964,0.48829110990902336,1.7059407907386328,0.02915578159137823,1.70911217348938,0.013054262827494433 +13293,0.5001144034820151,0.011416279109773799,0.09136861911281877,0.41034731707677197,0.0327202239363956,0.014671101660615544,0.0228273351662913,0.18269543623752985,0.8173045637624702,0.3581122737117633,0.44838023386192283,1.1321240384376567,0.010098041051706573,1.0864572969713913,0.08405206988062329,1.024272097665052,0.48829110990902336,1.1218403733680238,0.02915578159137823,1.125302986363803,0.013054262827494433 +13295,0.5004271926457562,0.011170859050496747,0.09035235746162901,0.4118978217509718,0.03166731907092906,0.014367310276624832,0.022322645960617105,0.18055045526989955,0.8194495447301005,0.35048691545627453,0.4536951879142234,1.1073398311800493,0.010098041051706573,1.0751153353011298,0.08405206988062329,1.024906381507864,0.48829110990902336,1.0860962913370755,0.02915578159137823,1.095247308279387,0.013054262827494433 +13297,0.48538709184714846,0.009115916873343004,0.07977641969636592,0.4066295464827654,0.0258608768539658,0.011795819298766476,0.01878071548761677,0.16435628601653882,0.8356437139834612,0.32416692742534603,0.45612603800623147,0.9042730764491733,0.010098041051706573,0.951162227464161,0.08405206988062329,0.9938394137983197,0.48829110990902336,0.8877218540859572,0.02915578159137823,0.8975087698712401,0.013054262827494433 +13299,0.49631059758067275,0.0113965238748404,0.09001750299437664,0.4082728834123679,0.03276088208104716,0.01465028828024404,0.022962483433547787,0.18137332435208528,0.8186266756479147,0.36393902287084906,0.4471884561594125,1.1293763293564367,0.010098041051706573,1.069125449958746,0.08405206988062329,1.0162393041888,0.48829110990902336,1.1228481766922886,0.02915578159137823,1.123971614448653,0.013054262827494433 +13301,0.5092019310875342,0.012500504109143877,0.09742954967035261,0.41315346791497193,0.03677284655155695,0.016294294613907537,0.02454920797815078,0.191337745837425,0.808662254162575,0.377430119260284,0.44310669806489705,1.2381098322393322,0.010098041051706573,1.1572762007639725,0.08405206988062329,1.0425510311343764,0.48829110990902336,1.2557986728556323,0.02915578159137823,1.2448309768360606,0.013054262827494433 +13303,0.49254445730534047,0.010346010067958059,0.0861739703663156,0.408181066533837,0.02992929417464652,0.013396005175787696,0.021005230927904465,0.17495673555594238,0.8250432644440576,0.34731246625193835,0.44758840945656575,1.02473295100881,0.010098041051706573,1.0246304680477558,0.08405206988062329,1.0087407816811174,0.48829110990902336,1.0266204578356537,0.02915578159137823,1.0265194999971385,0.013054262827494433 +13305,0.49007131546636795,0.009899793233444552,0.08369565348893361,0.4079098247904601,0.028163291777124788,0.012798973898576397,0.020200719611641795,0.17078260009828586,0.8292173999017142,0.33649646789422094,0.4544558924384035,0.9816869425478638,0.010098041051706573,0.9971823234391,0.08405206988062329,1.0035403111078594,0.48829110990902336,0.9685040890491192,0.02915578159137823,0.9766681744866319,0.013054262827494433 +13307,0.5106170475186491,0.011903878172744303,0.09581004968692905,0.4161882582257179,0.033931732568895874,0.015322949449142965,0.02331273158738309,0.18763582248677235,0.8123641775132276,0.35415629863226167,0.45158169916702157,1.1796470362218172,0.010098041051706573,1.1370683091927696,0.08405206988062329,1.0457781945921214,0.48829110990902336,1.1684377543562152,0.02915578159137823,1.1749373324710075,0.013054262827494433 +13309,0.48862868925116876,0.010015677779471788,0.08489944207409639,0.4053517120674074,0.029525087498187375,0.013122430701618643,0.02049752296538497,0.17375042428271278,0.8262495757172872,0.34776538899300674,0.4444501884177063,0.9921865852534579,0.010098041051706573,1.0096332246256337,0.08405206988062329,1.000363669369313,0.48829110990902336,1.0111681721783727,0.02915578159137823,1.005122990739774,0.013054262827494433 +13311,0.514014760550748,0.012743690863868186,0.09942848634315793,0.41559476744324253,0.03630820698792496,0.016380276601753445,0.02479246092118792,0.19343508002887688,0.8065649199711231,0.3651690609330439,0.45114529084845867,1.2634980470453923,0.010098041051706573,1.1819165878067552,0.08405206988062329,1.052558110926833,0.48829110990902336,1.2448659005099025,0.02915578159137823,1.251907132585195,0.013054262827494433 +13313,0.4742939462229993,0.008443116025799485,0.07400142222419329,0.4013405152700123,0.02401255862735486,0.010870241157208603,0.01780144168618542,0.15602438701462987,0.8439756129853702,0.3244877990940076,0.4526898330953094,0.8365007067874264,0.010098041051706573,0.8836801361035856,0.08405206988062329,0.971097434659139,0.48829110990902336,0.8242782312014845,0.02915578159137823,0.8303718929652784,0.013054262827494433 +13315,0.49959809159211666,0.011234942143380226,0.09139765266547628,0.4098772364590071,0.032807424494045015,0.014603135187610581,0.022487960487552642,0.18294235747420634,0.8170576425257936,0.35895259382779965,0.4451167811195068,1.113938359897285,0.010098041051706573,1.0858224969342145,0.08405206988062329,1.0231334226018198,0.48829110990902336,1.1240328229259517,0.02915578159137823,1.1184053800249174,0.013054262827494433 +13317,0.5151217065061943,0.013216367839264812,0.10185116291119949,0.41513761262337456,0.03897897241368645,0.017297115729429727,0.02565678687645419,0.19772252192982426,0.8022774780701758,0.38270522691695597,0.4437550468456243,1.3095265592755225,0.010098041051706573,1.2056816623754707,0.08405206988062329,1.0549272711843825,0.48829110990902336,1.3335351137874913,0.02915578159137823,1.3203195911284515,0.013054262827494433 +13319,0.5025094843782134,0.011423289136835666,0.09183271234447907,0.4120874432378905,0.032344056785605826,0.01468380325800215,0.022732484643489703,0.1827482170970553,0.8172517829029446,0.3522062668069537,0.4539876786432346,1.1321886807523796,0.010098041051706573,1.0917613338116563,0.08405206988062329,1.0289313840045307,0.48829110990902336,1.112766672684538,0.02915578159137823,1.1215773650925396,0.013054262827494433 +13321,0.49577930964021755,0.010916126345797389,0.08856854528923493,0.4088021238858628,0.031016264161691957,0.014053942751633205,0.022018115991405775,0.17864510189727018,0.8213548981027299,0.3501950275958956,0.4531152648935446,1.0820617682224243,0.010098041051706573,1.0535359039724095,0.08405206988062329,1.0148706341674303,0.48829110990902336,1.066387657141199,0.02915578159137823,1.0731932746363648,0.013054262827494433 +15001,0.5043781338962163,0.011459571016673758,0.09299696060279858,0.412550794131128,0.03274419975572654,0.014747412449063963,0.022720197896270704,0.18437944540620024,0.8156205545937998,0.35209967662901404,0.4503824359453106,1.1354928845978987,0.010098041051706573,1.1063417247283436,0.08405206988062329,1.032877515774024,0.48829110990902336,1.1234017804235896,0.02915578159137823,1.1290748102321486,0.013054262827494433 +15003,0.4939381754006392,0.011050348542899073,0.08887261011070903,0.40661924425197993,0.03236118373842783,0.014368712071137945,0.02237192647427181,0.17992658704426598,0.820073412955734,0.36413000246212357,0.4440107070025247,1.094326441319919,0.010098041051706573,1.0551890665664798,0.08405206988062329,1.0112561288768753,0.48829110990902336,1.1073068460969275,0.02915578159137823,1.100015674104748,0.013054262827494433 +15005,0.6105780233013952,0.03044841227706558,0.18220674851872098,0.42919518993914774,0.09551669683713095,0.04092284084007805,0.04986817591702863,0.29841681417475385,0.7015831858252461,0.5242215099805538,0.4284365162863316,3.0207992693576036,0.010098041051706573,2.164655232249382,0.08405206988062329,1.249566885123342,0.48829110990902336,3.2470548496815246,0.02915578159137823,3.1075549732492425,0.013054262827494433 +15007,0.5034128773436539,0.011457642469748524,0.09298705033970793,0.4118937498076932,0.03300871359407177,0.014797560219930209,0.022759931232206012,0.18471329305354753,0.8152867069464524,0.35498183320668447,0.44829254486875214,1.1355622187813554,0.010098041051706573,1.105436451593952,0.08405206988062329,1.0311239179097056,0.48829110990902336,1.132130464890247,0.02915578159137823,1.1336952217180025,0.013054262827494433 +15009,0.4966719038583272,0.010196660436933104,0.0868726656744554,0.41123259672291107,0.029170758455576252,0.01317485934940463,0.020529972317181126,0.17490956303265207,0.825090436967348,0.335787537185633,0.4516461020191999,1.0098973466145473,0.010098041051706573,1.0351003767738698,0.08405206988062329,1.017263362118006,0.48829110990902336,1.0015625709072866,0.02915578159137823,1.0078616784650425,0.013054262827494433 +16001,0.4758175995046622,0.008414433787044685,0.07497296009035863,0.402249536604807,0.024194411721605583,0.01089182689992461,0.017684158374562685,0.15756659730200676,0.8424334026979933,0.32270850307158855,0.4501794474381959,0.8333811302048998,0.010098041051706573,0.8947993001565501,0.08405206988062329,0.9739125590391228,0.48829110990902336,0.8307612326442639,0.02915578159137823,0.833771217866169,0.013054262827494433 +16003,0.5276783784408876,0.013350655715075382,0.10513624919903751,0.4227387518902844,0.036481668120663356,0.016904692715176178,0.025300744280108815,0.19924304935457052,0.8007569506454295,0.34699419466257064,0.4633749931407686,1.3245973059212441,0.010098041051706573,1.2513390201938104,0.08405206988062329,1.0805816885713608,0.48829110990902336,1.2577632121586775,0.02915578159137823,1.2907358606722648,0.013054262827494433 +16005,0.4705141485637783,0.008581567610532814,0.0736735530576065,0.3979874764845286,0.024352217239221326,0.011024660297764815,0.018238702569790162,0.15658095146020892,0.8434190485397911,0.3305421854729871,0.4527169000450874,0.8505326007104822,0.010098041051706573,0.8791470990301521,0.08405206988062329,0.963600932521028,0.48829110990902336,0.8361409458583721,0.02915578159137823,0.842313130817347,0.013054262827494433 +16007,0.5099200443616683,0.013458642231056583,0.09959293053834803,0.41183183874224805,0.03876926621917479,0.01728737692742377,0.026393632452523956,0.19531087596884167,0.8046891240311583,0.3892772911652276,0.44590415587679216,1.3349227790963125,0.010098041051706573,1.1842140320791574,0.08405206988062329,1.0441863428888123,0.48829110990902336,1.328304387372437,0.02915578159137823,1.326274919150019,0.013054262827494433 +16009,0.5168490919004258,0.012531757575919292,0.09954678586791185,0.4178610120279933,0.03529372968752538,0.016107329036502825,0.024246453698584833,0.19260319390691732,0.8073968060930827,0.35454414102687815,0.456379339307854,1.2421131938372725,0.010098041051706573,1.1841972367037998,0.08405206988062329,1.058555377810433,0.48829110990902336,1.214138843156004,0.02915578159137823,1.227230185730733,0.013054262827494433 +16011,0.47097118027145923,0.008687798292724182,0.07330151507534804,0.3989908087331289,0.024816629566616143,0.011143390754537387,0.018446560334576506,0.15563906698728017,0.8443609330127199,0.3385554792572384,0.4490291771743135,0.8603436698093572,0.010098041051706573,0.8752540560532358,0.08405206988062329,0.9643350924266854,0.48829110990902336,0.8518956310693699,0.02915578159137823,0.8542424236468732,0.013054262827494433 +16013,0.4943499778604251,0.009256510130184062,0.0835520688162257,0.4114148630190695,0.025686183362964705,0.011834152534731295,0.018724609173134316,0.16901400335414968,0.8309859966458504,0.3074272573604602,0.4607205503248963,0.9184882699574444,0.010098041051706573,0.9974658398366698,0.08405206988062329,1.0121785245888695,0.48829110990902336,0.8830115553233013,0.02915578159137823,0.9044631172861729,0.013054262827494433 +16015,0.5217053250157855,0.011443497030720978,0.09776569509279355,0.4235399909221572,0.031031641958857333,0.014460031967958786,0.021934790545553137,0.1873963910370963,0.8126036089629037,0.3174082885556523,0.46597701749492737,1.1356549730799255,0.010098041051706573,1.168551363244069,0.08405206988062329,1.068747391256272,0.48829110990902336,1.0723049120179062,0.02915578159137823,1.1072469037806587,0.013054262827494433 +16017,0.5203703111125204,0.012746876833631663,0.10143095253417986,0.41971746574232505,0.035756115401336795,0.01636460112060728,0.024495780334546004,0.19492071389954316,0.8050792861004569,0.35251680584669476,0.45767279070800476,1.2636567588566092,0.010098041051706573,1.2069905026445213,0.08405206988062329,1.066452798734593,0.48829110990902336,1.230470464854192,0.02915578159137823,1.2462292441472143,0.013054262827494433 +16019,0.471313515735429,0.008629779242064078,0.07344292886567502,0.3990482621183594,0.024778476487030403,0.01111320698322249,0.01831006103993926,0.1558260614509983,0.8441739385490017,0.33738410041284594,0.448502432707652,0.853898294288014,0.010098041051706573,0.8764945818588171,0.08405206988062329,0.964971904782891,0.48829110990902336,0.8506569989234373,0.02915578159137823,0.8509831145912035,0.013054262827494433 +16021,0.510331381634606,0.011946914124417542,0.0952449071855018,0.41577633516469525,0.033426867595361405,0.01524001068175342,0.023410110673874756,0.1866334515436414,0.8133665484563586,0.3509570073941933,0.45592099344265963,1.1850965845366312,0.010098041051706573,1.1358120534763105,0.08405206988062329,1.0451614677796317,0.48829110990902336,1.1481416351263511,0.02915578159137823,1.1645900167184213,0.013054262827494433 +16023,0.5273083150215665,0.014785871887758189,0.10935038845716746,0.4188975382936232,0.042449521403996396,0.018975592940774624,0.028040278270888747,0.2073746712162032,0.7926253287837968,0.3881972620574994,0.4470154742189431,1.4672933383804365,0.010098041051706573,1.300576794452783,0.08405206988062329,1.0798693779750037,0.48829110990902336,1.4545530264013085,0.02915578159137823,1.4566888849959039,0.013054262827494433 +16025,0.4825129808259109,0.009596521110566393,0.08089318371679685,0.40253600024817515,0.027599868485354735,0.012398362764744587,0.019888627854405407,0.16764975644454808,0.832350243555452,0.34118904977186393,0.4492181827360339,0.9505244461799596,0.010098041051706573,0.9614274552386659,0.08405206988062329,0.9880410553574219,0.48829110990902336,0.94746799851728,0.02915578159137823,0.9493445234372767,0.013054262827494433 +16027,0.4679198437772035,0.008275196612131686,0.0711698203610558,0.39788573747239353,0.023848514863612055,0.010673792211813507,0.01768507303586778,0.15209831621277164,0.8479016837872284,0.33509308780919705,0.44756632741519375,0.8189693051797595,0.010098041051706573,0.8494416620734287,0.08405206988062329,0.9583894230296631,0.48829110990902336,0.8187395135726481,0.02915578159137823,0.8178357162203158,0.013054262827494433 +16029,0.5010272245077279,0.012061039381961078,0.09318026416560196,0.4098770491738651,0.03541856346491448,0.015687954758927796,0.024072622787736454,0.1859784450977768,0.8140215549022232,0.38010799585165217,0.44293029485705243,1.1941363047184388,0.010098041051706573,1.1036547463696547,0.08405206988062329,1.0255836585469889,0.48829110990902336,1.2109702939266298,0.02915578159137823,1.1989969909663327,0.013054262827494433 +16031,0.47633427869267303,0.009685370007273961,0.07790759072146913,0.400282787698973,0.027916246380191672,0.012455663945661957,0.020333136707809524,0.1635565488490373,0.8364434511509626,0.358325114686145,0.44617975411264577,0.9589232978513241,0.010098041051706573,0.9272575911425954,0.08405206988062329,0.9754864384600223,0.48829110990902336,0.9574018747163302,0.02915578159137823,0.9544152551713145,0.013054262827494433 +16033,0.5173001348027095,0.01314021626544493,0.09879359915445476,0.4184913137732825,0.034490512333739634,0.016208674028882198,0.025401532652715064,0.1909792642759182,0.8090207357240818,0.3491168722359924,0.4699458758989322,1.3049577126365994,0.010098041051706573,1.1799814397894743,0.08405206988062329,1.059543125212294,0.48829110990902336,1.1911943257784054,0.02915578159137823,1.2360975996055208,0.013054262827494433 +16035,0.5417452959851057,0.01606011283536745,0.11755537148694095,0.4253504350451228,0.045820027234154265,0.020539812021455637,0.029645135738860195,0.21699380199172588,0.7830061980082741,0.38977399887885467,0.4482714930851297,1.593641975409788,0.010098041051706573,1.3984657752047467,0.08405206988062329,1.10946184789525,0.48829110990902336,1.5687626985066552,0.02915578159137823,1.5754744592989396,0.013054262827494433 +16037,0.5158160659710592,0.01282047221697754,0.10026158483947527,0.41753031593838097,0.03715324822857324,0.016569627636271553,0.02485473614095776,0.19437468402758246,0.8056253159724176,0.370563145277005,0.4459805919076665,1.2695705486332165,0.010098041051706573,1.189231394864168,0.08405206988062329,1.0568925203393382,0.48829110990902336,1.2723389416943274,0.02915578159137823,1.269876004170046,0.013054262827494433 +16039,0.4636232838006549,0.0077076844725851605,0.06881905330814138,0.39536377321198696,0.02172100598296127,0.009905871945390377,0.016624886501384713,0.14843743986277372,0.8515625601372263,0.31562488785924125,0.456050329950689,0.7647275418064701,0.010098041051706573,0.8230669643979893,0.08405206988062329,0.9498722777475861,0.48829110990902336,0.7464782549574193,0.02915578159137823,0.7555910116072082,0.013054262827494433 +16041,0.4751566779777275,0.00975819527365445,0.07746081075212419,0.39976604105913127,0.028351032579117634,0.012568429451055168,0.020536794968736307,0.1630216186412413,0.8369783813587587,0.3660048520514636,0.4433146981853715,0.9660744179255505,0.010098041051706573,0.9201024983131987,0.08405206988062329,0.9729109405466698,0.48829110990902336,0.9700914110842147,0.02915578159137823,0.9629780777582839,0.013054262827494433 +16043,0.4838165736643588,0.01072973513193092,0.08311719097862054,0.402704254071539,0.030362053199241464,0.013626632321675172,0.022177278985433285,0.17179484024100827,0.8282051597589917,0.3652920995254906,0.44880470474953277,1.0629071862081498,0.010098041051706573,0.9868142658875355,0.08405206988062329,0.9905563224741221,0.48829110990902336,1.039156203261547,0.02915578159137823,1.0429368547227744,0.013054262827494433 +16045,0.5113472788711845,0.012929476832212825,0.09889144264957468,0.414276414126795,0.03744880661545126,0.016683927365452003,0.02528511906967621,0.19339389635138124,0.8066061036486187,0.37868601784031436,0.4455129247982035,1.2820812713864114,0.010098041051706573,1.1745804281116166,0.08405206988062329,1.0473217816787224,0.48829110990902336,1.2819371352404354,0.02915578159137823,1.2786230043197888,0.013054262827494433 +16047,0.492590933984808,0.011038731183066176,0.08686261596182412,0.40740917050261227,0.031351038405721,0.014123838668011875,0.022409529736506725,0.17633823517446842,0.8236617648255316,0.36092671235574686,0.45050624751984375,1.094259593252985,0.010098041051706573,1.0333839395617528,0.08405206988062329,1.0079934211914499,0.48829110990902336,1.075269810172714,0.02915578159137823,1.0802027778784773,0.013054262827494433 +16049,0.5330324369825228,0.01517756598909805,0.11227662732606733,0.4222379380826194,0.04352225095949464,0.01947010801867515,0.028474000710008756,0.21063751384748972,0.7893624861525103,0.3876341140271325,0.44735985822046803,1.5054011081563696,0.010098041051706573,1.3365087636415267,0.08405206988062329,1.0922755455020834,0.48829110990902336,1.490112960212617,0.02915578159137823,1.4944753877076264,0.013054262827494433 +16051,0.4632622551357934,0.007573495653156108,0.06717319766360977,0.39684315593683345,0.021353834933004447,0.009718602625795183,0.016348181983736474,0.14500036840670233,0.8549996315932977,0.3178921902741667,0.4551221200447761,0.750200877380673,0.010098041051706573,0.8038129657332589,0.08405206988062329,0.9486716145492116,0.48829110990902336,0.7331173281405254,0.02915578159137823,0.7405586347013109,0.013054262827494433 +16053,0.46960202779335103,0.00844259203982185,0.07256699468430863,0.39819018999163125,0.02413248584189928,0.010850695618806274,0.017978184803616355,0.1545287081175932,0.8454712918824068,0.3325545717703191,0.44963024903000626,0.835758238209688,0.010098041051706573,0.8664346225790983,0.08405206988062329,0.9614958905272591,0.48829110990902336,0.8285237113536736,0.02915578159137823,0.8310731266228382,0.013054262827494433 +16055,0.49641715193601776,0.01092950740572525,0.08868243675655421,0.4096408210106861,0.03124665994757858,0.014077328961770698,0.022016780369292988,0.17864498922064706,0.8213550107793529,0.3523432721335237,0.4505226793963814,1.0829636970679055,0.010098041051706573,1.054725321864923,0.08405206988062329,1.016364402486515,0.48829110990902336,1.0723357307191357,0.02915578159137823,1.0767184117958497,0.013054262827494433 +16057,0.45993883638742283,0.008012062525316783,0.06997390392311012,0.3906283216745569,0.022996652433015827,0.010337440704518192,0.017419843447549054,0.15213741129737654,0.8478625887026234,0.3286461258226408,0.4495193695964608,0.7935841414603899,0.010098041051706573,0.8356203457866453,0.08405206988062329,0.9426800023510169,0.48829110990902336,0.7899659070014029,0.02915578159137823,0.7911976337597506,0.013054262827494433 +16059,0.5368692549253775,0.015253710416421755,0.11337567328045742,0.42462671575169386,0.04360856667556236,0.019546761173721568,0.02841233741079465,0.21117929969041743,0.7888207003095826,0.38463777469870314,0.44823214023852115,1.5118956707036237,0.010098041051706573,1.347779797348752,0.08405206988062329,1.0999283488235088,0.48829110990902336,1.493761006667868,0.02915578159137823,1.499171488536878,0.013054262827494433 +16061,0.5309597263803257,0.015578779569440027,0.11273291954859355,0.41932525421394007,0.045019508091673814,0.020074270055912075,0.029340793275686165,0.21231915331341555,0.7876808466865844,0.39934659966176206,0.4459015859310274,1.5460911308603567,0.010098041051706573,1.3416231742782712,0.08405206988062329,1.0875855572186035,0.48829110990902336,1.5421743150539284,0.02915578159137823,1.5383255551721848,0.013054262827494433 +16063,0.48143643597965363,0.009405906117963877,0.079452501790198,0.40360648556921375,0.02736005512065001,0.012230760328933048,0.019537171296194516,0.1650321742444018,0.8349678257555981,0.3443573771018171,0.44702981317102236,0.9312055955115491,0.010098041051706573,0.9468810815233167,0.08405206988062329,0.9857216403193838,0.48829110990902336,0.9398069584772286,0.02915578159137823,0.9354803244917784,0.013054262827494433 +16065,0.4133940110740938,0.00460168055794829,0.044778504014011025,0.3676426024875111,0.0130858553799192,0.0059200733645826354,0.01113146401417876,0.10831918899276276,0.8916808110072373,0.2922352067819123,0.4524024752456946,0.4550726703242062,0.010098041051706573,0.5352253119475407,0.08405206988062329,0.8469231086504221,0.48829110990902336,0.4501280272706133,0.02915578159137823,0.4482312471616019,0.013054262827494433 +16067,0.4893201242365674,0.010796075438811576,0.0860071815755888,0.40542789688759284,0.031907273862620045,0.014129732462085483,0.022063420047674333,0.1757687397586118,0.8242312602413882,0.37098383272305957,0.44283734558215343,1.069283065494617,0.010098041051706573,1.0203503130865283,0.08405206988062329,1.0017028412335738,0.48829110990902336,1.0906458533742627,0.02915578159137823,1.0769046082269624,0.013054262827494433 +16069,0.506149868613114,0.012978527917193724,0.09853066779407184,0.4099785132963867,0.038789834109291974,0.017054835340205004,0.025641670030964937,0.1946669828524361,0.8053330171475639,0.39368284999714365,0.4396728094312622,1.2844900972193898,0.010098041051706573,1.167449488048526,0.08405206988062329,1.0367881535082484,0.48829110990902336,1.32341123694446,0.02915578159137823,1.3006875556305983,0.013054262827494433 +16071,0.5026071751849162,0.01240746024009887,0.09395252120038589,0.4101037453397659,0.03544170491363445,0.015846541015550483,0.024686197994555077,0.1869303222060438,0.8130696777939562,0.377229950413389,0.4471156524260295,1.2295890054843124,0.010098041051706573,1.11801355767295,0.08405206988062329,1.0291583787926981,0.48829110990902336,1.2143792403347946,0.02915578159137823,1.2168539542640464,0.013054262827494433 +16073,0.4835125073399851,0.009851781702626107,0.0811917938942472,0.4041054832360742,0.028497550888655257,0.012733283836453155,0.02037544335062828,0.1679207728067242,0.8320792271932758,0.3509905314541207,0.4468202859327893,0.9754313253157366,0.010098041051706573,0.9668562616364063,0.08405206988062329,0.989915268066594,0.48829110990902336,0.9766071542389891,0.02915578159137823,0.9749333594099685,0.013054262827494433 +16075,0.49188786170709453,0.011001417252142882,0.08698300206898363,0.40690468212323433,0.03165650428671246,0.014140731587360622,0.022365701836923796,0.176835024485275,0.823164975514725,0.3639389712211431,0.446692769968795,1.0894036472617694,0.010098041051706573,1.0338650468321642,0.08405206988062329,1.0069467789016024,0.48829110990902336,1.0849224859714823,0.02915578159137823,1.084721061169975,0.013054262827494433 +16077,0.47911562644410544,0.00915624061202144,0.07739360977393783,0.40332839162525547,0.02579367235387535,0.011742513424887928,0.019110711708522462,0.16153430508693026,0.8384656949130698,0.33327909667499866,0.45524783225075294,0.9073405968925035,0.010098041051706573,0.9239202251733002,0.08405206988062329,0.981338835953878,0.48829110990902336,0.8889934776476753,0.02915578159137823,0.8983658410558913,0.013054262827494433 +16079,0.526444839191637,0.01417658736225666,0.107562666662195,0.4208148409720562,0.04092093548475412,0.01827166682054291,0.02692891316785439,0.20431896877811337,0.7956810312218866,0.38043809022760666,0.4465114642198337,1.405445203304617,0.010098041051706573,1.2779243284363964,0.08405206988062329,1.0787805838054294,0.48829110990902336,1.4011528829603501,0.02915578159137823,1.4013195697433507,0.013054262827494433 +16081,0.4646960000294331,0.006124794953146625,0.06448030625538775,0.39984645575294203,0.017018181880184807,0.007866423809820635,0.013180218794133563,0.13875804020543253,0.8612419597945675,0.26392836617091636,0.46223644013229986,0.6079980349423997,0.010098041051706573,0.7728526463897584,0.08405206988062329,0.9514658698727747,0.48829110990902336,0.5869459012223098,0.02915578159137823,0.6021325637884469,0.013054262827494433 +16083,0.4870955353566454,0.010706125273681602,0.08491038563463107,0.4037912907333577,0.031056206802324803,0.013814221728494851,0.021979518383067723,0.1743197780954012,0.8256802219045988,0.36575274708984945,0.44481355422519747,1.060118420114439,0.010098041051706573,1.0077184748783208,0.08405206988062329,0.9974898192076178,0.48829110990902336,1.0634009893884633,0.02915578159137823,1.058788879841699,0.013054262827494433 +16085,0.5242548695927443,0.012372614337334616,0.10149213180668612,0.42317850708965765,0.03425468070743845,0.015724204910729896,0.02360038037786088,0.19359311223094222,0.8064068877690578,0.33751070253095045,0.45903813978086105,1.2272595619058748,0.010098041051706573,1.2080766793083468,0.08405206988062329,1.074056797287308,0.48829110990902336,1.1805250070462625,0.02915578159137823,1.2068472834718154,0.013054262827494433 +16087,0.5199859830814846,0.014265273259766651,0.10537273439323482,0.41588722533630207,0.04131927552993077,0.01839317359144766,0.027433957306366864,0.2026453362623091,0.7973546637376909,0.3921249246103228,0.445147533579674,1.4146080017562648,0.010098041051706573,1.2524663740156106,0.08405206988062329,1.0650558634785494,0.48829110990902336,1.4147440424446396,0.02915578159137823,1.40973345602296,0.013054262827494433 +17001,0.5047350868543616,0.012875601484841962,0.09773827431779669,0.40938817966457874,0.03852974159353098,0.016931849163734965,0.02550962241417772,0.19364271845440081,0.8063572815455992,0.3942134426095068,0.43944881183884626,1.2743741919547125,0.010098041051706573,1.157350617663701,0.08405206988062329,1.033749035697062,0.48829110990902336,1.31471247095049,0.02915578159137823,1.2908937122554702,0.013054262827494433 +17003,0.5100608056468191,0.013061567292642833,0.09921716773365949,0.41247381631201074,0.03771294083842064,0.0168387911041763,0.025607863117573165,0.19452027412269027,0.8054797258773098,0.38010499291471406,0.44649901942999687,1.2955498453011458,0.010098041051706573,1.1780652022409037,0.08405206988062329,1.0442770740312963,0.48829110990902336,1.2928031040639811,0.02915578159137823,1.2911319489378816,0.013054262827494433 +17005,0.49818852586558604,0.011409544543780726,0.09160086203899995,0.4081577974523364,0.0335762039299421,0.014893345194552637,0.022902062073703967,0.18386786785152567,0.8161321321484744,0.36654899509184435,0.44356846371400743,1.1307468312638478,0.010098041051706573,1.0872768656890548,0.08405206988062329,1.0201096148522688,0.48829110990902336,1.14771772969169,0.02915578159137823,1.1377720893714915,0.013054262827494433 +17007,0.4803761068830801,0.00889774697664283,0.0773247048562542,0.40406341726253187,0.025227623793860086,0.011501376344336268,0.018522459483623892,0.1609670084508896,0.8390329915491104,0.3262556752173574,0.45590406921857934,0.8831434052849684,0.010098041051706573,0.9217564648765346,0.08405206988062329,0.983540205167107,0.48829110990902336,0.8660841233314003,0.02915578159137823,0.8754459794023044,0.013054262827494433 +17009,0.4877793064517837,0.009565837939498795,0.08385524366307152,0.40522138438337696,0.027760576432198633,0.012497478276367456,0.019610995819160208,0.17191226145498753,0.8280877385450125,0.33105355395233244,0.45018799616394195,0.9494556103868492,0.010098041051706573,0.9983333503872631,0.08405206988062329,0.999215673284064,0.48829110990902336,0.9528739170726923,0.02915578159137823,0.9554746801536227,0.013054262827494433 +17011,0.5119081386567277,0.01334355303862314,0.10096887851352551,0.4127794269277891,0.03954932942900352,0.0174638202000612,0.026066303758399474,0.1972402290349844,0.8027597709650156,0.3916982144523434,0.4415705765988057,1.322894684197137,0.010098041051706573,1.197461378857207,0.08405206988062329,1.048422384482858,0.48829110990902336,1.3473330519845406,0.02915578159137823,1.3308024556105909,0.013054262827494433 +17013,0.521033033434248,0.01427856780516909,0.10648435417461394,0.41622866937592856,0.04217226546902536,0.018606078994862888,0.027404342697920286,0.20437159899968566,0.7956284010003143,0.39604189550580293,0.44119230465644915,1.4153357798966244,0.010098041051706573,1.2640969906952808,0.08405206988062329,1.0669886054994793,0.48829110990902336,1.4376362641433995,0.02915578159137823,1.4225533899297398,0.013054262827494433 +17015,0.5278681434602333,0.015200948639242366,0.11134650330378383,0.41842197253675484,0.044821335260329366,0.01977996826889461,0.028796866845569598,0.21093620572345084,0.7890637942765492,0.4025392260235102,0.44130698369447147,1.5072720492786096,0.010098041051706573,1.3222297807316663,0.08405206988062329,1.0815821743198373,0.48829110990902336,1.5283640065070296,0.02915578159137823,1.5127453905218238,0.013054262827494433 +17017,0.4978531768611605,0.011400385734902433,0.0907074845703008,0.40898469270640403,0.03320527842197473,0.014785884110055584,0.02289909207123877,0.18219725972663017,0.8178027402733699,0.36606988474296986,0.44528715953396486,1.129728569807429,0.010098041051706573,1.0773323825977208,0.08405206988062329,1.018945819446349,0.48829110990902336,1.1371978722424747,0.02915578159137823,1.1309612028502765,0.013054262827494433 +17019,0.45977420260094815,0.007974342255258865,0.06970842220794343,0.39095744188851167,0.023005714978892082,0.010326606825499357,0.017344040205274493,0.1516144703500154,0.8483855296499846,0.3300277678106811,0.4488713710907962,0.7892066354753077,0.010098041051706573,0.8312666787070259,0.08405206988062329,0.9422039623668302,0.48829110990902336,0.7904291658402343,0.02915578159137823,0.7890799466966764,0.013054262827494433 +17021,0.5088413052634749,0.012892606446587889,0.09868573417642432,0.41178249822721125,0.03790057496967782,0.016770740451048483,0.025337185313429253,0.19394206632915825,0.8060579336708418,0.38405323004357944,0.44249303511795895,1.2784666614576277,0.010098041051706573,1.170177979764444,0.08405206988062329,1.0419594490678317,0.48829110990902336,1.2932080222087747,0.02915578159137823,1.2827672614083265,0.013054262827494433 +17023,0.5091721774828925,0.012866098643528662,0.09902619634459398,0.41226997832135026,0.03849029294591501,0.016928383284907523,0.0252686600181742,0.19448469638331944,0.8055153036166806,0.38868798728747966,0.4398091567838831,1.2733241051235316,0.010098041051706573,1.1712889565267397,0.08405206988062329,1.0425298940070555,0.48829110990902336,1.315567180709045,0.02915578159137823,1.2919292466797292,0.013054262827494433 +17025,0.5109295187595051,0.0131910745215271,0.1001739856019912,0.4127700367377185,0.03878742024061613,0.01716511163639786,0.02581779685298658,0.19606223935779912,0.8039377606422009,0.3872005292344596,0.4425432660876854,1.307640832888615,0.010098041051706573,1.1881736858397398,0.08405206988062329,1.0464011346999764,0.48829110990902336,1.3238378408054334,0.02915578159137823,1.311753702833951,0.013054262827494433 +17027,0.4967550324868849,0.011057888149793514,0.09002538378974512,0.40843540463122874,0.032475066157158464,0.014409778250797905,0.02226024383574908,0.18122691850559547,0.8187730814944045,0.36073232670692296,0.44371821079790363,1.0950801564657227,0.010098041051706573,1.0673735863535958,0.08405206988062329,1.0172525823148773,0.48829110990902336,1.111195105230033,0.02915578159137823,1.1030707951869112,0.013054262827494433 +17029,0.47746191856815146,0.010389167525428993,0.08199129179505309,0.39702704505669717,0.030605589804540742,0.013537585416185442,0.021759154230739083,0.17172320682858794,0.8282767931714121,0.3732785413485499,0.44232395136449754,1.0290292704539465,0.010098041051706573,0.9741500664397829,0.08405206988062329,0.9783582987185773,0.48829110990902336,1.0447739607872255,0.02915578159137823,1.0332234842830865,0.013054262827494433 +17031,0.48094139217399534,0.009398922979713651,0.07990819075226605,0.4022244539181673,0.027299068652937478,0.012201763542948618,0.019542761618474506,0.16614953932548354,0.8338504606745165,0.34163041855835447,0.44696629390818665,0.9305937548380863,0.010098041051706573,0.9515894835369851,0.08405206988062329,0.9843809653758685,0.48829110990902336,0.9367700357135553,0.02915578159137823,0.9343313099409511,0.013054262827494433 +17033,0.5098754641210937,0.012787548192305275,0.09865532084533439,0.41273514053801663,0.03741512195143288,0.0166121121273577,0.02507974807995129,0.1934890532836153,0.8065109467163847,0.37925092768275476,0.4439946006035003,1.2680537921792037,0.010098041051706573,1.1724010666966818,0.08405206988062329,1.0440229782364536,0.48829110990902336,1.2787026579691632,0.02915578159137823,1.2705521124818597,0.013054262827494433 +17035,0.5056244750626886,0.01226597942433584,0.09517937620210468,0.4119763333679179,0.03528316532508476,0.01579289611954925,0.024259069782599178,0.18824123612747207,0.8117587638725279,0.370701792058021,0.44760428873203173,1.2160881942537922,0.010098041051706573,1.132878278541885,0.08405206988062329,1.0353043961729667,0.48829110990902336,1.2092235377370377,0.02915578159137823,1.2091821370392786,0.013054262827494433 +17037,0.45984298326716344,0.007839332818267545,0.06896487248359807,0.3915782488662567,0.02265581439765101,0.010154769332036802,0.017047846990225757,0.1499748283503334,0.8500251716496666,0.3285123800241818,0.44821912617229354,0.7755025798918912,0.010098041051706573,0.8232872065413639,0.08405206988062329,0.9419914393439307,0.48829110990902336,0.778338629305946,0.02915578159137823,0.7762483750847565,0.013054262827494433 +17039,0.5072462696241751,0.012153839401646261,0.09595034546469651,0.4129535101881572,0.03551091056391571,0.015789067802024576,0.023960431312094594,0.18915929245923738,0.8108407075407627,0.3700967452689518,0.44462582207251483,1.2043662205334318,0.010098041051706573,1.138993008092613,0.08405206988062329,1.038748044522046,0.48829110990902336,1.2147096892344575,0.02915578159137823,1.2082258285780436,0.013054262827494433 +17041,0.4956828465502928,0.01176662675836157,0.09114267550072824,0.4066703762631211,0.03494028086266775,0.015411673124331764,0.023738216563779575,0.1838729666258095,0.8161270333741906,0.3833580775493975,0.4410861259217439,1.1646041100046727,0.010098041051706573,1.0801809765104686,0.08405206988062329,1.0143556591663239,0.48829110990902336,1.1909469431513875,0.02915578159137823,1.1741923680411723,0.013054262827494433 +17043,0.4869019780376753,0.009226459375796105,0.08105190826065316,0.40692796503753925,0.02656944119996696,0.011936841621384166,0.018949315862262082,0.16646452862506456,0.8335354713749354,0.3278077194002989,0.4492695774647685,0.9135747853979463,0.010098041051706573,0.9655831058669515,0.08405206988062329,0.9964982551393747,0.48829110990902336,0.9126948075973429,0.02915578159137823,0.9153897246446447,0.013054262827494433 +17045,0.5172557484804796,0.013780960380653441,0.10345878258529549,0.4153083709344294,0.040291441140178436,0.01786778777039922,0.026642449931464633,0.2000147565091775,0.7999852434908226,0.3894443771069951,0.4434636057875216,1.3668933934688132,0.010098041051706573,1.229223969692249,0.08405206988062329,1.059072918157996,0.48829110990902336,1.3763231172460406,0.02915578159137823,1.3670937352146066,0.013054262827494433 +17047,0.5142778471479708,0.013711930804318182,0.10257909846722835,0.4133504456582689,0.040352811404401966,0.017832305767717233,0.02666249553691725,0.1994624093495393,0.8005375906504607,0.3933823947311621,0.4419098731190749,1.3607107003427203,0.010098041051706573,1.2175482328623084,0.08405206988062329,1.0530664851575269,0.48829110990902336,1.3760748792955617,0.02915578159137823,1.3631820975952025,0.013054262827494433 +17049,0.493781624716706,0.011071146127495464,0.08878581199834198,0.4069318079136467,0.03240770648152978,0.014402557619798816,0.02242113836019564,0.17980784936920338,0.8201921506307966,0.36500996895917304,0.4444176766414281,1.0968060330674139,0.010098041051706573,1.0546589631858978,0.08405206988062329,1.01106730473747,0.48829110990902336,1.1087467402290496,0.02915578159137823,1.1005916506933864,0.013054262827494433 +17051,0.5011584775662952,0.011738625671952475,0.09316728075503669,0.4099269109177265,0.03467686800025471,0.015352033033570666,0.02342298134705233,0.18590383067542177,0.8140961693245783,0.3722000655082987,0.44271682879370483,1.1622969514392767,0.010098041051706573,1.1047391322416846,0.08405206988062329,1.0262661893403688,0.48829110990902336,1.183512189556247,0.02915578159137823,1.171545193944751,0.013054262827494433 +17053,0.5107534304316488,0.013631370543976236,0.10179220099176148,0.4111991911618291,0.04152864298833331,0.0181515599033856,0.02668874985813814,0.1992981249401197,0.8007018750598803,0.4079747032063332,0.4370853126235052,1.3487993459266256,0.010098041051706573,1.202711031385281,0.08405206988062329,1.045224422317661,0.48829110990902336,1.4159773492845287,0.02915578159137823,1.3772713114639519,0.013054262827494433 +17055,0.5110273463632424,0.013271257312787707,0.10036237663958322,0.41256387950758233,0.038801265279888184,0.01720883224894284,0.02596975955833563,0.19639335811247335,0.8036066418875266,0.386611662448265,0.4435121412873789,1.3160856389599593,0.010098041051706573,1.190708582940509,0.08405206988062329,1.0465580005044628,0.48829110990902336,1.3256759969657987,0.02915578159137823,1.3173305357585545,0.013054262827494433 +17057,0.5128312152448469,0.01320313038111778,0.10118941047382354,0.4133839977575444,0.03901082756543482,0.01725312226499094,0.025745566940214546,0.19731523250883143,0.8026847674911686,0.38552282677372096,0.44226496441408253,1.3085996222872847,0.010098041051706573,1.199195252160317,0.08405206988062329,1.0501894472338609,0.48829110990902336,1.3307228453175899,0.02915578159137823,1.317701353730356,0.013054262827494433 +17059,0.5203748751285435,0.014247648407551945,0.10558637678222085,0.41626741863364936,0.04105543725037339,0.01830700597845765,0.02737958554211995,0.20290444798307913,0.7970955520169208,0.3888327121504798,0.4459094143076299,1.4138011849737642,0.010098041051706573,1.255033124116209,0.08405206988062329,1.0658517145648312,0.48829110990902336,1.4063230548480168,0.02915578159137823,1.4064575707976341,0.013054262827494433 +17061,0.5069736511584276,0.012682329043388807,0.09757249765050025,0.4110505459493066,0.037112299968783284,0.016459963892529756,0.02501575577825369,0.19246068790271145,0.8075393120972886,0.3803561542691842,0.44351775304615787,1.2577894281946702,0.010098041051706573,1.1577346726829472,0.08405206988062329,1.0381660713766965,0.48829110990902336,1.2680590745915516,0.02915578159137823,1.2601814581589426,0.013054262827494433 +17063,0.48122536660578175,0.008902961672869887,0.07810562032807883,0.4042849648624473,0.025556428831463876,0.01151179880923946,0.01850060759611445,0.16230570071353428,0.8376942992864658,0.3272034550665541,0.45044630003495145,0.8819161542073666,0.010098041051706573,0.9303681244883539,0.08405206988062329,0.9852190685515683,0.48829110990902336,0.8775644532408737,0.02915578159137823,0.8814161654505563,0.013054262827494433 +17065,0.5185741371573163,0.014439516350881716,0.10573166853226185,0.41476545693755884,0.04231229414374735,0.018712967021280842,0.027844651933540795,0.20388920494927568,0.7961107950507244,0.40018562774157507,0.4422583884888721,1.4329432943661722,0.010098041051706573,1.2567223826480087,0.08405206988062329,1.0622226386355758,0.48829110990902336,1.4453780263092906,0.02915578159137823,1.433115078422738,0.013054262827494433 +17067,0.5212642675734169,0.014260525091766282,0.10625490454107148,0.4166185612926917,0.0420126717985663,0.018571523680703236,0.02735757269177821,0.2038407601497567,0.7961592398502433,0.39539513004152044,0.4420457658524112,1.4135752586299168,0.010098041051706573,1.261694017395922,0.08405206988062329,1.0673720308741528,0.48829110990902336,1.4328692937908358,0.02915578159137823,1.4184594045290302,0.013054262827494433 +17069,0.5238289906599289,0.014720686806375564,0.10791771971024804,0.41748189662961976,0.042905893591521416,0.019015897442669627,0.02810208497210165,0.20601708121249915,0.7939829187875008,0.39757969040414226,0.44320012592459646,1.4596605821899722,0.010098041051706573,1.281340315374175,0.08405206988062329,1.0731031402031848,0.48829110990902336,1.4662916400127983,0.02915578159137823,1.458544821806373,0.013054262827494433 +17071,0.5306162220944752,0.014767759172081816,0.11064747052049381,0.4212089705397995,0.04266441243507493,0.01904075141578975,0.02783133752260677,0.2085263622053252,0.7914736377946748,0.3855886829981599,0.44629119045680604,1.4648382745390418,0.010098041051706573,1.3158027111897383,0.08405206988062329,1.0865709131609247,0.48829110990902336,1.4624269054762706,0.02915578159137823,1.4608345558455578,0.013054262827494433 +17073,0.5075514195881043,0.012470581642056082,0.09686041192697022,0.4124120414860452,0.0364497559912602,0.016196206525094663,0.024570085238213683,0.19083861888432074,0.8091613811156793,0.37631221327803355,0.4443433456448415,1.2360950580104366,0.010098041051706573,1.1507909344122365,0.08405206988062329,1.0391863818432754,0.48829110990902336,1.24616902099614,0.02915578159137823,1.2381402935352597,0.013054262827494433 +17075,0.5148428147434694,0.013750475480498884,0.10322270320216403,0.4136735015031463,0.04127815055668689,0.018109578737087018,0.026708104079009688,0.20049362688221023,0.7995063731177898,0.39989410542603876,0.43872069104010136,1.3608397419244862,0.010098041051706573,1.221401549226497,0.08405206988062329,1.0540456163802896,0.48829110990902336,1.4090199047529972,0.02915578159137823,1.3815201541611573,0.013054262827494433 +17077,0.4656076382452261,0.008961424773725829,0.0746303329076099,0.3923585641509446,0.026095973950668233,0.01163717841118872,0.019246730589514142,0.16028588617849007,0.83971411382151,0.34966980494344385,0.4459376926566379,0.8871061511226188,0.010098041051706573,0.8879882999255484,0.08405206988062329,0.9543819747767133,0.48829110990902336,0.8953692797633019,0.02915578159137823,0.889606704620685,0.013054262827494433 +17079,0.5111884926945742,0.012662664979432732,0.09827463631116559,0.4140555153910506,0.036637733210175744,0.016348031687881532,0.024771029004751956,0.19224735633844342,0.8077526436615565,0.3728096545091269,0.44620750945751847,1.255924959228608,0.010098041051706573,1.1700417663631875,0.08405206988062329,1.0466307644827628,0.48829110990902336,1.2549934584691305,0.02915578159137823,1.2527437836584456,0.013054262827494433 +17081,0.5038736344592898,0.012093283453875846,0.09495880320909855,0.4106055295582941,0.03534130975617736,0.0157061593971674,0.024000627591585003,0.18845757490565962,0.8115424250943404,0.3721751808345359,0.44441361979862953,1.199125729509746,0.010098041051706573,1.1275311445350071,0.08405206988062329,1.031907002187836,0.48829110990902336,1.2090244693678769,0.02915578159137823,1.2020510053974782,0.013054262827494433 +17083,0.49730757065311265,0.011357158121332672,0.09071692667591685,0.4083720993323873,0.032910600750727395,0.0146829920998982,0.022837291832129857,0.18241613848101804,0.817583861518982,0.3627834623223007,0.4461477993401161,1.1257215457317602,0.010098041051706573,1.0783718289949893,0.08405206988062329,1.0184167109515583,0.48829110990902336,1.128449486988457,0.02915578159137823,1.125396182742072,0.013054262827494433 +17085,0.5314834354264408,0.01524942384865455,0.11208048591163013,0.4207344885985087,0.043860389614814435,0.019577930220746935,0.02869219025879711,0.2108823689334763,0.7891176310665237,0.3913294027775376,0.44636927288339057,1.5130812953951969,0.010098041051706573,1.3326292013423315,0.08405206988062329,1.0891690771268916,0.48829110990902336,1.5023910396748261,0.02915578159137823,1.5038415630157864,0.013054262827494433 +17087,0.5061727338620063,0.011994959911230091,0.09551841823337992,0.41191897710095793,0.034519769456350505,0.015499490433891152,0.02369736477054131,0.18870715833425417,0.8112928416657459,0.3613938557065344,0.4490033009487482,1.189457821354515,0.010098041051706573,1.1336549896499026,0.08405206988062329,1.0362844227643775,0.48829110990902336,1.183607805038067,0.02915578159137823,1.187054906222052,0.013054262827494433 +17089,0.47196628515005923,0.00782484842571748,0.07170261767905226,0.4009436096967878,0.022354837100292936,0.010116611465482633,0.01657925295072636,0.15192317742835124,0.8480768225716487,0.3117715618187793,0.4525468658123241,0.7752466546619378,0.010098041051706573,0.8574719018716838,0.08405206988062329,0.9659268206967897,0.48829110990902336,0.7676064683918193,0.02915578159137823,0.7734681952290614,0.013054262827494433 +17091,0.4873764351845601,0.010215157292396259,0.08409888422134035,0.40490942522521345,0.029593987545259742,0.013205367383240562,0.02095948132684744,0.1725542684259934,0.8274457315740066,0.3518951270194162,0.44621791379228143,1.0116374292916581,0.010098041051706573,1.0000266967228497,0.08405206988062329,0.9982112854509438,0.48829110990902336,1.0144527861431456,0.02915578159137823,1.0121385335211492,0.013054262827494433 +17093,0.4606019818581887,0.006266992441422316,0.06326208058282161,0.3971825995123307,0.01756033876334663,0.008085773484139669,0.013606090916369122,0.1373465227561676,0.8626534772438323,0.2775807972416737,0.4604565773535619,0.6211761391472825,0.010098041051706573,0.7583814477037383,0.08405206988062329,0.9429107121271898,0.48829110990902336,0.604678398993561,0.02915578159137823,0.6170456464928022,0.013054262827494433 +17095,0.5112786768156493,0.013393606668430466,0.10108597174758349,0.4118264686032765,0.03961958687897984,0.01749073951406551,0.02619629426333336,0.19771208214112918,0.8022879178588709,0.3919395163743575,0.4414669836788535,1.3269460947018124,0.010098041051706573,1.1995994894855877,0.08405206988062329,1.0466316871490813,0.48829110990902336,1.3517467280777995,0.02915578159137823,1.3353250375283574,0.013054262827494433 +17097,0.47843054365286375,0.00841105389661832,0.07576402197306853,0.4034796468810816,0.02396896977909854,0.010860510381130822,0.017580511963970997,0.15835950061758777,0.8416404993824123,0.31636348170136314,0.453107099772032,0.8330457911926126,0.010098041051706573,0.9046362950228827,0.08405206988062329,0.9795767264422148,0.48829110990902336,0.8224426066857329,0.02915578159137823,0.8296460329445907,0.013054262827494433 +17099,0.5048005341894464,0.012228864619563313,0.09531056213125014,0.4112588785711385,0.03609540109638882,0.015971676307117655,0.02422514199435048,0.18880836226587883,0.8111916377341212,0.3787135474731816,0.44248507626960676,1.2117396698919072,0.010098041051706573,1.1309485905516499,0.08405206988062329,1.033669760324595,0.48829110990902336,1.2309942075147688,0.02915578159137823,1.2189643313987966,0.013054262827494433 +17101,0.5027482491423341,0.012491376000810368,0.0962291002615879,0.4085288443381826,0.03736712606187688,0.01643853806717214,0.024846184988451165,0.19140613701937387,0.8085938629806262,0.3883141997618037,0.43991978510606555,1.2371304009492285,0.010098041051706573,1.139560918138299,0.08405206988062329,1.029479366768039,0.48829110990902336,1.2749640868233771,0.02915578159137823,1.2540214636863478,0.013054262827494433 +17103,0.5040561421975993,0.011927017366877204,0.09476889932095409,0.4108393105056243,0.035147953185159814,0.015577538017476482,0.023662081201664225,0.18801258706575374,0.8119874129342463,0.3708806732694462,0.4431990089270302,1.1813892034864093,0.010098041051706573,1.1236365585439687,0.08405206988062329,1.0323378898226536,0.48829110990902336,1.2007154773434996,0.02915578159137823,1.1901001433131155,0.013054262827494433 +17105,0.501926521599273,0.011830769014095875,0.09412137584428681,0.4094854463776272,0.03519217878804047,0.01558497348780503,0.023570719029550106,0.18752022814891467,0.8124797718510853,0.3739020862408764,0.4428533277712645,1.171105468713443,0.010098041051706573,1.1146681402546745,0.08405206988062329,1.0278828886798879,0.48829110990902336,1.2020548178361432,0.02915578159137823,1.1851851459557188,0.013054262827494433 +17107,0.4990904776625026,0.011933857258318149,0.0933886235071856,0.40745193288520826,0.03548584861392258,0.015653703629239388,0.023911210075997724,0.18711762232886622,0.8128823776711338,0.3799804224675417,0.44112524402467823,1.1824013164241443,0.010098041051706573,1.1071589951037655,0.08405206988062329,1.0218537262230334,0.48829110990902336,1.2094791748649865,0.02915578159137823,1.1940117322084771,0.013054262827494433 +17109,0.4741295559770149,0.010592410505168428,0.08189271785088405,0.3936355738063317,0.031397418246152664,0.013831580483689127,0.022340751323425053,0.17272223766377914,0.8272777623362209,0.38339694993788415,0.440532414966444,1.0486849820180961,0.010098041051706573,0.9741664210154974,0.08405206988062329,0.971292598709574,0.48829110990902336,1.0708414592924527,0.02915578159137823,1.055304145976892,0.013054262827494433 +17111,0.48136926909690436,0.00826120467144592,0.07613235648719535,0.4061653451385343,0.02332236390905367,0.010691710226190379,0.01716188631431488,0.15815790781581687,0.8418420921841832,0.30633970870159843,0.458431669614755,0.8190740275045151,0.010098041051706573,0.9091015109457627,0.08405206988062329,0.9853537791465243,0.48829110990902336,0.8017331564535279,0.02915578159137823,0.8141804331588334,0.013054262827494433 +17113,0.46973960623192773,0.008383463279925079,0.07340796538437233,0.3976693147822726,0.02435725176789386,0.010893880321171747,0.01784704369975108,0.15627374062243352,0.8437262593775665,0.33180665940482834,0.44725408371117426,0.8299482147301107,0.010098041051706573,0.8767450648283195,0.08405206988062329,0.9619353562436825,0.48829110990902336,0.8369385697080163,0.02915578159137823,0.834140847190769,0.013054262827494433 +17115,0.5055825543773036,0.012276519769629412,0.09564357427592379,0.41166867221649817,0.03599317179798217,0.01598526477613799,0.02428192915942221,0.1891749892235154,0.8108250107764846,0.37632608432370845,0.4441193698031955,1.2172976559882764,0.010098041051706573,1.1358480440815129,0.08405206988062329,1.0352052990092435,0.48829110990902336,1.229781924081688,0.02915578159137823,1.2203030291025518,0.013054262827494433 +17117,0.5081020099569454,0.012850833777733453,0.09860884527097358,0.41146564615393955,0.03839439328143461,0.01690533101564303,0.025291838107120226,0.19407292893670958,0.8059270710632904,0.3893605403848731,0.4403072837152373,1.2719254044344583,0.010098041051706573,1.1679862592170012,0.08405206988062329,1.0402021858608617,0.48829110990902336,1.309941657908524,0.02915578159137823,1.2877511352814346,0.013054262827494433 +17119,0.49444870147399966,0.010857296783922794,0.08832852458806845,0.40790874876707495,0.031568734377672186,0.014065730532239478,0.021958388709599472,0.17864042179654335,0.8213595782034566,0.3574013550537279,0.44555889900318063,1.0756645725708576,0.010098041051706573,1.0495333739917185,0.08405206988062329,1.0124710316632812,0.48829110990902336,1.082114648290847,0.02915578159137823,1.0781009229209249,0.013054262827494433 +17121,0.5071956676978635,0.012811384194928997,0.09802100714323962,0.4114285191666368,0.038015177305478695,0.016760946243558044,0.02525925399378754,0.1932607342411898,0.8067392657588102,0.3878268384850048,0.44090143546805133,1.2681350544383618,0.010098041051706573,1.160634424276123,0.08405206988062329,1.0383696245797327,0.48829110990902336,1.2991198738004175,0.02915578159137823,1.2810794126710885,0.013054262827494433 +17123,0.5185189027148877,0.014141467703180702,0.1057670892192823,0.4145890314848739,0.042293240045807395,0.01857418059017942,0.027272810362627256,0.20397923521303002,0.7960207647869699,0.399871456782957,0.4391761087602157,1.4003479784189607,0.010098041051706573,1.252255388065405,0.08405206988062329,1.0618895247965412,0.48829110990902336,1.4428918036438452,0.02915578159137823,1.4180399412633098,0.013054262827494433 +17125,0.5174693038770708,0.014144107191286805,0.10460497548299724,0.41477676902490457,0.041597479518581525,0.01836824657558553,0.027333229401848458,0.2021472089247772,0.7978527910752228,0.39766253303451027,0.4415711429674594,1.401774291028251,0.010098041051706573,1.2413642428338534,0.08405206988062329,1.0594887180421424,0.48829110990902336,1.418867195121957,0.02915578159137823,1.4065366758808366,0.013054262827494433 +17127,0.5120957644053212,0.013105556626852664,0.10037733419888417,0.41350333281125923,0.038708714926651316,0.017111656946972625,0.02559200356220811,0.19601281864818554,0.8039871813518145,0.38563202774398464,0.44206212940412254,1.29939396490105,0.010098041051706573,1.1899675591102894,0.08405206988062329,1.0486492379155097,0.48829110990902336,1.3202365409484496,0.02915578159137823,1.3066573667473373,0.013054262827494433 +17129,0.5085256848500725,0.011735445754285156,0.09526391468261651,0.4141244719430518,0.033895111359998,0.015169177215077836,0.023077390393260254,0.18733353598590197,0.812666464014098,0.3558022098181011,0.44753289210254804,1.1628166195902676,0.010098041051706573,1.1313207785629782,0.08405206988062329,1.041155099308647,0.48829110990902336,1.1616939881299926,0.02915578159137823,1.1631449302412267,0.013054262827494433 +17131,0.5135188673817717,0.012858093314436228,0.10028793555949307,0.41459740567527104,0.038180911867062114,0.016885959124632387,0.02503918381810298,0.19529552257898788,0.8047044774210121,0.38071291082078695,0.44226180829378137,1.2730859438437516,0.010098041051706573,1.1876364518097562,0.08405206988062329,1.0513925857007498,0.48829110990902336,1.3042810514777958,0.02915578159137823,1.2868109655312834,0.013054262827494433 +17133,0.49777895108903136,0.010942939784790873,0.08969990719574636,0.40970568365639176,0.03176370215774443,0.014157652368287367,0.021983532571737147,0.18020028167021246,0.8197997183297876,0.35411075831359046,0.4457179549782277,1.0840004521021345,0.010098041051706573,1.0662503137232964,0.08405206988062329,1.0195420574550225,0.48829110990902336,1.08932207450504,0.02915578159137823,1.0862143650160831,0.013054262827494433 +17135,0.5075470177825838,0.012551968310744854,0.09798441776670437,0.41138008416520355,0.03735287346667396,0.016495918063808464,0.024730651291348337,0.19305485863120098,0.806945141368799,0.38121238374461885,0.44162380381595107,1.2429567135048418,0.010098041051706573,1.1607277107848815,0.08405206988062329,1.0392155607418831,0.48829110990902336,1.2748651732049876,0.02915578159137823,1.2571663778731033,0.013054262827494433 +17137,0.5041101001426278,0.012395332257148242,0.09597630255524633,0.4098001417460311,0.03642203136015389,0.01614155403312945,0.02458854177617396,0.19038758106233494,0.809612418937665,0.37948983645404,0.44318104812760356,1.2292493319316258,0.010098041051706573,1.1400218400270143,0.08405206988062329,1.032000375319754,0.48829110990902336,1.2432580465357952,0.02915578159137823,1.2331456191644126,0.013054262827494433 +17139,0.5070878585318521,0.012928616948257966,0.09835730001663005,0.4107939329706205,0.0386682247321065,0.01699919539127651,0.02549581247259516,0.19396500697413535,0.8060349930258647,0.393140364015366,0.4396166493043565,1.2795999688839754,0.010098041051706573,1.1646073936563777,0.08405206988062329,1.0379699752631364,0.48829110990902336,1.3186668187491293,0.02915578159137823,1.29517371943599,0.013054262827494433 +17141,0.49856937841776144,0.011184586452812242,0.09044909832507457,0.4098532078517287,0.0324147953953186,0.014455077421973722,0.022433360204164903,0.18141727558984866,0.8185827244101513,0.358376103195851,0.4459407269330273,1.107983010543184,0.010098041051706573,1.0750667584598304,0.08405206988062329,1.0208583482747169,0.48829110990902336,1.1115297607752463,0.02915578159137823,1.1088395172512224,0.013054262827494433 +17143,0.49093833676243664,0.010724740994747694,0.08669061137673569,0.4057145617381934,0.03118136067974289,0.013891712500474478,0.021845393182112316,0.1765814663169908,0.8234185336830092,0.35968555515471573,0.4455133514907607,1.0623220864733456,0.010098041051706573,1.0307214044761057,0.08405206988062329,1.0054597915121724,0.48829110990902336,1.06868383330606,0.02915578159137823,1.0639367911764774,0.013054262827494433 +17145,0.5019325376398764,0.012078081869681352,0.0943891224377017,0.4089586055895946,0.035128998085640836,0.015645578239012508,0.024063157822908587,0.18805141201151507,0.8119485879884849,0.3721721018099996,0.4453750203996772,1.1981253121546414,0.010098041051706573,1.1211247026907836,0.08405206988062329,1.0276880140206703,0.48829110990902336,1.2041068458687416,0.02915578159137823,1.1985834960501474,0.013054262827494433 +17147,0.5101537607337203,0.012508852686194314,0.09767788364146496,0.4137373355155618,0.0365997870758945,0.016260058095659974,0.024519769624365133,0.19146753618160403,0.8085324638183959,0.3746988131953919,0.4442664669590179,1.2401771664283818,0.010098041051706573,1.1614632325215488,0.08405206988062329,1.0445554064278837,0.48829110990902336,1.2511210842321199,0.02915578159137823,1.2431814928868956,0.013054262827494433 +17149,0.5139464651126028,0.013789450036285913,0.10281585154432463,0.41286515356718234,0.04097393597060482,0.01802165651928657,0.026830518297785592,0.2000516756580829,0.7999483243419171,0.3985176930907456,0.4398322028963855,1.3670131162048542,0.010098041051706573,1.218956381514312,0.08405206988062329,1.0522551104177253,0.48829110990902336,1.3955552532471516,0.02915578159137823,1.3763031825492025,0.013054262827494433 +17151,0.5274807579637065,0.013665209364898241,0.10620712060346583,0.4209197458148658,0.0383923012390994,0.017377374589952657,0.025906555184404434,0.2013478577180126,0.7986521422819874,0.36148519064404944,0.4526265430595036,1.3556597156277463,0.010098041051706573,1.2663875124181954,0.08405206988062329,1.0797835686227466,0.48829110990902336,1.3160802441724293,0.02915578159137823,1.3331295458378014,0.013054262827494433 +17153,0.5107792611158783,0.013265129805670548,0.09971776680581915,0.4128385827646915,0.0382642306752999,0.01708114887626401,0.02597037666856475,0.1952267337322386,0.8047732662677614,0.3837253069436664,0.4463999033773892,1.3156386088013636,0.010098041051706573,1.1850075498106976,0.08405206988062329,1.0460723384209079,0.48829110990902336,1.3116077721343777,0.02915578159137823,1.3094852115471518,0.013054262827494433 +17155,0.5191931599634347,0.013330707159236897,0.10281304510935675,0.41770769306695354,0.03824508037806114,0.017094122896478034,0.025675814296505253,0.1980246525524288,0.8019753474475713,0.37198665147386584,0.44696266101414406,1.321709027631271,0.010098041051706573,1.222282373632792,0.08405206988062329,1.0634515806055438,0.48829110990902336,1.3102845451832361,0.02915578159137823,1.3145257790656468,0.013054262827494433 +17157,0.5042079081907194,0.011811471450991689,0.09470004187325717,0.4112573047063925,0.03466204649660246,0.015395155082757912,0.023425795706726472,0.18781942991151254,0.8121805700884874,0.36601933653833846,0.4441502057377636,1.1707791089397348,0.010098041051706573,1.1233226909408633,0.08405206988062329,1.0326992758916038,0.48829110990902336,1.1856454247160588,0.02915578159137823,1.1779663925195787,0.013054262827494433 +17159,0.5140886198324464,0.014037653533449223,0.10361059464882713,0.4124974325784865,0.0419409382218892,0.018419185494968824,0.02730590211863555,0.20154228405716562,0.7984577159428343,0.40479391479261206,0.43916961031061896,1.3915624006100678,0.010098041051706573,1.2278681587172668,0.08405206988062329,1.0526379700946618,0.48829110990902336,1.427698300559621,0.02915578159137823,1.404174891342357,0.013054262827494433 +17161,0.5030867302351094,0.012046206537462908,0.09445283659121831,0.41053682244741335,0.035273730516245314,0.01567203149427935,0.02394459208223065,0.1877466268034486,0.8122533731965513,0.37345337407817847,0.44429753430989094,1.1937178352114342,0.010098041051706573,1.1210379072143684,0.08405206988062329,1.030276555401724,0.48829110990902336,1.205954203953668,0.02915578159137823,1.1971592151898465,0.013054262827494433 +17163,0.4859621916085862,0.009919567579471347,0.08294903947792945,0.40438799636513356,0.02885599083914258,0.012856260349760541,0.02041222084919102,0.17069031482338032,0.8293096851766197,0.34787612998002704,0.4455317587750714,0.9821302879949927,0.010098041051706573,0.9862326056247145,0.08405206988062329,0.9951105799547618,0.48829110990902336,0.9897791874592223,0.02915578159137823,0.9855603831414856,0.013054262827494433 +17165,0.5123084725435147,0.013548585037017415,0.10134787763321901,0.4131186892087805,0.039859525712992276,0.017610249511696253,0.026446146732165585,0.19782588628691997,0.80217411371308,0.39329413347208997,0.44180780369787903,1.3428582733206391,0.010098041051706573,1.2033093417392164,0.08405206988062329,1.0492814599985554,0.48829110990902336,1.3603502074868241,0.02915578159137823,1.3478602468877479,0.013054262827494433 +17167,0.49710912254401834,0.010895664923913046,0.08925709447407505,0.4096787252507533,0.03178022029775644,0.01416166962450771,0.02191805466806385,0.17955231643565636,0.8204476835643436,0.3560525971074163,0.4456126953124824,1.079155474809101,0.010098041051706573,1.0599187607529559,0.08405206988062329,1.0181240145108184,0.48829110990902336,1.089077632324663,0.02915578159137823,1.0836259796838847,0.013054262827494433 +17169,0.5151547905270757,0.013862513564247458,0.10345049619250203,0.41347192068503047,0.041125618392229,0.018105307103531147,0.026909414061867035,0.20081439228519576,0.7991856077148043,0.3975391119990562,0.44024400875519193,1.3735860743775237,0.010098041051706573,1.2269055601574839,0.08405206988062329,1.0550431058096896,0.48829110990902336,1.402198728549088,0.02915578159137823,1.384240295181673,0.013054262827494433 +17171,0.5108025291729571,0.013074219283568536,0.09965733667462376,0.4128404458775286,0.038571340312916605,0.017035810826208458,0.02559544743197938,0.19509953648032918,0.8049004635196708,0.38703964605084834,0.4416701801908496,1.2962904934457713,0.010098041051706573,1.182393311692889,0.08405206988062329,1.0456215443826147,0.48829110990902336,1.3149765058210705,0.02915578159137823,1.3022363226005438,0.013054262827494433 +17173,0.5160472672710592,0.013726009269458397,0.1031972665221638,0.41448021631094056,0.040208329824014274,0.017818583645459372,0.02659835666225642,0.1999763840779305,0.8000236159220695,0.389625919165007,0.4431565231246509,1.36129069299593,0.010098041051706573,1.225091944283911,0.08405206988062329,1.0568996314167887,0.48829110990902336,1.3731327013899293,0.02915578159137823,1.3631516063532967,0.013054262827494433 +17175,0.5147073324999113,0.013960029370368155,0.10313631361189496,0.41349040539113247,0.040922907676619366,0.01808153533724273,0.02712226636167178,0.2003785590365817,0.7996214409634184,0.3967846652985242,0.441843856260813,1.3844892674052172,0.010098041051706573,1.2248101453427496,0.08405206988062329,1.0542732766877987,0.48829110990902336,1.3967524278133152,0.02915578159137823,1.3837516012414892,0.013054262827494433 +17177,0.5157101358551982,0.01368296070967255,0.10291900222767332,0.41427030106566665,0.040414546296074466,0.01784713794375034,0.026532270278113113,0.1995675381811209,0.8004324618188791,0.39268303638108554,0.4416018384322148,1.357094109640359,0.010098041051706573,1.221088320384505,0.08405206988062329,1.0560481941721624,0.48829110990902336,1.3769516422735357,0.02915578159137823,1.3626603635910126,0.013054262827494433 +17179,0.5010846517167935,0.011740845385112053,0.09306917503542589,0.4096818417764781,0.03439682844632051,0.015280121403094747,0.02343086212057404,0.1857354335570976,0.8142645664429025,0.3695834677080536,0.4442305320951557,1.162952780057058,0.010098041051706573,1.1043910858282668,0.08405206988062329,1.0259948991780963,0.48829110990902336,1.1762424447900814,0.02915578159137823,1.1679692067181602,0.013054262827494433 +17181,0.5152009113478135,0.012772556313556109,0.09993646424332256,0.41653398867741936,0.03700882288593053,0.01650494039081978,0.02479140861793492,0.1939757132453036,0.8060242867546964,0.37032351670780006,0.445973124886779,1.2657553767565917,0.010098041051706573,1.1864585878538954,0.08405206988062329,1.0551348080914198,0.48829110990902336,1.2672035264642365,0.02915578159137823,1.2656197969640366,0.013054262827494433 +17183,0.5015040696907076,0.012111570460169242,0.09375368947948087,0.4096307424368572,0.03521723210724691,0.01566144871063153,0.024150492871650685,0.18694502227529589,0.8130549777247041,0.3756356928753681,0.4447098131658325,1.2007056755872632,0.010098041051706573,1.1129880772702299,0.08405206988062329,1.0268887643431808,0.48829110990902336,1.2048940503607715,0.02915578159137823,1.1994464884534461,0.013054262827494433 +17185,0.508988539073107,0.013081981198026846,0.0993686844252317,0.41172509750689956,0.03874449034588438,0.017101062941054127,0.025701917025184443,0.19522774443249138,0.8047722555675086,0.3899064435640891,0.44138051083876706,1.2967143116361934,0.010098041051706573,1.1788474641419868,0.08405206988062329,1.0425005171902981,0.48829110990902336,1.3193475107018195,0.02915578159137823,1.3034881954978716,0.013054262827494433 +17187,0.5028332869790095,0.012466644934248157,0.09562559507514055,0.4088987048627881,0.036478781334246896,0.016186962565132093,0.024792799635734077,0.1901735576211612,0.8098264423788388,0.3814750779389414,0.4437363851827884,1.235539030637446,0.010098041051706573,1.134671703312374,0.08405206988062329,1.0297542522591623,0.48829110990902336,1.2468731126955963,0.02915578159137823,1.237757006168279,0.013054262827494433 +17189,0.5093878931745983,0.012885465022507729,0.09908624211309694,0.4120860868398334,0.038101593498862524,0.01683746318325057,0.025295978163523202,0.19452021424296795,0.805479785757032,0.3845296045779333,0.4419096850569579,1.2781899942068322,0.010098041051706573,1.1758292773651382,0.08405206988062329,1.042930393978242,0.48829110990902336,1.2988133048333013,0.02915578159137823,1.2853381292077728,0.013054262827494433 +17191,0.5152147882080729,0.013964343281004737,0.10354397379587285,0.4134007583112436,0.041265513922773105,0.018205647899338775,0.027103925587176947,0.2009724413307328,0.7990275586692672,0.3985312945794814,0.44118311317799114,1.3843319864446881,0.010098041051706573,1.2292006631092554,0.08405206988062329,1.0549989613486828,0.48829110990902336,1.406147650560061,0.02915578159137823,1.3901518523386538,0.013054262827494433 +17193,0.522860682787309,0.014722278444920241,0.10863220879106092,0.4165715109572341,0.04450319939744373,0.019504138188302215,0.02815717251187735,0.20776511290150054,0.7922348870984994,0.4096685494358262,0.43826373052681095,1.4579427023959153,0.010098041051706573,1.2851023833196331,0.08405206988062329,1.0704604602578658,0.48829110990902336,1.515736148985582,0.02915578159137823,1.4822201555004435,0.013054262827494433 +17195,0.5087237080723653,0.01278200231526136,0.09822749306150307,0.4124827522081159,0.037564447473754224,0.01663956108526316,0.025125627354176967,0.19308613202577601,0.806913867974224,0.3824229480257023,0.44296035757983654,1.2669658747682682,0.010098041051706573,1.1651030987485638,0.08405206988062329,1.0416095565894952,0.48829110990902336,1.2823022857491853,0.02915578159137823,1.270999047256443,0.013054262827494433 +17197,0.4724707885634095,0.007605366075521944,0.07114680922442343,0.40206073598379666,0.021599672707268862,0.00986286332968615,0.016097008025928446,0.15058456722954616,0.8494154327704538,0.3035929923313283,0.456620961963328,0.7541205175754151,0.010098041051706573,0.8505264296756496,0.08405206988062329,0.9672941067020573,0.48829110990902336,0.7418537535033167,0.02915578159137823,0.7510803846319478,0.013054262827494433 +17199,0.5048740150983237,0.012104574838535487,0.09502784860484381,0.41152288993299324,0.03497058018396493,0.015634879649929302,0.02397543639907499,0.1882209140558308,0.8117790859441691,0.3680034926328153,0.4470866530575426,1.2005873224196337,0.010098041051706573,1.1288706448024373,0.08405206988062329,1.03394700723968,0.48829110990902336,1.1988109307276522,0.02915578159137823,1.1979228628051395,0.013054262827494433 +17201,0.49209494633606143,0.010547600699607966,0.08652783994362673,0.4075802186306562,0.03062954781731369,0.013645662992554614,0.021434076448338082,0.17583566055265917,0.8241643394473408,0.3539848889937502,0.4455065113576784,1.0444920195217335,0.010098041051706573,1.0281205782248555,0.08405206988062329,1.0079265294771043,0.48829110990902336,1.0496203701245619,0.02915578159137823,1.0465334343450872,0.013054262827494433 +17203,0.49756528478276496,0.011264964702510483,0.09031526659431097,0.40898484068765406,0.03321755577192473,0.014737348330697666,0.02264017415810816,0.1815144049564114,0.8184855950435885,0.367795579025807,0.44366143107836914,1.1151759085863007,0.010098041051706573,1.0711843992635615,0.08405206988062329,1.0183278759834313,0.48829110990902336,1.1356637476505111,0.02915578159137823,1.1231878668792175,0.013054262827494433 +18001,0.48256002107122864,0.010373215830864315,0.08256749981996034,0.4021383570041129,0.030808509304012403,0.01361023378867101,0.021496218870011134,0.17110306742085643,0.8288969325791435,0.3731311880726777,0.44176865730074305,1.0268086860904801,0.010098041051706573,0.9784209362884875,0.08405206988062329,0.987591215348991,0.48829110990902336,1.0523633380131363,0.02915578159137823,1.0352076464501354,0.013054262827494433 +18003,0.4815054812950776,0.00940545638202045,0.07959502834695523,0.40331277975065427,0.027226907383881345,0.012190381704134438,0.01953343574973048,0.16530451145202554,0.8346954885479745,0.3420679400376502,0.44773288175032655,0.9312014406862105,0.010098041051706573,0.9481390229779223,0.08405206988062329,0.9859217249492334,0.48829110990902336,0.9345587127473873,0.02915578159137823,0.9328412439170137,0.013054262827494433 +18005,0.49280381845044274,0.010470248086788187,0.08619403998001124,0.40846723060651113,0.02994291936843816,0.013503486237159436,0.021246280354950405,0.17490538172175116,0.8250946182782488,0.34738967306071333,0.45097427111242244,1.037848311556695,0.010098041051706573,1.0249990112526455,0.08405206988062329,1.0092261381853094,0.48829110990902336,1.0286052511542527,0.02915578159137823,1.0326861989056355,0.013054262827494433 +18007,0.5006770072940997,0.011683148242323468,0.09203842974865198,0.41049545183803815,0.034349542368681776,0.015225939420047392,0.023334700959136992,0.1838279537661857,0.8161720462338143,0.37320869622055747,0.4432646949593615,1.1575441535169984,0.010098041051706573,1.0928701354393608,0.08405206988062329,1.0246013087418362,0.48829110990902336,1.1727405660565473,0.02915578159137823,1.1623238079351972,0.013054262827494433 +18009,0.5107636120157207,0.012683602520765648,0.09815209767318492,0.41400434625466254,0.036192949275789456,0.016262720028416493,0.024832627505921977,0.1921673654194534,0.8078326345805467,0.36874351270922806,0.44933392701697045,1.2574043088245346,0.010098041051706573,1.1666278323397012,0.08405206988062329,1.046180998263425,0.48829110990902336,1.2402808297288823,0.02915578159137823,1.2459512034381692,0.013054262827494433 +18011,0.48668474114473537,0.009391365941996771,0.08122560454147051,0.40656071526914317,0.02710135876253167,0.012142875999637216,0.019296610614722084,0.16689572874304437,0.8331042712569556,0.3336553653927538,0.4480541402383506,0.9296628780645377,0.010098041051706573,0.9658921542201966,0.08405206988062329,0.9960763796987717,0.48829110990902336,0.9309524912392056,0.02915578159137823,0.9313532444547561,0.013054262827494433 +18013,0.5230602375668147,0.01272181078453759,0.10217031425743409,0.42141477598681965,0.03534495994976951,0.01617163076733531,0.024321884690981753,0.19533183163131004,0.8046681683686899,0.3459415800631909,0.4575371082699662,1.2611919413074366,0.010098041051706573,1.2154758277732178,0.08405206988062329,1.071985266401689,0.48829110990902336,1.2152193411184733,0.02915578159137823,1.2385033361259188,0.013054262827494433 +18015,0.502317046949293,0.011608532604880862,0.0927190967384394,0.4114513274677085,0.03365196742611005,0.015016946529204713,0.02310997143215149,0.18458281935989926,0.8154171806401007,0.3629453759783948,0.44624275125005897,1.1505339170969084,0.010098041051706573,1.1014838049521778,0.08405206988062329,1.0283156563348652,0.48829110990902336,1.1534531213823205,0.02915578159137823,1.1503270188340826,0.013054262827494433 +18017,0.49582251978612646,0.011260843948750047,0.08969928807621563,0.4082771769224669,0.03300275541151853,0.014641063420437852,0.022711441089056268,0.18091007265040626,0.8190899273495937,0.3679266147962821,0.4436315464534779,1.1149300487496296,0.010098041051706573,1.0637768880272014,0.08405206988062329,1.0149556955693626,0.48829110990902336,1.128647072582765,0.02915578159137823,1.1201712122768304,0.013054262827494433 +18019,0.49173931272326454,0.009893272615065684,0.08438222613165547,0.4086198097364546,0.028269780263021998,0.012783925010739019,0.020118937736087226,0.17159951207550317,0.8284004879244968,0.33502055538229947,0.4522116865358484,0.9802467921693705,0.010098041051706573,1.0055729649164666,0.08405206988062329,1.0068520542401567,0.48829110990902336,0.9706554001617818,0.02915578159137823,0.97730615078874,0.013054262827494433 +18021,0.4998553297515039,0.01148108302283824,0.09167124499060761,0.41021690134227107,0.03363632317816405,0.014939066836896659,0.02296881185311338,0.18339555374188107,0.8166044462581189,0.3669233812806877,0.4441349536858645,1.1370894226036168,0.010098041051706573,1.088310802893818,0.08405206988062329,1.0234284583873745,0.48829110990902336,1.1502270651402648,0.02915578159137823,1.1422023855146168,0.013054262827494433 +18023,0.4909737998593144,0.010952018854169215,0.08705370236192496,0.40595222778438944,0.03188392729223176,0.014171637285229757,0.02230672768548434,0.17730824411988924,0.8226917558801108,0.366255844693137,0.44447590020325234,1.0848329120719429,0.010098041051706573,1.03452259592156,0.08405206988062329,1.0053386774520008,0.48829110990902336,1.091446374913324,0.02915578159137823,1.0848311813903586,0.013054262827494433 +18025,0.5039981295546243,0.01154838822114886,0.09257452298185867,0.4126821332436364,0.03280893455561841,0.014844984115476426,0.02291355372956245,0.18368029076549433,0.8163197092345057,0.35440565610095337,0.45246772918855044,1.144957448642168,0.010098041051706573,1.102405219317446,0.08405206988062329,1.031834834262693,0.48829110990902336,1.1257203514028873,0.02915578159137823,1.1331962235983535,0.013054262827494433 +18027,0.48833835491227473,0.010729631575942393,0.08522648347372361,0.4050145980174209,0.031185502304151763,0.013862746975363632,0.02197171585645749,0.17452342748919183,0.8254765725108082,0.36591328226943265,0.4445253708008438,1.0623285371770574,0.010098041051706573,1.0124140139839266,0.08405206988062329,0.9996435986794806,0.48829110990902336,1.0677994314067116,0.02915578159137823,1.0615930759047858,0.013054262827494433 +18029,0.49527332459826634,0.010020944489725453,0.085839109446124,0.4109091645328143,0.028585318360153773,0.012925928090672691,0.020233160140118174,0.17331664190828594,0.8266833580917141,0.33301042548787213,0.45218765548858336,0.9926435348984006,0.010098041051706573,1.0218260281812483,0.08405206988062329,1.0144290539008214,0.48829110990902336,0.9811462847663524,0.02915578159137823,0.9887664096066591,0.013054262827494433 +18031,0.49355102337298495,0.01080632751370044,0.08764906337320144,0.40795850725044563,0.0316054082246352,0.014046927702199076,0.021895056441882634,0.17758865694208792,0.8224113430579121,0.3605903703735242,0.4444469630754535,1.070061938353589,0.010098041051706573,1.0407864949545906,0.08405206988062329,1.0104694514405348,0.48829110990902336,1.0816008527920684,0.02915578159137823,1.074493614438514,0.013054262827494433 +18033,0.4873526367960219,0.009938698767799372,0.08324022685299372,0.40583831580763907,0.02871099724766219,0.012855275612560547,0.02039323893503247,0.17080081355512053,0.8291991864448794,0.34491733544127895,0.4477474433113707,0.9840454527957981,0.010098041051706573,0.990125877941969,0.08405206988062329,0.9981904788611321,0.48829110990902336,0.9851163202809282,0.02915578159137823,0.9846047658856547,0.013054262827494433 +18035,0.4859083443003003,0.010825569316234383,0.0859134218944212,0.40163519980630874,0.031346732780285054,0.01399339703646076,0.022279035631345284,0.17680993319457203,0.823190066805428,0.3648642096785178,0.44640687546427954,1.0724112610277872,0.010098041051706573,1.0210487180991885,0.08405206988062329,0.9959455127763719,0.48829110990902336,1.0739817924777748,0.02915578159137823,1.0710869688562115,0.013054262827494433 +18037,0.49721511464892343,0.011092028012030797,0.08939147554888482,0.4096347886648176,0.03197215899859944,0.014301669063601623,0.02230830818540728,0.17978430847180277,0.8202156915281973,0.3576645178109301,0.4473163374493451,1.0984002952939085,0.010098041051706573,1.062975404462016,0.08405206988062329,1.0180128606794872,0.48829110990902336,1.0966335908567522,0.02915578159137823,1.096234944604375,0.013054262827494433 +18039,0.479364440182343,0.009186726839657175,0.07790195400686387,0.4024332808360275,0.026366106482471546,0.011842106741096488,0.019164389490723764,0.16251091544719326,0.8374890845528067,0.33845244087392795,0.449141277229129,0.9093756770180237,0.010098041051706573,0.9283763897032393,0.08405206988062329,0.9814114101800753,0.48829110990902336,0.9051326143883933,0.02915578159137823,0.9066835302091074,0.013054262827494433 +18041,0.5056004363646018,0.012239945664545723,0.09569822879376974,0.4116548421805625,0.03548140868462843,0.015813640519071623,0.024208732398559828,0.18927639675682403,0.8107236032431759,0.37076348362821926,0.44568806891600526,1.2134967328811925,0.010098041051706573,1.1356126805991777,0.08405206988062329,1.035565090237268,0.48829110990902336,1.214399159864089,0.02915578159137823,1.2124296930239227,0.013054262827494433 +18043,0.4938572111840892,0.010164581814689237,0.08587803408044725,0.4096020633761634,0.029342277078819735,0.013159809804060407,0.020582025703984926,0.17389243719767317,0.8261075628023269,0.34167383304714466,0.4484931339415239,1.0064409825873997,0.010098041051706573,1.0214053321305787,0.08405206988062329,1.011339378429196,0.48829110990902336,1.0076225775286893,0.02915578159137823,1.0081477743308267,0.013054262827494433 +18045,0.5076780212263492,0.012726193417695361,0.09761035768773679,0.4118249504686743,0.03738014974885204,0.01654529521885766,0.025067450008873567,0.19226823617841243,0.8077317638215875,0.38295269717619596,0.4426224969675455,1.261866940680281,0.010098041051706573,1.1593981893285599,0.08405206988062329,1.0394101354221332,0.48829110990902336,1.2754468679829651,0.02915578159137823,1.2647057215038946,0.013054262827494433 +18047,0.49595054605639155,0.010721297602654424,0.08810198580946334,0.4095047176311639,0.03108800686263357,0.013871441207001827,0.021617674761941628,0.1776426833482018,0.8223573166517982,0.35286386086537336,0.44619911685862035,1.0619074442792966,0.010098041051706573,1.0478662378641639,0.08405206988062329,1.0152743333206942,0.48829110990902336,1.0659249473118426,0.02915578159137823,1.0627044444159703,0.013054262827494433 +18049,0.5029565921478416,0.011853892214066391,0.0937735735090263,0.410779331937825,0.03463442682114179,0.015406436919557346,0.02356842001701411,0.18644466535088583,0.8135553346491142,0.36934101501216654,0.4448301396503216,1.1735893347065462,0.010098041051706573,1.1123763262929178,0.08405206988062329,1.0299211375448978,0.48829110990902336,1.184520371052413,0.02915578159137823,1.1774449964727116,0.013054262827494433 +18051,0.5011222280242151,0.011620399030627615,0.09229692513411299,0.41056100908297,0.03361717577036728,0.015008248717566439,0.023188751926737715,0.1841804653088608,0.8158195346911392,0.36422855605990667,0.4464458531580705,1.1519785543186407,0.010098041051706573,1.0977107623057756,0.08405206988062329,1.0261163054154077,0.48829110990902336,1.1523919153421507,0.02915578159137823,1.150293302344794,0.013054262827494433 +18053,0.4994338036613144,0.011920965668780151,0.09296476874257337,0.40841063156957297,0.03448191870733422,0.01539677590298148,0.023868960373503723,0.18614032142208864,0.8138596785779113,0.37091383298997194,0.4465173772278114,1.1821509578471743,0.010098041051706573,1.104772345914221,0.08405206988062329,1.0231287493001262,0.48829110990902336,1.1820676417390727,0.02915578159137823,1.1792543193531277,0.013054262827494433 +18055,0.5050832323956285,0.011902503845364017,0.09443029820638146,0.41216659248637966,0.03445694366001688,0.015373704807247056,0.02356543057054181,0.1869598754219083,0.8130401245780917,0.3648928819933381,0.44617145847112327,1.179891432256116,0.010098041051706573,1.1221991057194993,0.08405206988062329,1.0339953793398686,0.48829110990902336,1.1806182522191826,0.02915578159137823,1.1791189355860232,0.013054262827494433 +18057,0.4716373870834622,0.007253801047212885,0.06993597120907721,0.40215821163044874,0.020588978822995062,0.009404474715546078,0.015380038236725355,0.1482833488700953,0.8517166511299047,0.29439755346277013,0.4567722759053291,0.7191254157436624,0.010098041051706573,0.8354518442361758,0.08405206988062329,0.9656458496784324,0.48829110990902336,0.7074781370534069,0.02915578159137823,0.7173655599890046,0.013054262827494433 +18059,0.49216004907114774,0.009871407778667001,0.08431158462372683,0.409551732388279,0.028017693076213067,0.012770076790353866,0.020057312244862787,0.17130928197615358,0.8286907180238464,0.3323113093088322,0.4557861618234237,0.978759013838363,0.010098041051706573,1.004067421258279,0.08405206988062329,1.0079707222893732,0.48829110990902336,0.9620527828749001,0.02915578159137823,0.9720226558545817,0.013054262827494433 +18061,0.4967839606476936,0.010340586389149172,0.08725800710750722,0.41113685212668627,0.02948907252154484,0.013332292620618677,0.020815056862277505,0.17564578170708767,0.8243542182929123,0.3379526246251819,0.45210959452448185,1.024571529427745,0.010098041051706573,1.0387255716555939,0.08405206988062329,1.0175701732636733,0.48829110990902336,1.0122225405751402,0.02915578159137823,1.0193709048148278,0.013054262827494433 +18063,0.4806051115429353,0.008557930978710524,0.07676626842954373,0.4045024600268281,0.024409301559974735,0.011075796677481927,0.01780657503045719,0.1597283644842919,0.840271635515708,0.31796910360932357,0.45375311744452024,0.8481616759614138,0.010098041051706573,0.9159453143584784,0.08405206988062329,0.9836828458158612,0.48829110990902336,0.837834893225359,0.02915578159137823,0.8455754902706994,0.013054262827494433 +18065,0.5060534098784358,0.012079635653916263,0.09560253164685029,0.41202908151477075,0.03516334229602944,0.01565804636437816,0.0238702781526915,0.1889178687083957,0.8110821312916043,0.3678076478761107,0.4452945977819131,1.1983820527932219,0.010098041051706573,1.135704049184179,0.08405206988062329,1.0362369220257501,0.48829110990902336,1.204367294029249,0.02915578159137823,1.2000491727698335,0.013054262827494433 +18067,0.5031623659336281,0.011848910228069085,0.09355338267173532,0.4111109330449475,0.03408543677053191,0.015240392517589768,0.023548880103708054,0.18593080286945768,0.8140691971305423,0.36434210925469745,0.4471232867042395,1.1750179451249916,0.010098041051706573,1.1114811750525169,0.08405206988062329,1.0303585419199015,0.48829110990902336,1.1685539531271631,0.02915578159137823,1.1701638466458726,0.013054262827494433 +18069,0.4952259357017368,0.01114780701393215,0.08930542451722867,0.4078276567991985,0.03235085486553449,0.014413389157920585,0.022510547631427402,0.18033268873667246,0.8196673112633275,0.3622496062296127,0.44553348645126917,1.1045922513097086,0.010098041051706573,1.0611511953973376,0.08405206988062329,1.0141411174024877,0.48829110990902336,1.1089160799446962,0.02915578159137823,1.1050244470954032,0.013054262827494433 +18071,0.495183897685024,0.010704314964993763,0.08766259045328542,0.4092023746582296,0.030451398899058055,0.013776010443671402,0.02161684783175755,0.17703037369168603,0.8229696263083139,0.3473705116583946,0.45239335274339504,1.0610708900961718,0.010098041051706573,1.042695877355754,0.08405206988062329,1.0140988798754402,0.48829110990902336,1.0448039482472553,0.02915578159137823,1.0517947149757778,0.013054262827494433 +18073,0.4912192173032307,0.01051247828575192,0.0858804084421067,0.4071117498863147,0.030056631773285762,0.01352173647178084,0.021400787907820278,0.17483112512084914,0.8251688748791508,0.3499824036531847,0.4498753078446706,1.0415254575231452,0.010098041051706573,1.0213104763879244,0.08405206988062329,1.0057603126294912,0.48829110990902336,1.0318029161440698,0.02915578159137823,1.0355561879182766,0.013054262827494433 +18075,0.49655580670795246,0.011434313521591912,0.09015493728253458,0.4081064933611368,0.033046114792246714,0.014736405751983025,0.023027247626804942,0.18156053370967604,0.8184394662903239,0.3665480315147269,0.44593459305662414,1.1326950595098628,0.010098041051706573,1.0708405696152867,0.08405206988062329,1.016372902176543,0.48829110990902336,1.1316956541376881,0.02915578159137823,1.1304649995648028,0.013054262827494433 +18077,0.4971414488949395,0.010972518443523467,0.08939848515321971,0.4092649956158714,0.03148884529507441,0.01412187171279838,0.022071220309458205,0.17982504848858866,0.8201749515114114,0.35223018870068995,0.4484721996143622,1.0875883508229,0.010098041051706573,1.0634372217810777,0.08405206988062329,1.0179694822169205,0.48829110990902336,1.0798787997757298,0.02915578159137823,1.0829479441214653,0.013054262827494433 +18079,0.4882459352213835,0.009510929395804016,0.08178111526822243,0.4077467621229002,0.026528600269389493,0.012165560865409217,0.019479792272088268,0.16749983843929134,0.8325001615607086,0.3243854058774089,0.4585828404767616,0.9441428501539196,0.010098041051706573,0.9764791708897836,0.08405206988062329,1.0000588756715425,0.48829110990902336,0.9123743170151983,0.02915578159137823,0.9298967541858856,0.013054262827494433 +18081,0.4844769224874266,0.009525871313621145,0.08097897393119846,0.4049428192482727,0.027340354892277256,0.012295367671610588,0.019662177642462145,0.1671472265705289,0.8328527734294711,0.33762288610258545,0.4497149989477138,0.9433730329485072,0.010098041051706573,0.9638351496012001,0.08405206988062329,0.9923391687176971,0.48829110990902336,0.9387102803912428,0.02915578159137823,0.9417688912126012,0.013054262827494433 +18083,0.4969604737620289,0.011783598737179416,0.09188035563120339,0.4073533653114581,0.03454468786627654,0.01532193044086543,0.023711339954215413,0.18488463465849114,0.8151153653415089,0.3759746860899704,0.4435394090164327,1.1670032267521786,0.010098041051706573,1.0904172567455601,0.08405206988062329,1.0181391984752524,0.48829110990902336,1.180448936262179,0.02915578159137823,1.1710698131470874,0.013054262827494433 +18085,0.4906215068827269,0.010282222429926997,0.08483610617524007,0.407433363062277,0.029482729526472892,0.013232231964556942,0.020957545247572595,0.17291558764772702,0.8270844123522729,0.34752572761381173,0.44881298906451533,1.0186609315200132,0.010098041051706573,1.0094734513152686,0.08405206988062329,1.0045727191693432,0.48829110990902336,1.0116397862244058,0.02915578159137823,1.0140137591610583,0.013054262827494433 +18087,0.46903992226908353,0.00850842079572981,0.07204265863582426,0.39853396221020393,0.02404659039560442,0.010920914977194255,0.01814007804403612,0.153596005831022,0.846403994168978,0.33378266225792647,0.45415648528660163,0.8429230320401342,0.010098041051706573,0.8610420386881432,0.08405206988062329,0.9602733352084938,0.48829110990902336,0.827168010606242,0.02915578159137823,0.8336272813909923,0.013054262827494433 +18089,0.4895892255520159,0.01034048279351677,0.0851032164766006,0.4061915049811683,0.029922039275349376,0.013362044737279517,0.021120731939837503,0.173825754397773,0.826174245602227,0.35159704314556117,0.4465619677295039,1.0241013731119049,0.010098041051706573,1.0119351133190022,0.08405206988062329,1.0025341579588747,0.48829110990902336,1.0260949946694573,0.02915578159137823,1.024115116926779,0.013054262827494433 +18091,0.49774994155174834,0.01092037896205077,0.08963500251874135,0.409579966129747,0.031464666653486274,0.014105574653606711,0.021939488185586133,0.1800803878335011,0.8199196121664989,0.3510310232535273,0.44829887470121405,1.0822976666221868,0.010098041051706573,1.0655546985031183,0.08405206988062329,1.0192952629176584,0.48829110990902336,1.079023581813697,0.02915578159137823,1.0807637134355512,0.013054262827494433 +18093,0.5071461763642322,0.012255405212551002,0.09612284457276095,0.4125927058399492,0.03556174243192274,0.01584200109139054,0.024165429581685684,0.189536762875494,0.810463237124506,0.3699614029316829,0.4454787647629334,1.2154295319610113,0.010098041051706573,1.1417699807489354,0.08405206988062329,1.0383985226150174,0.48829110990902336,1.2177206257570825,0.02915578159137823,1.2148994937850435,0.013054262827494433 +18095,0.5000324734960113,0.011543059409969515,0.0919217375904218,0.4099118133561145,0.03364089823922828,0.014964076356270279,0.023084619543337702,0.18383153587554957,0.8161684641244504,0.3659732629198433,0.4448179786953737,1.14410286501686,0.010098041051706573,1.0910183451550561,0.08405206988062329,1.0238709721090813,0.48829110990902336,1.152046261285951,0.02915578159137823,1.146445335978311,0.013054262827494433 +18097,0.4771935801085236,0.008812983696562984,0.07658312895346137,0.40191963792765983,0.025419096885781842,0.011397534834280052,0.018468361821964853,0.16048650305824483,0.8395134969417551,0.33191509975034733,0.4483847276515657,0.8720183217755157,0.010098041051706573,0.913310662714255,0.08405206988062329,0.9767509387785945,0.48829110990902336,0.8729162047269938,0.02915578159137823,0.8729398008214921,0.013054262827494433 +18099,0.49401662859715956,0.010989415287276766,0.0881473015688588,0.40765081109381607,0.032115645660220425,0.014261664273215381,0.022245031140921297,0.17842982698612267,0.8215701730138774,0.3643406557957122,0.44407216420625734,1.0881095165743928,0.010098041051706573,1.0460264443663827,0.08405206988062329,1.0108776951748037,0.48829110990902336,1.0988677117007948,0.02915578159137823,1.0919577682355923,0.013054262827494433 +18101,0.5102968693276981,0.012146281794437722,0.09584154404295508,0.41527751306649147,0.03418509681224757,0.015442099482467473,0.023802383523222687,0.18781526951012584,0.8121847304898742,0.356683494132004,0.45172022086931746,1.2045963787555038,0.010098041051706573,1.1437206202401655,0.08405206988062329,1.0450145080568984,0.48829110990902336,1.1723481186623381,0.02915578159137823,1.1852119119469862,0.013054262827494433 +18103,0.49897796944923034,0.011012912603937828,0.09014230319820138,0.41027918093923255,0.031785483535999554,0.01422707645135297,0.022070939556898338,0.18065387395299246,0.8193461260470075,0.35261450404823663,0.4475966657936693,1.0915527677864132,0.010098041051706573,1.070371422991173,0.08405206988062329,1.0216152285638322,0.48829110990902336,1.0891129806459576,0.02915578159137823,1.090652102507989,0.013054262827494433 +18105,0.4577056152194115,0.008016774176277941,0.06952451968962275,0.3889861532536686,0.023228467336392816,0.01041402361856656,0.01751513180024003,0.15189789545469004,0.84810210454531,0.3341046790411686,0.44833020912449795,0.7934066491757945,0.010098041051706573,0.8288695512821918,0.08405206988062329,0.9383272832022941,0.48829110990902336,0.797391442386127,0.02915578159137823,0.7949959564371403,0.013054262827494433 +18107,0.4983730175074455,0.011471047909786827,0.09090261172662517,0.40938453219967635,0.03297456704038409,0.014751193254927318,0.02301699230660186,0.18239874257491703,0.8176012574250829,0.36274609072344083,0.4473506274354253,1.1371146474445353,0.010098041051706573,1.0802944614989571,0.08405206988062329,1.020477101964599,0.48829110990902336,1.13036270059553,0.02915578159137823,1.1318145483323807,0.013054262827494433 +18109,0.49337724007706557,0.009837420995652126,0.08455755513805524,0.4102363778006398,0.027841525366379807,0.012715047073670813,0.01993894366532903,0.17138519629492302,0.828614803705077,0.3292612389386563,0.456693622434385,0.975385213299909,0.010098041051706573,1.0082850481332815,0.08405206988062329,1.0104585137633246,0.48829110990902336,0.9555966527315946,0.02915578159137823,0.966844897005097,0.013054262827494433 +18111,0.5080572747835208,0.011845347329533858,0.09502518467117096,0.41422038988609844,0.033815667889520874,0.015256449322740132,0.023314984190672336,0.1870363626062838,0.8129636373937161,0.35586005969404844,0.45116510407496485,1.1745921467033644,0.010098041051706573,1.1300350802978776,0.08405206988062329,1.0404231079997897,0.48829110990902336,1.1606347510425552,0.02915578159137823,1.1669458240593271,0.013054262827494433 +18113,0.48654221823007837,0.00987252818988391,0.08244242031134777,0.4054711868014076,0.02829001723415414,0.012722689587761283,0.02029120561376514,0.16944556345234157,0.8305544365476585,0.3431487955753304,0.44972364217584704,0.9780092501107243,0.010098041051706573,0.9816696733537493,0.08405206988062329,0.9963826919086496,0.48829110990902336,0.9711515947452639,0.02915578159137823,0.974395223248965,0.013054262827494433 +18115,0.5084620980607695,0.011591089238530384,0.09457176939669207,0.4148075235094819,0.0329291379470988,0.014951561479525408,0.02279636826960711,0.18599571090427514,0.8140042890957249,0.3481920467087147,0.4540526236534141,1.1488164356400035,0.010098041051706573,1.1249155281846295,0.08405206988062329,1.040849033877023,0.48829110990902336,1.1314132720808885,0.02915578159137823,1.1405165153367518,0.013054262827494433 +18117,0.5040115548399824,0.011820592377352477,0.09366841419752187,0.4118985818311721,0.033881823707362604,0.015234170883053713,0.02345301861403827,0.18584576741948003,0.81415423258052,0.3617209066432449,0.4496266498117482,1.1719014304928417,0.010098041051706573,1.1111699620454845,0.08405206988062329,1.0323020855215792,0.48829110990902336,1.1621441941026482,0.02915578159137823,1.166140969419788,0.013054262827494433 +18119,0.5032921744670211,0.010782300515130027,0.09051937465485763,0.4136415005100118,0.030479808989587222,0.013915547014296512,0.021423540961168972,0.1798545243639369,0.8201454756360631,0.3367213826410538,0.4565496791351436,1.068751297773998,0.010098041051706573,1.0777722550190716,0.08405206988062329,1.0305237189096603,0.48829110990902336,1.0480546599102523,0.02915578159137823,1.0606264795665803,0.013054262827494433 +18121,0.5072902763686888,0.011809081389158755,0.09483776298582186,0.41364613706896536,0.03373525575239271,0.015210783013347013,0.023278745797556233,0.18694969606887477,0.8130503039311252,0.3557154311773053,0.45088684446295246,1.1715038432398184,0.010098041051706573,1.1284107395652097,0.08405206988062329,1.0386780616698512,0.48829110990902336,1.1569470389274332,0.02915578159137823,1.163372028131079,0.013054262827494433 +18123,0.5032244093816329,0.01166939409930183,0.09348571192848662,0.4111822705594643,0.03343655175958696,0.01502451862304838,0.023189244960595802,0.18577340483813728,0.8142265951618627,0.35766483529766324,0.4493441408395391,1.1579756839227877,0.010098041051706573,1.1113724377809326,0.08405206988062329,1.0308106912825465,0.48829110990902336,1.1467795214683225,0.02915578159137823,1.1501697205005714,0.013054262827494433 +18125,0.5118706908736916,0.01253583021135228,0.09831659319408784,0.4148002429459334,0.036110592606980844,0.0161169226306091,0.024490228557441672,0.19207310546785786,0.8079268945321422,0.3672888922798061,0.4463211890766201,1.2430159600798742,0.010098041051706573,1.1679173517331631,0.08405206988062329,1.0483067005366768,0.48829110990902336,1.2368794265624015,0.02915578159137823,1.2395107485660977,0.013054262827494433 +18127,0.48966448629257003,0.009917296436991203,0.08407338707836645,0.40736375571189976,0.02828292619868304,0.012782823560237518,0.020253248325355803,0.17169590491423423,0.8283040950857657,0.3364075979515369,0.4519625540313695,0.9825126459590587,0.010098041051706573,1.0019666725380012,0.08405206988062329,1.0030320079172967,0.48829110990902336,0.9708179502276264,0.02915578159137823,0.9774147030009942,0.013054262827494433 +18129,0.49938513301689724,0.010790997608358865,0.08984746919345693,0.41079481878543944,0.03115894911245671,0.01395749889679614,0.0216085680067567,0.17991618743367124,0.8200838125663288,0.3467982948453025,0.4479451102930881,1.0682921211273966,0.010098041051706573,1.06728926076736,0.08405206988062329,1.0225787687540115,0.48829110990902336,1.0692808439855497,0.02915578159137823,1.0700111314055243,0.013054262827494433 +18131,0.5033086619702383,0.012051403148212639,0.09468094422240382,0.4100565558332774,0.03541229862265234,0.015710607978836326,0.023944358718239713,0.1881170569403046,0.8118829430596954,0.37401716801080365,0.4436483535351939,1.1944212239612289,0.010098041051706573,1.1250274804571272,0.08405206988062329,1.030328409856231,0.48829110990902336,1.209341552167217,0.02915578159137823,1.1998286783194927,0.013054262827494433 +18133,0.48973307558969853,0.010365698760856908,0.0855152873817679,0.4054645323661993,0.029664056591724802,0.013346587817722104,0.021166017321528344,0.17461611568464522,0.8253838843153548,0.34688600716845935,0.4499245670076465,1.0274157916396451,0.010098041051706573,1.0169264035492018,0.08405206988062329,1.0030889775562315,0.48829110990902336,1.018267603176155,0.02915578159137823,1.0220638310985404,0.013054262827494433 +18135,0.5054429211395164,0.012434844735701365,0.09624784221544652,0.4113302111308259,0.03673858888375184,0.01625122803957086,0.02460187731518155,0.1904227721667496,0.8095772278332504,0.381708182106713,0.4423476386366651,1.231372333652351,0.010098041051706573,1.140338066806569,0.08405206988062329,1.0343329366990581,0.48829110990902336,1.2541815503975868,0.02915578159137823,1.2401925175595463,0.013054262827494433 +18137,0.4958358310950427,0.01094519336089288,0.08865759666098741,0.4091523535264633,0.03166161132046403,0.014126648245059352,0.022074228352397723,0.17880433623602598,0.821195663763974,0.3571223731851542,0.446175910065853,1.0838859707652713,0.010098041051706573,1.0530205423875012,0.08405206988062329,1.014942002248051,0.48829110990902336,1.0854024167706884,0.02915578159137823,1.083593202682319,0.013054262827494433 +18139,0.5015906250019089,0.01160315359837996,0.09248207060292218,0.4111510051804725,0.03391289102643259,0.015067341120526975,0.02313271624312317,0.18437758999696263,0.8156224100030374,0.36669692628357997,0.44429538928966855,1.1487152757992387,0.010098041051706573,1.0962797845105978,0.08405206988062329,1.0270060194885615,0.48829110990902336,1.1603350209970347,0.02915578159137823,1.1541528790132862,0.013054262827494433 +18141,0.4857124861973624,0.010340910695081987,0.08418216775513465,0.40300262649877716,0.030433566075802568,0.013504483742755154,0.02129018913234218,0.17331686985071332,0.8266831301492867,0.3615203419841405,0.4437364884916473,1.023699019897966,0.010098041051706573,0.9998980936544826,0.08405206988062329,0.994793532682628,0.48829110990902336,1.0406920229736398,0.02915578159137823,1.0304269014970464,0.013054262827494433 +18143,0.49285171922636545,0.010142224985325868,0.08543816151515787,0.4089231313214017,0.028767943389883158,0.01310903512138505,0.02057865396360233,0.1733546991563123,0.8266453008436877,0.33671070256795427,0.455682039682931,1.0055891289884187,0.010098041051706573,1.018002075564156,0.08405206988062329,1.0091324151995709,0.48829110990902336,0.9877350303445447,0.02915578159137823,0.997961633831322,0.013054262827494433 +18145,0.4973702257834915,0.010640044736040345,0.08833622282720546,0.4106094763884595,0.030367013170065436,0.013714387508207306,0.021392604913732866,0.1776065760431321,0.8223934239568679,0.34376626256101495,0.45162121909725356,1.054370981248195,0.010098041051706573,1.051189951955664,0.08405206988062329,1.018654380271371,0.48829110990902336,1.0428423887557017,0.02915578159137823,1.0485426614625641,0.013054262827494433 +18147,0.5052530747112977,0.011448116234013844,0.0930379074479979,0.4132874442806488,0.032713208217680964,0.01473477311014114,0.022658182219980186,0.18414119993462663,0.8158588000653734,0.3516116077305963,0.4504227470473908,1.1350908297582059,0.010098041051706573,1.107766724819723,0.08405206988062329,1.0344512637208316,0.48829110990902336,1.1225241810678628,0.02915578159137823,1.1282807610003058,0.013054262827494433 +18149,0.5029272038057406,0.01144898257798743,0.09211671609293567,0.41194108358638326,0.03269798103553609,0.014730079476707776,0.022764691373524677,0.18316113225904646,0.8168388677409535,0.35496251302041,0.45048896018072676,1.1347031936803025,0.010098041051706573,1.0955545417228176,0.08405206988062329,1.0295706417019672,0.48829110990902336,1.1219958498443434,0.02915578159137823,1.1273780997558294,0.013054262827494433 +18151,0.4973056360394519,0.011056895243112187,0.0895900206292401,0.4094733130645112,0.03134000417450673,0.014219031771640037,0.02223360131441388,0.1801508250393784,0.8198491749606216,0.3498157937054664,0.45370229347979446,1.096318837589004,0.010098041051706573,1.065996219137289,0.08405206988062329,1.018543217885068,0.48829110990902336,1.0752649003058492,0.02915578159137823,1.0842178740066997,0.013054262827494433 +18153,0.49892056137230123,0.011079695123984988,0.09069249851128419,0.40991712187493934,0.032093656709616676,0.014347071697142576,0.022207333154420087,0.1817774321864603,0.8182225678135397,0.3538733328162031,0.4470376132877236,1.0987174857168787,0.010098041051706573,1.0777478153457176,0.08405206988062329,1.0218394042579462,0.48829110990902336,1.0996832100237541,0.02915578159137823,1.0997958573910886,0.013054262827494433 +18155,0.4991877681959523,0.010940327908716893,0.08927029169842624,0.41126159454837435,0.030946215485578216,0.014012893023475623,0.02191625798094947,0.17883108799129044,0.8211689120087096,0.3466574926193926,0.4528144331576187,1.0847741320637372,0.010098041051706573,1.064134419557612,0.08405206988062329,1.0221477829554573,0.48829110990902336,1.0623773417890443,0.02915578159137823,1.0723276223775988,0.013054262827494433 +18157,0.45509203352304683,0.007592044285757885,0.06719597306383557,0.3887865006137886,0.02193651791339323,0.00984509359125086,0.016682437235793556,0.14765359117285584,0.8523464088271442,0.3264558412236063,0.44879928665615554,0.7511245226760472,0.010098041051706573,0.801698709533645,0.08405206988062329,0.9325338657759736,0.48829110990902336,0.753869804519079,0.02915578159137823,0.7514601132190875,0.013054262827494433 +18159,0.509450530987749,0.01228886392929203,0.09727815224602544,0.41376419849877655,0.035793892968836595,0.015937337508970383,0.02412180021770857,0.19094719963765186,0.8090528003623482,0.36795407953792675,0.4452529799663306,1.2171760009945891,0.010098041051706573,1.1529317722788675,0.08405206988062329,1.0432162544254935,0.48829110990902336,1.225000968559,0.02915578159137823,1.2210662257702043,0.013054262827494433 +18161,0.4977522723624518,0.011086733059756448,0.08980136504049951,0.40984503045733045,0.03218575226164694,0.01437192733875326,0.02227359607448129,0.18041377212459658,0.8195862278754034,0.3584105013006371,0.4465307264506314,1.097791059965601,0.010098041051706573,1.0671536083977071,0.08405206988062329,1.019239238514809,0.48829110990902336,1.1029220274236446,0.02915578159137823,1.099496645846489,0.013054262827494433 +18163,0.4925750613493318,0.011049250415714307,0.08863126861404672,0.4058984938101087,0.03249782187715509,0.014418818115093046,0.02243160744972883,0.1799345431156326,0.8200654568843674,0.3666631696164696,0.44368567744624776,1.0938257452936488,0.010098041051706573,1.05261273345109,0.08405206988062329,1.009079680792693,0.48829110990902336,1.1108067694316421,0.02915578159137823,1.100485988907583,0.013054262827494433 +18165,0.5093254031201251,0.012490794504531095,0.09758134424256992,0.4135279593999181,0.036468715478837496,0.01622652026744269,0.024524193036539205,0.19158939185987398,0.808410608140126,0.3737263076452681,0.4449435647619344,1.2381566407346558,0.010098041051706573,1.1585505508044571,0.08405206988062329,1.0429757714207522,0.48829110990902336,1.2474430742988418,0.02915578159137823,1.2406449502410757,0.013054262827494433 +18167,0.48714918165231386,0.010444656302036545,0.08516171347773972,0.40353088797288034,0.030648994898956665,0.013615247449125685,0.021440365077921988,0.17481649705104296,0.825183502948957,0.35989171245324875,0.444231450134411,1.0341935535446436,0.010098041051706573,1.0120134752445995,0.08405206988062329,0.9980957705049602,0.48829110990902336,1.0490387024674916,0.02915578159137823,1.0406619660375367,0.013054262827494433 +18169,0.5070618153502486,0.013146313814303227,0.0986879084370256,0.4103987490088309,0.038803437429381145,0.017136831419309446,0.025926451995251353,0.1946269773220012,0.8053730226779988,0.39319343214313096,0.44163178714506873,1.3029829939576638,0.010098041051706573,1.1714068656173136,0.08405206988062329,1.038132213569984,0.48829110990902336,1.3221520272912846,0.02915578159137823,1.3075397465685406,0.013054262827494433 +18171,0.5067939724287812,0.011869304811480394,0.09483555043837448,0.4132096248794644,0.034387196199127064,0.015337350165845861,0.02342037486080868,0.1871284103555544,0.8128715896444456,0.36259816113444043,0.4460192124135787,1.176196567459773,0.010098041051706573,1.1260134307930336,0.08405206988062329,1.037388110037619,0.48829110990902336,1.1777954458589854,0.02915578159137823,1.1764057785761648,0.013054262827494433 +18173,0.4969619385036035,0.010279261205315277,0.08691757819911289,0.4115144406732025,0.02915354830938037,0.013269284991678726,0.02068420216700507,0.17489785729029758,0.8251021427097024,0.33541602186147795,0.4551516285724038,1.0185660487106607,0.010098041051706573,1.0347588335802376,0.08405206988062329,1.017683261308283,0.48829110990902336,1.0020766727237622,0.02915578159137823,1.0122432028621415,0.013054262827494433 +18175,0.49254063871274667,0.010291135998257608,0.08570521294868705,0.40880273231472175,0.029317791539099393,0.013264754899635807,0.02089398354043122,0.1740063787887175,0.8259936212112825,0.34207710978622013,0.4524472752985297,1.02031406318005,0.010098041051706573,1.0196073280306661,0.08405206988062329,1.0088602116052936,0.48829110990902336,1.0066503060159162,0.02915578159137823,1.0135509204385833,0.013054262827494433 +18177,0.5025568117669157,0.012070647701511419,0.09449650887434105,0.40990830016809726,0.03557829019093452,0.01575908480484512,0.024018473969286778,0.18803149546835363,0.8119685045316464,0.37650375251688484,0.44294103848926936,1.1955240341787814,0.010098041051706573,1.1205093377589341,0.08405206988062329,1.0290779767159464,0.48829110990902336,1.2148045128672842,0.02915578159137823,1.2030915104892324,0.013054262827494433 +18179,0.5002949407478616,0.011612900054142535,0.09230286549796055,0.4100900460299744,0.034071621513545765,0.015131328510494002,0.02321210771546698,0.18449689968877636,0.8155031003112236,0.3691285349564644,0.44410356297478476,1.1497771055880297,0.010098041051706573,1.095515079850141,0.08405206988062329,1.0243883425984714,0.48829110990902336,1.164878117899807,0.02915578159137823,1.155619366437445,0.013054262827494433 +18181,0.5110661607441449,0.01268817093453192,0.09810686577252749,0.4145010869575867,0.03659703878626394,0.01631873454937189,0.024826865695934817,0.19196509827549066,0.8080349017245093,0.3730323917504261,0.4459031410895693,1.2579725872022538,0.010098041051706573,1.1649880635797687,0.08405206988062329,1.0465788817937274,0.48829110990902336,1.2528870359681705,0.02915578159137823,1.2539028014336213,0.013054262827494433 +18183,0.49786328724079576,0.010857570739892068,0.08907374702326187,0.4107124162387251,0.03129728679787015,0.013992820300762846,0.021808337786997162,0.17891206141532706,0.821087938584673,0.3513637614200374,0.4470937174565269,1.0753658328196813,0.010098041051706573,1.0589425456306916,0.08405206988062329,1.019622895019312,0.48829110990902336,1.072829842431004,0.02915578159137823,1.0735114944325275,0.013054262827494433 +19001,0.5244409610334463,0.015729767672990544,0.1115517997556382,0.4146241121477277,0.047117780512638596,0.020632267129662336,0.02999340029046163,0.21270611573859116,0.7872938842614088,0.42238476309529116,0.43788707585935754,1.5596325024638675,0.010098041051706573,1.3221009003587278,0.08405206988062329,1.0734666678506928,0.48829110990902336,1.6019312463597064,0.02915578159137823,1.5719683540912506,0.013054262827494433 +19003,0.5276802358458004,0.015323318941932926,0.11170063512426695,0.4175089903847268,0.04563599391823672,0.02004769840837386,0.02903902382732169,0.2116824310185237,0.7883175689814763,0.40855626172104287,0.4392957551070789,1.5199638598246632,0.010098041051706573,1.326234728529106,0.08405206988062329,1.0804851437218392,0.48829110990902336,1.55134929863649,0.02915578159137823,1.529072002871251,0.013054262827494433 +19005,0.5166889081824919,0.013609999530829128,0.10272825570165856,0.41517367446398956,0.03943973666524471,0.017574909514547113,0.026340800654505524,0.19882032316702153,0.8011796768329784,0.3839229664308215,0.4456142713050761,1.3501958611716283,0.010098041051706573,1.2217903611605037,0.08405206988062329,1.0582369116288837,0.48829110990902336,1.351312518521154,0.02915578159137823,1.346867796159342,0.013054262827494433 +19007,0.5179784599770673,0.014417336035239404,0.1057685291668772,0.4143683588763939,0.04287284969749206,0.018844664754611273,0.02783385246536644,0.20419484078847594,0.7958051592115241,0.4053459950251275,0.4395477531252986,1.428897256131599,0.010098041051706573,1.2545107310587347,0.08405206988062329,1.0607257612023746,0.48829110990902336,1.4606798404246493,0.02915578159137823,1.438495725419148,0.013054262827494433 +19009,0.5313989477586919,0.016869746031356693,0.11743458127756336,0.41602206024369376,0.051606973699886205,0.02239441891349534,0.031745915385246945,0.2209913696157531,0.779008630384247,0.4394529544743738,0.433941719654542,1.670537427080225,0.010098041051706573,1.3899710929804487,0.08405206988062329,1.0875354688465992,0.48829110990902336,1.7537161175793907,0.02915578159137823,1.703827859428226,0.013054262827494433 +19011,0.5000606139123811,0.011570231971234225,0.09176205323700998,0.410097067841615,0.033809184936630717,0.015001330388748993,0.023137659014396045,0.18350186094257806,0.816498139057422,0.368444076216405,0.4437057686207553,1.146621568726962,0.010098041051706573,1.0901022520025987,0.08405206988062329,1.023522384466589,0.48829110990902336,1.156686144382214,0.02915578159137823,1.1494417345957508,0.013054262827494433 +19013,0.4858597857204576,0.010710599310355357,0.08573404517356556,0.4020294079592551,0.03142882500468645,0.013951682180160492,0.022044630210489916,0.1764584097991044,0.8235415902008956,0.366585117278205,0.4439135786361759,1.0601780978745867,0.010098041051706573,1.0188358419718324,0.08405206988062329,0.995902127887061,0.48829110990902336,1.0747819993130838,0.02915578159137823,1.0653946460447379,0.013054262827494433 +19015,0.5031504529534603,0.012179961352871662,0.09497591531139746,0.4102427927644265,0.03614504257908796,0.015975008445811005,0.02420739419268349,0.18876245614784812,0.8112375438521519,0.38057061583012114,0.4419695567063321,1.205701848400071,0.010098041051706573,1.1256168902411248,0.08405206988062329,1.030161245664859,0.48829110990902336,1.234187351677803,0.02915578159137823,1.2172838954501723,0.013054262827494433 +19017,0.5007607805684937,0.012526768986799509,0.09530676311709613,0.407268151366072,0.03711169980042712,0.01637244875934768,0.025015475398409533,0.19032393672862752,0.8096760632713724,0.3893920912499233,0.44116677078637206,1.2408400006463496,0.010098041051706573,1.1298479705584055,0.08405206988062329,1.0253015429452979,0.48829110990902336,1.2662360194015383,0.02915578159137823,1.2496161920658349,0.013054262827494433 +19019,0.4977590690459066,0.011669312248207987,0.09117545890671264,0.4083927310793988,0.034285828158897386,0.015180851543632728,0.023443695904075565,0.18317186883500827,0.8168281311649918,0.3760422878044121,0.4427733661055873,1.1556040880455012,0.010098041051706573,1.0818125176758666,0.08405206988062329,1.0184013108558707,0.48829110990902336,1.170561320567563,0.02915578159137823,1.1599826661536032,0.013054262827494433 +19021,0.49239137324746046,0.011798115187017955,0.09090531184904052,0.4040974470330708,0.0356493338761755,0.01560759354512598,0.023960848682636426,0.18462003355073883,0.8153799664492611,0.392158974553386,0.43780884095443245,1.167874053377244,0.010098041051706573,1.0755687990562568,0.08405206988062329,1.0083561413847142,0.48829110990902336,1.2132906144248083,0.02915578159137823,1.1852977939129656,0.013054262827494433 +19023,0.5211228631350129,0.01464915759295242,0.10737394837770681,0.4160697346504395,0.043595871494037014,0.01916261303065258,0.02811075588744051,0.20604344190880047,0.7939565580911996,0.4060190777438941,0.4395510944946614,1.4522107304918812,0.010098041051706573,1.273518458791247,0.08405206988062329,1.0673064783450985,0.48829110990902336,1.4860237284769382,0.02915578159137823,1.4629398247078602,0.013054262827494433 +19025,0.5348356810119372,0.016796500224459353,0.11846691746963456,0.41827096512617196,0.050737525259050544,0.022160208310141448,0.03140497319228869,0.22150152219741384,0.7784984778025862,0.4282843374569579,0.43676171033171385,1.6647291516538798,0.010098041051706573,1.402189004305372,0.08405206988062329,1.0951072490442555,0.48829110990902336,1.725251799001577,0.02915578159137823,1.686050691123398,0.013054262827494433 +19027,0.5117630973318719,0.013900635902244749,0.10252949161802528,0.41139108331341223,0.041776049224675316,0.018297608574594844,0.02716224748270656,0.20034561333666506,0.799654386663335,0.4074539780252928,0.4379927952542538,1.3765881643984041,0.010098041051706573,1.213574401489727,0.08405206988062329,1.0474106855980714,0.48829110990902336,1.4208382451234338,0.02915578159137823,1.3926050919246475,0.013054262827494433 +19029,0.5225084674779503,0.015359874389552733,0.11003255998893265,0.4141924103739899,0.04593051896711268,0.020164475432258577,0.029396412394409502,0.21058521887700504,0.789414781122995,0.4174266141924943,0.4390212844469885,1.5228316584252464,0.010098041051706573,1.3039049253274784,0.08405206988062329,1.0695804322398055,0.48829110990902336,1.5626909918158765,0.02915578159137823,1.534581959805505,0.013054262827494433 +19031,0.509239159396065,0.012700576597189935,0.09814406696978961,0.412728742444899,0.037535420205510636,0.01659363519527817,0.024940298409596492,0.19272686547944212,0.8072731345205579,0.38245225987083525,0.4420793774100878,1.258880347552806,0.010098041051706573,1.1651662120050426,0.08405206988062329,1.0425098293914283,0.48829110990902336,1.2794919099251922,0.02915578159137823,1.2660108438243685,0.013054262827494433 +19033,0.5128829212607942,0.013641798412663986,0.10246474375627118,0.4124754732438786,0.04069455495517639,0.017904035664552616,0.02659826998943354,0.1997819375704445,0.8002180624295555,0.39715665567831715,0.4399614563735438,1.3519258827972398,0.010098041051706573,1.2138855979019607,0.08405206988062329,1.0503964313953345,0.48829110990902336,1.3869114183905753,0.02915578159137823,1.3652481079741738,0.013054262827494433 +19035,0.5300958382253573,0.015787786887112,0.11367437508146172,0.41843671553703576,0.04726508526836852,0.02078390637973712,0.029782891599311533,0.21444117626355677,0.7855588237364433,0.41579366708193694,0.43973064391457795,1.5640016929734464,0.010098041051706573,1.346806168011552,0.08405206988062329,1.0853809924097813,0.48829110990902336,1.611543020087976,0.02915578159137823,1.581114242745149,0.013054262827494433 +19037,0.5172591281505889,0.014074523074267535,0.10459403514554114,0.41437538978696575,0.0417265133919199,0.018369222892147884,0.027209810921248814,0.20220819595684508,0.7977918040431549,0.3989377915658196,0.44022903901922894,1.3953810393032162,0.010098041051706573,1.2407705503139743,0.08405206988062329,1.0593209129679046,0.48829110990902336,1.4204452554060132,0.02915578159137823,1.402293022098195,0.013054262827494433 +19039,0.5070438969374536,0.013163610603255731,0.0987423363247246,0.4107342193554836,0.039278495185274,0.01726200579001464,0.025961481210530237,0.19474119878205529,0.8052588012179447,0.3977877843208259,0.43947726888698074,1.3041137380301207,0.010098041051706573,1.1694576207032341,0.08405206988062329,1.0377245230539862,0.48829110990902336,1.3368993251725476,0.02915578159137823,1.3153972380036811,0.013054262827494433 +19041,0.5126165415972707,0.013698226841626688,0.10249695508390601,0.41221225517288285,0.04096798350472502,0.018020938700057235,0.026722170921258507,0.19994859074296353,0.8000514092570364,0.3996995176216486,0.4398785870917664,1.3568414404546862,0.010098041051706573,1.2139924949095686,0.08405206988062329,1.0496371793979646,0.48829110990902336,1.3962809204782842,0.02915578159137823,1.3714815405124503,0.013054262827494433 +19043,0.5190711199604083,0.014079125900138626,0.10511396601104098,0.4158850650901931,0.04150118879381756,0.018347037993507002,0.027123693379844556,0.20250397675574486,0.7974960232442552,0.39482088221710093,0.44208463725357583,1.3961875312534984,0.010098041051706573,1.2475006500784511,0.08405206988062329,1.0630915878409724,0.48829110990902336,1.4146318807820655,0.02915578159137823,1.3998942966170573,0.013054262827494433 +19045,0.5074158086259568,0.012442811067208645,0.09665779774056385,0.4124332490865661,0.03663653903358808,0.01622900609097495,0.0245219223675802,0.1904903160236686,0.8095096839763314,0.3790334550340476,0.4429732316171113,1.2327711887522779,0.010098041051706573,1.1470532758594205,0.08405206988062329,1.0385512522738114,0.48829110990902336,1.2507588338195066,0.02915578159137823,1.2394619812457564,0.013054262827494433 +19047,0.5004001559412075,0.012342083459416245,0.09422939578611775,0.40802846643616714,0.036792738732870756,0.01620504220853596,0.024664427684283795,0.18830808637315624,0.8116919136268438,0.3904592449725886,0.44044131441779083,1.221929851428302,0.010098041051706573,1.1159123597297627,0.08405206988062329,1.023831689521123,0.48829110990902336,1.2554512627964218,0.02915578159137823,1.23424860734744,0.013054262827494433 +19049,0.47427825054577355,0.008133175888990572,0.0731709522827797,0.4019938030398683,0.02338712630906571,0.010540762277693497,0.01714853227958768,0.15427853206125003,0.8457214679387499,0.31962309604339695,0.45070788682607443,0.8054752235875264,0.010098041051706573,0.8736832723729566,0.08405206988062329,0.9707840564650386,0.48829110990902336,0.8020124433648406,0.02915578159137823,0.8057573018098287,0.013054262827494433 +19051,0.5017891452953571,0.012199496512623018,0.09368167007095264,0.40998323010861903,0.036000123922456564,0.015930933994470983,0.02431199763287485,0.18669529014186,0.81330470985814,0.38428140633264524,0.4425244209932679,1.2074262626370564,0.010098041051706573,1.1095898735212533,0.08405206988062329,1.0268296516710582,0.48829110990902336,1.2309554031783545,0.02915578159137823,1.2154691113671094,0.013054262827494433 +19053,0.5017059996791575,0.01327479115248651,0.09743680364230989,0.40592265655330595,0.039405304531706,0.017316346157526488,0.026459303179503093,0.19421095961503554,0.8057890403849645,0.40441910098326617,0.43944200820966983,1.3162027466878152,0.010098041051706573,1.1563552294119317,0.08405206988062329,1.0270719547280693,0.48829110990902336,1.3417374622631923,0.02915578159137823,1.3222278469467639,0.013054262827494433 +19055,0.5064044077974981,0.012489148575403976,0.0964148854033488,0.4113903919433044,0.036524422367155675,0.016200583805584822,0.024662401004215115,0.19039108648892994,0.80960891351107,0.37882555390028044,0.4435548259389608,1.2387859034628796,0.010098041051706573,1.1462230104459907,0.08405206988062329,1.0364689393641529,0.48829110990902336,1.2483576346516254,0.02915578159137823,1.2402401700531265,0.013054262827494433 +19057,0.5088480517997376,0.01288441591109518,0.09874071029040252,0.41234693302263464,0.03825583712534059,0.01689938226870746,0.025320753151209813,0.19404753529303664,0.8059524647069634,0.3874373296771698,0.44174650298041296,1.2761708120316118,0.010098041051706573,1.1707134014896492,0.08405206988062329,1.0420191637848875,0.48829110990902336,1.3056683027579608,0.02915578159137823,1.2878521191398864,0.013054262827494433 +19059,0.5360089573136839,0.01605089980238669,0.11623684391730077,0.4218906634744264,0.04739878087842381,0.020914847964187945,0.02994520816000722,0.21685615945644818,0.7831438405435518,0.4077775968534271,0.4412528671957574,1.59141934523366,0.010098041051706573,1.3810201631494703,0.08405206988062329,1.0981803363352394,0.48829110990902336,1.614161055640667,0.02915578159137823,1.596183330673699,0.013054262827494433 +19061,0.49696703350171745,0.011666037805711934,0.09125463136297637,0.40799614158140396,0.03427357231231274,0.01517903214389955,0.02347447017463306,0.18362310819689615,0.8163768918031038,0.3755817299396613,0.44287861229004427,1.1556942387502858,0.010098041051706573,1.0824597982379716,0.08405206988062329,1.0176844625537305,0.48829110990902336,1.1701839801998477,0.02915578159137823,1.1599868530465915,0.013054262827494433 +19063,0.5118771050652207,0.014110276973049613,0.10288788912819918,0.41104549453779493,0.04217168961639671,0.018543679890837522,0.027565751297377827,0.20100115459371787,0.7989988454062822,0.4098800157504488,0.4397186847270066,1.3972889211327786,0.010098041051706573,1.2191037887430864,0.08405206988062329,1.0474431854368234,0.48829110990902336,1.4380428989215834,0.02915578159137823,1.4109947900583877,0.013054262827494433 +19065,0.5136038602510713,0.01406410726376083,0.10354150581410362,0.41204279607656813,0.041729521503609285,0.01834830037278557,0.027383180603209836,0.20159798986613564,0.7984020101338644,0.4030221617457413,0.4396959205774402,1.395049447487616,0.010098041051706573,1.2278838100690526,0.08405206988062329,1.051678972987609,0.48829110990902336,1.4197527698317036,0.02915578159137823,1.4007278355489428,0.013054262827494433 +19067,0.5158134443718042,0.014223296706073776,0.10463439062397259,0.41340005302139304,0.04251324841802311,0.01868003503773126,0.027574497836899074,0.20285316671302372,0.7971468332869762,0.4063028241909881,0.4393932652253415,1.4085545243826871,0.010098041051706573,1.2389356458206708,0.08405206988062329,1.0559194906891738,0.48829110990902336,1.4507332469123728,0.02915578159137823,1.4244375031342198,0.013054262827494433 +19069,0.5198044968752085,0.014912000195337208,0.1075841153632601,0.41436519472140954,0.04442429162658044,0.019553771814258256,0.028687709100210405,0.20697034367728498,0.793029656322715,0.4129261227513082,0.4401594510188796,1.477079742922243,0.010098041051706573,1.2752845306988805,0.08405206988062329,1.064260849314718,0.48829110990902336,1.515531440110141,0.02915578159137823,1.4892500454223048,0.013054262827494433 +19071,0.519714479091599,0.014398991622000116,0.10639969527157227,0.41481293455638335,0.04265937076741824,0.01880496182338969,0.02770558104743954,0.20472720994332633,0.7952727900566736,0.4009350840576695,0.44081667134556685,1.4283005958066313,0.010098041051706573,1.2627722163566428,0.08405206988062329,1.0641340395270231,0.48829110990902336,1.4524146508567988,0.02915578159137823,1.4342890049981118,0.013054262827494433 +19073,0.524398189129323,0.015212906142652114,0.11012578182329666,0.4159183546914477,0.045581244002844364,0.02001561733676644,0.029010218681171734,0.2100041230236558,0.7899958769763442,0.41390166088429836,0.4391195934783488,1.5072304502974272,0.010098041051706573,1.3048947797169284,0.08405206988062329,1.0732907307512856,0.48829110990902336,1.5543239382193632,0.02915578159137823,1.5243079013542218,0.013054262827494433 +19075,0.5165225000835335,0.014164480672222828,0.10442116186169975,0.4140371132004918,0.0419944992490003,0.01847165468747214,0.02742277571631847,0.2021618842253967,0.7978381157746033,0.4021646426863146,0.4398589105193787,1.4050031714603302,0.010098041051706573,1.238618522514153,0.08405206988062329,1.0577150352971865,0.48829110990902336,1.428985305693474,0.02915578159137823,1.4110851284937567,0.013054262827494433 +19077,0.5207905841269748,0.014185688487931586,0.10575900761252141,0.4171223845002026,0.04191560769282676,0.018495603518228234,0.027238757612547293,0.20307396261745037,0.7969260373825496,0.39633132570983143,0.4412581502759289,1.4061615085169072,0.010098041051706573,1.2547303910829983,0.08405206988062329,1.066595829397401,0.48829110990902336,1.4298375367295293,0.02915578159137823,1.4132722833465032,0.013054262827494433 +19079,0.5087583299276559,0.013262288415342355,0.09962648188821231,0.41146186034330173,0.039553252395759186,0.01738973667107254,0.02606795335857836,0.1958228023556468,0.8041771976443532,0.3970154485645757,0.4396537735272822,1.3137250537151282,0.010098041051706573,1.1802402608765306,0.08405206988062329,1.041779151913506,0.48829110990902336,1.3464506519215704,0.02915578159137823,1.3247064398825756,0.013054262827494433 +19081,0.5174619493438132,0.014138185855456436,0.10518771184209619,0.4144012749124885,0.04228703022398214,0.018570243413777148,0.027322174844710587,0.2032762253833028,0.7967237746166972,0.40201492630110475,0.43914749547121074,1.399940747376795,0.010098041051706573,1.2452232656999853,0.08405206988062329,1.0596622814652505,0.48829110990902336,1.4428402326507053,0.02915578159137823,1.4170014440277494,0.013054262827494433 +19083,0.5171371458584184,0.014750432248350563,0.10682456217556081,0.4123932501114731,0.044677858511777954,0.019511893332771098,0.02852325029536542,0.20656911426897806,0.7934308857310219,0.4182358214429387,0.43672400564202024,1.4610341114864505,0.010098041051706573,1.2647375134029937,0.08405206988062329,1.0587132241477475,0.48829110990902336,1.5189777019557547,0.02915578159137823,1.4842977871321872,0.013054262827494433 +19085,0.5123767371724681,0.01334520251706204,0.10092166154722654,0.4133993185743534,0.039621897455033424,0.01745792320699021,0.026045683866732595,0.19696768847110224,0.8030323115288978,0.3926005264637093,0.4406130026156134,1.3224606426440149,0.010098041051706573,1.1949576235586536,0.08405206988062329,1.048937908810196,0.48829110990902336,1.3496776926517158,0.02915578159137823,1.332510946473192,0.013054262827494433 +19087,0.5000193137896287,0.01182620993285725,0.09282540473740306,0.409280687146463,0.03514918341230759,0.015532255949271575,0.02365150626528168,0.1856436385104459,0.8143563614895541,0.37865909135265624,0.4418952146647284,1.1709403215396623,0.010098041051706573,1.100303472615413,0.08405206988062329,1.023463732620662,0.48829110990902336,1.1988481420974573,0.02915578159137823,1.181915124453063,0.013054262827494433 +19089,0.5083336705869377,0.013712263060210558,0.10134423262461299,0.40992218740235187,0.04220016346763634,0.01841027398306349,0.026974925828497563,0.1993655712547977,0.8006344287452023,0.41640419365499626,0.4362607267429778,1.3571481472996956,0.010098041051706573,1.1984688521678089,0.08405206988062329,1.0405465794929873,0.48829110990902336,1.4370462105635942,0.02915578159137823,1.3909813805783018,0.013054262827494433 +19091,0.5177680360549842,0.014562771442987983,0.10654174333586769,0.4133721169319632,0.04400304795308556,0.019256081930481946,0.028126053423354804,0.2057711869346711,0.7942288130653289,0.4130122764592661,0.4376079118658343,1.4428093177961487,0.010098041051706573,1.261010179652958,0.08405206988062329,1.0598591438069471,0.48829110990902336,1.4977638921710947,0.02915578159137823,1.4650088243882282,0.013054262827494433 +19093,0.5204278922522492,0.015138388029916761,0.10866382885589912,0.4135298105958398,0.045393049799690166,0.01988178435840879,0.029088348751644635,0.20879708884478895,0.791202911155211,0.4177383613077598,0.4379918169442868,1.4998850032740059,0.010098041051706573,1.2880376184079265,0.08405206988062329,1.065370400233606,0.48829110990902336,1.5447794091440077,0.02915578159137823,1.5141109660795893,0.013054262827494433 +19095,0.5091555938965324,0.012701900969793224,0.0982730968915553,0.4127747631916987,0.0379105897637358,0.01671510210137985,0.024946992868302705,0.19301191633676873,0.8069880836632313,0.3857677326030568,0.440908522013262,1.2572857794606835,0.010098041051706573,1.1641856328749252,0.08405206988062329,1.0420775603649362,0.48829110990902336,1.2936912312292606,0.02915578159137823,1.2722528007065788,0.013054262827494433 +19097,0.514572674123972,0.013498211235777696,0.10220917963058067,0.41383320160863035,0.03974946636188118,0.017583593217044023,0.026231885046670154,0.19862924086395656,0.8013707591360435,0.3889030956470789,0.44236048496757385,1.3391555833416853,0.010098041051706573,1.2138080039820105,0.08405206988062329,1.0538013365440735,0.48829110990902336,1.355406475647417,0.02915578159137823,1.3432990135555003,0.013054262827494433 +19099,0.5076894305037407,0.012358063724598318,0.09695711318592319,0.41240948772714947,0.03645272288652323,0.016145560732136095,0.02434177861913803,0.19097721433696224,0.8090227856630378,0.37596749417056335,0.44291782488778625,1.224495435413758,0.010098041051706573,1.1497900454863386,0.08405206988062329,1.039423236329044,0.48829110990902336,1.2446113324104247,0.02915578159137823,1.2331192453497657,0.013054262827494433 +19101,0.518248306273251,0.012822398323165292,0.10223943338644877,0.41704241901615474,0.03772073887830778,0.016749186079043292,0.024741804590490198,0.19727885677361406,0.8027211432263859,0.3689451088380879,0.44403122995756894,1.2695267135645323,0.010098041051706573,1.2141622133129806,0.08405206988062329,1.0616888303952163,0.48829110990902336,1.2894816357556347,0.02915578159137823,1.279778193977349,0.013054262827494433 +19103,0.4579924683114662,0.00721288247706234,0.06672209263202515,0.39192899656356556,0.020724052251771798,0.009348904975800102,0.01574891068330208,0.14568382069254807,0.854316179307452,0.3106025520821975,0.4511137523792346,0.7137493739694358,0.010098041051706573,0.7980059774491665,0.08405206988062329,0.9380490357318015,0.48829110990902336,0.7112357107962379,0.02915578159137823,0.7142286135597153,0.013054262827494433 +19105,0.5098597498280972,0.01259707270169436,0.09850806145706525,0.4128358722303397,0.037252547746594644,0.016486351805473323,0.024706936968336,0.19320619344884143,0.8067938065511586,0.37816750421823264,0.44255635661806203,1.2482321946426786,0.010098041051706573,1.1685587072180375,0.08405206988062329,1.0439483664485352,0.48829110990902336,1.271272108504307,0.02915578159137823,1.2583421417570695,0.013054262827494433 +19107,0.5142231173192509,0.013999285386415112,0.1036876083201496,0.4126001648049196,0.04201623521391544,0.018437465357058758,0.027224146318812384,0.20163933675462528,0.7983606632453747,0.40521944612884303,0.43881764425558095,1.386604600732108,0.010098041051706573,1.2273581283614652,0.08405206988062329,1.05276801764135,0.48829110990902336,1.4308246527098074,0.02915578159137823,1.4034156932202317,0.013054262827494433 +19109,0.527923578104837,0.015863634066144366,0.11282906815286792,0.4169003120506444,0.04739273844377717,0.020793636237623196,0.030049110750257315,0.21372235079536814,0.7862776492046318,0.4200401476290357,0.4387515243984276,1.5726905141581682,0.010098041051706573,1.3375705816572163,0.08405206988062329,1.0805667283057052,0.48829110990902336,1.613347332501883,0.02915578159137823,1.584444792845781,0.013054262827494433 +19111,0.5109637239427531,0.012915391745604913,0.09954714566766484,0.41297604672973454,0.03814474282340059,0.016876096379438165,0.025276533617584005,0.19482233474331304,0.805177665256687,0.3831826876357226,0.4424226021805871,1.2797117727887408,0.010098041051706573,1.1815341504498804,0.08405206988062329,1.0463541141403891,0.48829110990902336,1.3015601113255437,0.02915578159137823,1.287941281570932,0.013054262827494433 +19113,0.4875046711629939,0.010103995229166888,0.08370780473999179,0.40529913713991145,0.029339005706486128,0.013077269196369767,0.020725945466456227,0.171706672143875,0.828293327856125,0.3504930728695754,0.44572980172530885,1.0006476953277756,0.010098041051706573,0.9953918827431469,0.08405206988062329,0.9984951891358728,0.48829110990902336,1.0063797189310453,0.02915578159137823,1.0028299195233932,0.013054262827494433 +19115,0.4951813525233393,0.01117905329515547,0.08937539729230287,0.40772956686843537,0.032889654074324565,0.014586177543094086,0.022575675029339014,0.18049023218839882,0.8195097678116012,0.3679944936832976,0.4434883234141657,1.1063601274756407,0.010098041051706573,1.060446419421329,0.08405206988062329,1.0136614571383284,0.48829110990902336,1.1235566455367825,0.02915578159137823,1.1127815740739142,0.013054262827494433 +19117,0.5162331184568221,0.01399705261681674,0.10408749207317422,0.413893819875801,0.041596440687645383,0.01828918802192523,0.027113821481772014,0.2016288540036397,0.7983711459963603,0.399629579492633,0.439681562162056,1.387582861086961,0.010098041051706573,1.2342886179583297,0.08405206988062329,1.0570321349612297,0.48829110990902336,1.4172953344739345,0.02915578159137823,1.3970857016069789,0.013054262827494433 +19119,0.5029925878231489,0.01275202339887814,0.09618468333701166,0.4089895880718255,0.03852588903126483,0.016866632815326993,0.02535230877668862,0.1912248523448023,0.8087751476551976,0.4005407898082683,0.4377999635943314,1.2626587918986072,0.010098041051706573,1.1366049797382416,0.08405206988062329,1.029148972700885,0.48829110990902336,1.311999710880543,0.02915578159137823,1.2811801923991775,0.013054262827494433 +19121,0.49797094966905747,0.0110664261585568,0.08949479945034007,0.4104368426266473,0.03199242942365833,0.014278014755695498,0.02222303563272385,0.17971891635408993,0.82028108364591,0.35747808386799806,0.4462935454703836,1.0960547659602204,0.010098041051706573,1.0627311753655726,0.08405206988062329,1.0193032051168465,0.48829110990902336,1.0964678470674882,0.02915578159137823,1.0954208796048541,0.013054262827494433 +19123,0.49830918391273604,0.011880637166455132,0.0926855376581005,0.40805912499570274,0.0354281585415975,0.015622691605746145,0.023841898865214716,0.18600005910051942,0.8139999408994806,0.3822404167550422,0.4409682085904344,1.1757756039319927,0.010098041051706573,1.0970378706052504,0.08405206988062329,1.0202413529921337,0.48829110990902336,1.2105999136680947,0.02915578159137823,1.1903770343240831,0.013054262827494433 +19125,0.4976730797864958,0.01203877306935747,0.0925926521679527,0.407045783676815,0.035328836106402556,0.015637209109389004,0.02419012311158595,0.18605115673058992,0.8139488432694101,0.3815511844538161,0.4426188584954575,1.1936432354157747,0.010098041051706573,1.0988008832073208,0.08405206988062329,1.0185980585498453,0.48829110990902336,1.2061183607313972,0.02915578159137823,1.1960200300192223,0.013054262827494433 +19127,0.5034272794929291,0.012306571777911099,0.0948836722925141,0.41055484703956646,0.03622095692029956,0.016028254407886067,0.024445579886546356,0.18847542864201658,0.8115245713579834,0.3817406730278633,0.4425132787947754,1.2190048826237825,0.010098041051706573,1.1246739838296793,0.08405206988062329,1.0305628625862653,0.48829110990902336,1.2365709956504325,0.02915578159137823,1.2247008492872236,0.013054262827494433 +19129,0.5038626210680001,0.011184348432717303,0.09201122344351434,0.4131579658937973,0.032280216853823436,0.014465915031929049,0.02219721798177978,0.18261172707847428,0.8173882729215257,0.3508291232932062,0.4481356211897824,1.1078172601162333,0.010098041051706573,1.0925465816084237,0.08405206988062329,1.0316843053401241,0.48829110990902336,1.1076723091763596,0.02915578159137823,1.1092909690695378,0.013054262827494433 +19131,0.5187761507474375,0.015251729829148089,0.10817894605472025,0.4123738845489867,0.046280930312596065,0.02016129367145838,0.029399442914200744,0.20852721525239581,0.7914727847476042,0.4278182770350318,0.4356285306989858,1.5111091062019266,0.010098041051706573,1.2812613681187481,0.08405206988062329,1.061312157688108,0.48829110990902336,1.5714514817161906,0.02915578159137823,1.532426714850741,0.013054262827494433 +19133,0.533439661769654,0.016937097141853513,0.1177768014932555,0.4177142796457511,0.05070224723353053,0.022224761014769563,0.0317507271312855,0.22078748532221631,0.7792125146777837,0.4304943468551741,0.438338776433401,1.6791368935746673,0.010098041051706573,1.393692555389689,0.08405206988062329,1.0919779333381197,0.48829110990902336,1.7266388764715144,0.02915578159137823,1.6925303207765516,0.013054262827494433 +19135,0.5140629190702952,0.013587464117762836,0.10242502349740988,0.4130249221618323,0.04027192620636045,0.017753597216369224,0.026431519593625517,0.19924608388920548,0.8007539161107945,0.39318444683958353,0.4408430112182035,1.3467574189072005,0.010098041051706573,1.2153333637111428,0.08405206988062329,1.0526597241391005,0.48829110990902336,1.371225718675425,0.02915578159137823,1.3544446418430378,0.013054262827494433 +19137,0.5206423742290576,0.01486122284637682,0.10804362844366541,0.4149137930956761,0.044901412042507714,0.019610576219094393,0.028544013284325178,0.20751985199754683,0.7924801480024531,0.4155859321766445,0.4367474279100456,1.4719750832290242,0.010098041051706573,1.2796014107459444,0.08405206988062329,1.0658521040584419,0.48829110990902336,1.5252243375989791,0.02915578159137823,1.4916719919986603,0.013054262827494433 +19139,0.49206576412438985,0.010435530262423115,0.08598902849254117,0.40789487036609473,0.03010676763723174,0.013464897166963002,0.02120759260907472,0.1747510897157314,0.8252489102842686,0.350123360677848,0.44723821996458846,1.033425204235052,0.010098041051706573,1.0223061389319743,0.08405206988062329,1.0075342329937875,0.48829110990902336,1.032411085595751,0.02915578159137823,1.0321599336798095,0.013054262827494433 +19141,0.5206316937896889,0.01529832903157886,0.109354558501023,0.4133970081275292,0.04653444992193992,0.020277693844298866,0.029384167760172275,0.21004206967314823,0.7899579303268518,0.425537358111181,0.4357566035123239,1.5147517629321898,0.010098041051706573,1.2947536369483075,0.08405206988062329,1.0654031659365626,0.48829110990902336,1.5813340394676074,0.02915578159137823,1.5408831285400169,0.013054262827494433 +19143,0.5135684222494711,0.014437765304814321,0.10453569901132237,0.411098739095621,0.04333506956971611,0.018959661371276977,0.028112642209534116,0.20354775426699248,0.7964522457330075,0.41454804415688123,0.43751311719426833,1.4302926397372107,0.010098041051706573,1.2383020905666386,0.08405206988062329,1.0509689341624573,0.48829110990902336,1.4728498253228222,0.02915578159137823,1.4430987009113057,0.013054262827494433 +19145,0.5186271165777293,0.014333498487312368,0.10614459475510521,0.4144070609246508,0.04272335721550327,0.01877496168770419,0.027637387304186845,0.20466456797616514,0.7953354320238348,0.40250148690165327,0.4394542683759695,1.4202906411137912,0.010098041051706573,1.258514787941197,0.08405206988062329,1.0621751950140892,0.48829110990902336,1.4561237974257137,0.02915578159137823,1.4337833260413768,0.013054262827494433 +19147,0.5165105290377179,0.015240592380740603,0.10817833961678192,0.41084478744011543,0.046317033781641884,0.02018268412306138,0.029506837758243778,0.20944072489349438,0.7905592751065056,0.42815441562255807,0.43575079134408956,1.5094583233863084,0.010098041051706573,1.2799492114005158,0.08405206988062329,1.0575032640239024,0.48829110990902336,1.5742802433237437,0.02915578159137823,1.5335029199441896,0.013054262827494433 +19149,0.5055188518473374,0.012436246703973697,0.09603613782609569,0.41091308451942454,0.03654776504899139,0.016190516008413834,0.02460095535216428,0.18997538365809122,0.8100246163419088,0.38056262857189105,0.44299606245992995,1.2329343416128227,0.010098041051706573,1.1410929311771685,0.08405206988062329,1.0350244333515364,0.48829110990902336,1.247213383343562,0.02915578159137823,1.236600533884603,0.013054262827494433 +19151,0.5308950379350146,0.01628025863169431,0.11583078351524052,0.4173665486454152,0.04976612570920737,0.021742660152523286,0.030665682420047656,0.21818019615662532,0.7818198038433747,0.42964507533232177,0.43689678154915357,1.6116799421589825,0.010098041051706573,1.3687535634900274,0.08405206988062329,1.0868410417134327,0.48829110990902336,1.6959717236020087,0.02915578159137823,1.6483216235234792,0.013054262827494433 +19153,0.4781848117578431,0.008835222903315978,0.077137474399334,0.4022409237893013,0.025533462172394827,0.011437168581886242,0.018476586219535157,0.16131310008733,0.83868689991267,0.33101242128061276,0.44792862419775525,0.874541923324309,0.010098041051706573,0.9195287222817952,0.08405206988062329,0.9787692143394249,0.48829110990902336,0.8771035732984089,0.02915578159137823,0.8766554489673832,0.013054262827494433 +19155,0.49524491322008574,0.010971374882071913,0.08875197165467938,0.40846014042579426,0.031752769930132166,0.014174316503951805,0.02215343275458593,0.17920824482095832,0.8207917551790417,0.3577697412027919,0.44639622102703297,1.0866117331597187,0.010098041051706573,1.0545618337363944,0.08405206988062329,1.014262681722113,0.48829110990902336,1.088962174029707,0.02915578159137823,1.0865399013422405,0.013054262827494433 +19157,0.5089681353757789,0.013660033231007633,0.10093841749021001,0.41001150752300786,0.04060801890992119,0.017841369377504274,0.02683868061980388,0.198319718808498,0.801680281191502,0.40230488965075906,0.4393558182949265,1.3539412937833708,0.010098041051706573,1.1969645471613843,0.08405206988062329,1.042220777241499,0.48829110990902336,1.3831034247778493,0.02915578159137823,1.362877485256529,0.013054262827494433 +19159,0.5277266226728881,0.01674741751855241,0.1155807389796133,0.4146189649715959,0.05109273937270398,0.022219768244897603,0.03173502491446848,0.21901631263969062,0.7809836873603093,0.44205236810015525,0.43489091635529714,1.6579876763765338,0.010098041051706573,1.3676768574409235,0.08405206988062329,1.0802359345445518,0.48829110990902336,1.737955322967198,0.02915578159137823,1.6886394348102793,0.013054262827494433 +19161,0.528801705777028,0.01613571502804078,0.11425823284835555,0.4168812348036941,0.04889388099653166,0.02133403518065132,0.030513734830584092,0.21607009130286947,0.7839299086971305,0.42792435851361377,0.4363334377601294,1.5983627769590172,0.010098041051706573,1.3519677623433766,0.08405206988062329,1.0826203292209597,0.48829110990902336,1.6627946222263041,0.02915578159137823,1.6228834442585898,0.013054262827494433 +19163,0.49017134593843237,0.010233819960772772,0.08517509432359502,0.40668773859000507,0.029692263141570537,0.013280732606616467,0.02087804610687746,0.17376595965748962,0.8262340403425104,0.34860264467409285,0.447279230393955,1.0136953087435667,0.010098041051706573,1.0129774119453212,0.08405206988062329,1.0040079427849962,0.48829110990902336,1.018116319472486,0.02915578159137823,1.016346318855108,0.013054262827494433 +19165,0.5221991568417079,0.01501171084084888,0.10887543862508105,0.4152140037083044,0.04501738037971463,0.01974252528611574,0.028747098964388634,0.20849409118843906,0.7915059088115609,0.41347599558000053,0.4385534013661079,1.487227031433445,0.010098041051706573,1.2907440077883345,0.08405206988062329,1.0690355518927328,0.48829110990902336,1.5311589075473944,0.02915578159137823,1.5022111251535124,0.013054262827494433 +19167,0.48173853159538466,0.010942145555453876,0.08433684913780595,0.3996989603862172,0.033055567123043875,0.014458975416870494,0.022713868287048824,0.17506768424461638,0.8249323157553836,0.3919469064943517,0.43741422929001195,1.0835765905496348,0.010098041051706573,0.9980423352538659,0.08405206988062329,0.9863793725459173,0.48829110990902336,1.1258060455279122,0.02915578159137823,1.0982551745462623,0.013054262827494433 +19169,0.4547187145919691,0.007982496242888076,0.06867971747478631,0.38675948794606907,0.02337968316534899,0.010403923938443454,0.01755480033420436,0.1510378070460865,0.8489621929539135,0.34041612320161535,0.4449984999738192,0.7899644305366191,0.010098041051706573,0.8179573578929987,0.08405206988062329,0.9321204061007786,0.48829110990902336,0.8026530909661466,0.02915578159137823,0.7953153779222932,0.013054262827494433 +19171,0.5098668311113231,0.013450400040418982,0.10048205387349905,0.4116965195627406,0.040132951661371305,0.017647192094234144,0.02638022169652031,0.19707509440158116,0.8029249055984189,0.39940417332528166,0.43971827049092643,1.3317889563640604,0.010098041051706573,1.1892523779916169,0.08405206988062329,1.043873272246854,0.48829110990902336,1.369140444964874,0.02915578159137823,1.3453761894306844,0.013054262827494433 +19173,0.5219194394947355,0.015323526899403486,0.10961984894421573,0.4139671567312684,0.04617381778384183,0.02017663992742886,0.029359946650460125,0.21003212497763543,0.7899678750223645,0.42121767388439985,0.43697144606676896,1.5185887187409604,0.010098041051706573,1.2987647658355894,0.08405206988062329,1.068008981208401,0.48829110990902336,1.56979077788293,0.02915578159137823,1.5363153811993757,0.013054262827494433 +19175,0.5078769677367625,0.013175608916717698,0.0991939165070472,0.4109384895145281,0.03911520218074377,0.01723072008683492,0.025942521031091025,0.19531091742372605,0.8046890825762739,0.39433065613418783,0.4405121059381235,1.3057057642714023,0.010098041051706573,1.1757700045766972,0.08405206988062329,1.0400496285964254,0.48829110990902336,1.3329185520533315,0.02915578159137823,1.3144642462453933,0.013054262827494433 +19177,0.5197423980573244,0.014576213964035904,0.10659414362302222,0.4147360780890962,0.042680733799613416,0.018868022860147812,0.028045073902991918,0.20509033710054486,0.7949096628994552,0.40040411554462946,0.4420735348350246,1.4460883734093453,0.010098041051706573,1.266906835554384,0.08405206988062329,1.0642978889688433,0.48829110990902336,1.4573134559427978,0.02915578159137823,1.4447008323628951,0.013054262827494433 +19179,0.5023804852190652,0.012331846855201811,0.09520517353822619,0.4093666520933228,0.03653155175858858,0.016121728056329943,0.02454682699274128,0.1895081045927004,0.8104918954072996,0.38371393487267436,0.4413096975148261,1.2220524989851613,0.010098041051706573,1.129440434346529,0.08405206988062329,1.0287616387008824,0.48829110990902336,1.2444838156156206,0.02915578159137823,1.2291639923886772,0.013054262827494433 +19181,0.490207100076143,0.010232650419437973,0.08493595017768983,0.4069941073996952,0.02941572274272808,0.01319935426987607,0.02087413751830309,0.17326544263536142,0.8267345573646385,0.3463282942168665,0.4487176597807412,1.013505196478444,0.010098041051706573,1.0095972369341835,0.08405206988062329,1.0037504845605718,0.48829110990902336,1.0094123443930063,0.02915578159137823,1.0110146004850722,0.013054262827494433 +19183,0.5082251212911554,0.013129980631873057,0.09905496303634914,0.41113637997424246,0.03895670244246726,0.01715649268197202,0.02583496974434498,0.1949037127182894,0.8050962872817106,0.39328370076895325,0.44039899699697066,1.3012625089961398,0.010098041051706573,1.1740933334347723,0.08405206988062329,1.0403886580213708,0.48829110990902336,1.326372503534218,0.02915578159137823,1.3092079019941973,0.013054262827494433 +19185,0.5292731029545197,0.01633354109288722,0.11436663855181964,0.4169303493902521,0.04861730528046766,0.021296089743185653,0.030860327119798407,0.2160824684145099,0.78391753158549,0.4251004129883481,0.43803517328512864,1.6193712484375244,0.010098041051706573,1.354299291621016,0.08405206988062329,1.0833679608896147,0.48829110990902336,1.6546020450198686,0.02915578159137823,1.6280229283569918,0.013054262827494433 +19187,0.5023853498564803,0.01251014778507955,0.09545242570934344,0.4086914484947741,0.036865007048545874,0.016285912478820996,0.024901498000794418,0.18999842598238972,0.8100015740176103,0.3862134123317236,0.4417715818519934,1.2408835855937301,0.010098041051706573,1.13338055995231,0.08405206988062329,1.028704808500729,0.48829110990902336,1.2568575830722015,0.02915578159137823,1.2440830644510692,0.013054262827494433 +19189,0.5167774425674846,0.014454009211595316,0.10581025440931902,0.4125629998570579,0.043109846528857916,0.018937094659229,0.02796950489902199,0.2047501413444561,0.7952498586555439,0.40742597935820773,0.4392753902882124,1.4329512891980898,0.010098041051706573,1.2544261708504494,0.08405206988062329,1.0579460326550443,0.48829110990902336,1.467342565301012,0.02915578159137823,1.4435348257888005,0.013054262827494433 +19191,0.4974927718410349,0.012099860468250727,0.09344940698038884,0.4062872893762551,0.03614707006936192,0.015905286104162284,0.024321680943169614,0.18784073311169425,0.8121592668883058,0.38680898292856686,0.44001591480697977,1.1970596111994554,0.010098041051706573,1.1077995379256258,0.08405206988062329,1.0189686876746356,0.48829110990902336,1.234790746308213,0.02915578159137823,1.2127387621761794,0.013054262827494433 +19193,0.4837074367051295,0.010026870895850163,0.08237352673678458,0.4029324049894619,0.029327872963780834,0.01304691245023815,0.02072920557961691,0.1702961759237948,0.8297038240762051,0.3560351744741339,0.44486391721454704,0.9928948529547102,0.010098041051706573,0.9793712537677836,0.08405206988062329,0.9908498451351826,0.48829110990902336,1.0047860428846191,0.02915578159137823,0.9969846564054625,0.013054262827494433 +19195,0.5139355996081862,0.01344987006209392,0.10265750185828608,0.41292586719601865,0.040394354401582996,0.01775497750617791,0.026170341327488928,0.19974779317982644,0.8002522068201736,0.3934866295241192,0.4395410638245556,1.3312424321466902,0.010098041051706573,1.2162673722241624,0.08405206988062329,1.0525702515326238,0.48829110990902336,1.3781665396305325,0.02915578159137823,1.3507168847256081,0.013054262827494433 +19197,0.5205297523805501,0.015005827149369006,0.1086564407901695,0.4144833805789762,0.045651911357062945,0.01994216849863545,0.028827991254568117,0.2087420369215182,0.7912579630784818,0.4201491510772293,0.436830965140962,1.486242202730509,0.010098041051706573,1.2850038215033321,0.08405206988062329,1.0654376184135423,0.48829110990902336,1.5543834619328019,0.02915578159137823,1.513853891966818,0.013054262827494433 +20001,0.5041664718298469,0.012930916582661493,0.09737248447643211,0.4086423334235037,0.03812458349908937,0.01683207981099094,0.025648108918725557,0.1931355810373974,0.8068644189626026,0.3915334368233871,0.441501998609191,1.2821932221472658,0.010098041051706573,1.1555701621069208,0.08405206988062329,1.0324892999276498,0.48829110990902336,1.2987947751524804,0.02915578159137823,1.2848686172804018,0.013054262827494433 +20003,0.5114859350947581,0.013943257074991179,0.10272997361724984,0.4111494533821305,0.04263526588523134,0.018626491517834045,0.027260294210060817,0.20084613587315558,0.7991538641268444,0.415022650001657,0.4368799192662283,1.3802439228969154,0.010098041051706573,1.2142953083638863,0.08405206988062329,1.0468436256212383,0.48829110990902336,1.4531154682991576,0.02915578159137823,1.4103043790167702,0.013054262827494433 +20005,0.49073221385365673,0.011528213563455238,0.08909417210385864,0.40392403311298236,0.03409256299634794,0.015053501657004583,0.023491862237707332,0.1815535430295346,0.8184464569704654,0.38265761038337776,0.44154796043398503,1.1414446128801758,0.010098041051706573,1.0563350950249197,0.08405206988062329,1.0049371457109475,0.48829110990902336,1.16282313549486,0.02915578159137823,1.1483089883184578,0.013054262827494433 +20007,0.5249406145760832,0.014965262638074009,0.10995189661737442,0.41691362320410663,0.044650971278652016,0.019621161074147863,0.02850848690791288,0.20945587665409787,0.7905441233459021,0.40609550769310093,0.4394341379876969,1.482004945482112,0.010098041051706573,1.3027231432015134,0.08405206988062329,1.074931268634141,0.48829110990902336,1.5235492955869496,0.02915578159137823,1.497853081701157,0.013054262827494433 +20009,0.5045706748746224,0.012863883932404709,0.09692394234942012,0.4096450150997325,0.037871798149324565,0.016722967697978076,0.025494711787602747,0.19209190540751134,0.8079080945924887,0.3907372856625363,0.4415678292338049,1.2758396869660895,0.010098041051706573,1.150676714379191,0.08405206988062329,1.0330861907497573,0.48829110990902336,1.2908302180533484,0.02915578159137823,1.2776995571263063,0.013054262827494433 +20011,0.5030407384222179,0.013232132930905294,0.09754377513567902,0.40767654910320617,0.03950576557749068,0.017379204054721462,0.02630429688936873,0.1939083014262902,0.8060916985737098,0.405005501607252,0.43991563764615826,1.3101562479994495,0.010098041051706573,1.156003674553872,0.08405206988062329,1.0297948596020063,0.48829110990902336,1.346944575206038,0.02915578159137823,1.3221829011849175,0.013054262827494433 +20013,0.5114376473639644,0.013661133888968068,0.10130520827312739,0.41222670543079365,0.04048654261892179,0.017824475373216235,0.026711240283893548,0.19807929430942653,0.8019207056905735,0.3996491721310779,0.44025679201576945,1.3540247991120884,0.010098041051706573,1.2015567744531204,0.08405206988062329,1.0472669722307963,0.48829110990902336,1.3804893565127716,0.02915578159137823,1.3613723817591679,0.013054262827494433 +20015,0.48835990399124185,0.010172521770456156,0.08414179328981847,0.4059124909244679,0.02972389380322478,0.013231191929413355,0.020829969224169943,0.1722946388557883,0.8277053611442117,0.3532595710296265,0.44513656309651756,1.0075520403892786,0.010098041051706573,0.9989640241020367,0.08405206988062329,0.9997890140310324,0.48829110990902336,1.0187900093882374,0.02915578159137823,1.0119636539790662,0.013054262827494433 +20017,0.5246698064734047,0.014977197850816144,0.10881004003711331,0.41741616045810626,0.044007223404330456,0.019412943743970533,0.028545949597302268,0.2073876535196215,0.7926123464803785,0.4044408345895316,0.441130847215874,1.4844885911167354,0.010098041051706573,1.2878225284112763,0.08405206988062329,1.0741027725101193,0.48829110990902336,1.5024647963646083,0.02915578159137823,1.4898053482045324,0.013054262827494433 +20019,0.5365873297787952,0.017305284695358268,0.11996753477555017,0.41769777328167046,0.05176822077798235,0.022725823316649324,0.032250639802643616,0.22357504196941444,0.7764249580305855,0.4315185843806545,0.43899177864569167,1.7150453227912799,0.010098041051706573,1.4194119627008401,0.08405206988062329,1.0980254890629242,0.48829110990902336,1.76402046011339,0.02915578159137823,1.7303453523472538,0.013054262827494433 +20021,0.5043560858338136,0.012127316788533678,0.09429346060753328,0.41218805267642783,0.03512051445663704,0.01564570892179319,0.024045148118882132,0.1869581100655206,0.8130418899344793,0.37245970431412073,0.44548632512518566,1.2016906374395244,0.010098041051706573,1.118544227619405,0.08405206988062329,1.0325130915761072,0.48829110990902336,1.202464125863,0.02915578159137823,1.1996449952930475,0.013054262827494433 +20023,0.5430897713981557,0.018761835398939677,0.12675941079833541,0.41851314734261286,0.05799092734782429,0.02506594945318629,0.034546471664598524,0.2334041579755775,0.7665958420244225,0.4574881421631365,0.4322391553224009,1.8577280850265667,0.010098041051706573,1.4982812622170067,0.08405206988062329,1.1114427834160783,0.48829110990902336,1.9742654231443273,0.02915578159137823,1.9046677598757449,0.013054262827494433 +20025,0.5197482292099673,0.014831019418345285,0.10687280477737948,0.4146385202799047,0.044370386567156486,0.0194632320770461,0.028535007114673334,0.20562418257745543,0.7943758174225446,0.41517003937139907,0.43865365129482614,1.4693684360777062,0.010098041051706573,1.267131301782961,0.08405206988062329,1.0638957148273516,0.48829110990902336,1.5101200237506558,0.02915578159137823,1.482446457741013,0.013054262827494433 +20027,0.5229147009439779,0.015378070147441202,0.11031403518635635,0.41495375304402093,0.04678800945441056,0.02043762790158013,0.029408372187051446,0.2109599041434767,0.7890400958565233,0.42413469306394574,0.43681336607179677,1.5227071251451658,0.010098041051706573,1.3040279936292123,0.08405206988062329,1.0700854586869166,0.48829110990902336,1.5932484533779299,0.02915578159137823,1.5520682439251972,0.013054262827494433 +20029,0.5177612517514927,0.015469050214584827,0.10869060110686164,0.41093680976113256,0.046675213715199476,0.020389550513709928,0.029876801638314625,0.20992417014440728,0.7900758298555928,0.4294319218026007,0.43683893207478136,1.531836140396718,0.010098041051706573,1.2853142709049035,0.08405206988062329,1.0594105442394346,0.48829110990902336,1.5888956259011466,0.02915578159137823,1.5518196575130618,0.013054262827494433 +20031,0.5120752323800023,0.01260304821836066,0.09900219857207551,0.4145712034148451,0.03745051650893097,0.016571237284051236,0.02461171214976504,0.19333526074271773,0.8066647392572823,0.37827964478653747,0.4424835443884847,1.2480105121266667,0.010098041051706573,1.172520859744869,0.08405206988062329,1.048657381972161,0.48829110990902336,1.2789886354370381,0.02915578159137823,1.261574251828923,0.013054262827494433 +20033,0.5529678084639624,0.018813138786229984,0.12899425016219632,0.42618250039092664,0.05617107848360249,0.024730057465037217,0.034022122984860986,0.23327623812409148,0.7667237618759085,0.43545412615658013,0.44026317693466466,1.865038942197387,0.010098041051706573,1.5276209652910886,0.08405206988062329,1.132126246620107,0.48829110990902336,1.9162455074134688,0.02915578159137823,1.8803742322327786,0.013054262827494433 +20035,0.4971718241675191,0.011556536833414885,0.09095236996191332,0.4084298295589368,0.03379901716752328,0.015008950545497387,0.023244553033079724,0.18293951012651807,0.8170604898734819,0.3716122755424269,0.44406470374881646,1.1443844293556265,0.010098041051706573,1.0800243774606346,0.08405206988062329,1.0181796677726056,0.48829110990902336,1.1556867210329433,0.02915578159137823,1.1473003505487118,0.013054262827494433 +20037,0.4806286232705822,0.010521237958040346,0.08341152818208965,0.3991541107709352,0.031232942858353305,0.013806485202519607,0.021890577149661652,0.1735467347210634,0.8264532652789366,0.3744439592351184,0.44204880933360524,1.0416193979046056,0.010098041051706573,0.9889448439033556,0.08405206988062329,0.9848138920722344,0.48829110990902336,1.067649805248883,0.02915578159137823,1.0511113643534364,0.013054262827494433 +20039,0.5557988469162786,0.019471051214163364,0.13296399684476437,0.42511307382678953,0.059421693598498415,0.0259023190689203,0.035032550575075844,0.23923042946649561,0.7607695705335044,0.44690062730194036,0.4359067791628014,1.928861284939571,0.010098041051706573,1.5723868304630684,0.08405206988062329,1.1381162804920475,0.48829110990902336,2.023258441575143,0.02915578159137823,1.966082597588814,0.013054262827494433 +20041,0.5089733726770589,0.01324515268781916,0.0998168804495917,0.4115255534907616,0.03953297341756504,0.017393955854025315,0.026023272333783057,0.19611415018546563,0.8038858498145344,0.3960549882895759,0.4399860255969753,1.3118726513949412,0.010098041051706573,1.1817323582981571,0.08405206988062329,1.0417162524309604,0.48829110990902336,1.349266685650068,0.02915578159137823,1.3266898033046393,0.013054262827494433 +20043,0.49904489700886034,0.012124657378464028,0.09373586345341295,0.4073683799534862,0.035647659308990096,0.01578580773892798,0.02429572459539399,0.18783052189340133,0.8121694781065987,0.38029904452426694,0.4428287311124214,1.2010489349809323,0.010098041051706573,1.1119210979225915,0.08405206988062329,1.0222493061897184,0.48829110990902336,1.2179575764506025,0.02915578159137823,1.207233710799032,0.013054262827494433 +20045,0.454192164830073,0.007239313069458983,0.06599687613858748,0.3886417526824869,0.02091221313794938,0.009398388220940655,0.015938877043745192,0.14530606480910763,0.8546939351908924,0.31686671190369103,0.4494210229660201,0.7165699631126956,0.010098041051706573,0.789244901040971,0.08405206988062329,0.9307404239639283,0.48829110990902336,0.7184896802820414,0.02915578159137823,0.7179939019294744,0.013054262827494433 +20047,0.5173906956577483,0.014155975639646842,0.10513754496788671,0.41459877465316236,0.042478577335703704,0.018630908191106896,0.027360321239736706,0.20320725875100534,0.7967927412489947,0.4040286212568345,0.43859538995076974,1.4017286647979674,0.010098041051706573,1.2454201340527284,0.08405206988062329,1.0591996775961636,0.48829110990902336,1.4504234593945886,0.02915578159137823,1.4233718119281098,0.013054262827494433 +20049,0.5411896054050662,0.017025508210209248,0.12083137793977652,0.42254712185098386,0.051126602459926174,0.022482444599608672,0.03145941466755649,0.22326995332687036,0.7767300466731296,0.4231235572386516,0.4397406343836511,1.6868704715116922,0.010098041051706573,1.4307264087230174,0.08405206988062329,1.1077374230327814,0.48829110990902336,1.745363766282493,0.02915578159137823,1.7097328486803467,0.013054262827494433 +20051,0.47928870915289834,0.010392737719293171,0.08279624650981185,0.39826155387446505,0.030847536268436518,0.013620949125749455,0.021683668988700867,0.1727481681263619,0.8272518318736382,0.3725716752725125,0.44155711520101315,1.0281212529955477,0.010098041051706573,0.9838405117277524,0.08405206988062329,0.9823754634135868,0.48829110990902336,1.0528163917828697,0.02915578159137823,1.0370687436754418,0.013054262827494433 +20053,0.516923484086911,0.01421237376933371,0.10585585603935782,0.4128726469011552,0.042520847923367654,0.018698809205230357,0.02749415379035897,0.20478051258657876,0.7952194874134213,0.40168630734569993,0.43975626353759245,1.4075848721044204,0.010098041051706573,1.2541186965042983,0.08405206988062329,1.0585457857105116,0.48829110990902336,1.4489804617708284,0.02915578159137823,1.424334609083904,0.013054262827494433 +20055,0.460399047149996,0.007164148946052456,0.06596987936078857,0.39463381088010663,0.020266387720674326,0.0092254489619895165,0.015560737995442478,0.1432884793510354,0.8567115206489646,0.30720668154988834,0.4552093391847216,0.7098129396488719,0.010098041051706573,0.7892979519477472,0.08405206988062329,0.9428765862130692,0.48829110990902336,0.6960657437564444,0.02915578159137823,0.7035662568333831,0.013054262827494433 +20057,0.46607771401154474,0.008197722106815918,0.07085386512441916,0.3964107460681919,0.024015587942675207,0.01067331315027437,0.017588745096301386,0.15202156849461398,0.847978431505386,0.33894534758977385,0.44443272326921096,0.8114018728681183,0.010098041051706573,0.8449259539995955,0.08405206988062329,0.9543392396605238,0.48829110990902336,0.8243850441284046,0.02915578159137823,0.8169702713689282,0.013054262827494433 +20059,0.49096143685542765,0.010426556522733447,0.08548995091908339,0.40744037645784215,0.03027111445870179,0.013491887777485709,0.021237017289004987,0.17412762897762463,0.8258723710223754,0.354089739592359,0.44570171989843294,1.0327692865106428,0.010098041051706573,1.0158257672828275,0.08405206988062329,1.0051304734110058,0.48829110990902336,1.0380454004314454,0.02915578159137823,1.0337188085546491,0.013054262827494433 +20061,0.45387208568519344,0.007155728532325728,0.06399887050366299,0.3902846344836858,0.02030038746453118,0.009187165934563197,0.01576595864344245,0.14100640361490027,0.8589935963850998,0.31719915218455746,0.4525611124721144,0.7079652029531668,0.010098041051706573,0.7630245075206649,0.08405206988062329,0.9294326388900094,0.48829110990902336,0.6981149140817138,0.02915578159137823,0.7012659251382429,0.013054262827494433 +20063,0.5379308033648389,0.017199518969161262,0.11982442258996508,0.41960149990985174,0.050886817701391626,0.0223557352332482,0.03197347848752229,0.22275062487674085,0.7772493751232592,0.4246781799694083,0.4393227213466883,1.7054154942910693,0.010098041051706573,1.4199895311908597,0.08405206988062329,1.1011091690335535,0.48829110990902336,1.7336043137589852,0.02915578159137823,1.7108444097185327,0.013054262827494433 +20065,0.535737734417871,0.016285145597411142,0.11663458548313753,0.4206657053853736,0.048208960183944896,0.02119103515877397,0.03039760791743832,0.21770836360793566,0.7822916363920643,0.41333331776546434,0.4395663187490041,1.614108602586813,0.010098041051706573,1.385547323359455,0.08405206988062329,1.0972320039744234,0.48829110990902336,1.64369517960733,0.02915578159137823,1.6222007267682448,0.013054262827494433 +20067,0.4798560276805387,0.009367380097738739,0.07823893615742022,0.40316855600766477,0.026911787065881182,0.012088752428338519,0.019521230447010277,0.1630466882652297,0.8369533117347703,0.3439692356211678,0.44919917056213127,0.9285162635543633,0.010098041051706573,0.932178825478,0.08405206988062329,0.9821448131439984,0.48829110990902336,0.9246282016739642,0.02915578159137823,0.926396860801104,0.013054262827494433 +20069,0.4840802097204946,0.010024633971193405,0.08228413830640247,0.40377545423339034,0.02967512450184758,0.013135482928732206,0.020708621773613874,0.16998038063550028,0.83001961936449975,0.360642100806184,0.44264289195869716,0.992899544939623,0.010098041051706573,0.9752444671653379,0.08405206988062329,0.9911392553598954,0.48829110990902336,1.0141678678820365,0.02915578159137823,1.0012296738508555,0.013054262827494433 +20071,0.5123479484641964,0.013642994269926368,0.1021804948681019,0.41142313478566356,0.04078599873914597,0.01791572514705378,0.026628376888835653,0.1994357451306208,0.8005642548693792,0.3991564025188363,0.4392616510787673,1.3512034880969948,0.010098041051706573,1.2111068391613697,0.08405206988062329,1.048873501727853,0.48829110990902336,1.38936246372816,0.02915578159137823,1.3646723330625028,0.013054262827494433 +20073,0.5298078782481022,0.01613353976103941,0.1140983455073123,0.41746985550364457,0.04797495336270722,0.02103046346051014,0.030451679605799073,0.21535796312542094,0.784642036874579,0.4204701930549257,0.43836339561421916,1.6003783796598943,0.010098041051706573,1.3540286376371042,0.08405206988062329,1.0844669093643082,0.48829110990902336,1.630771997087303,0.02915578159137823,1.6058518993352928,0.013054262827494433 +20075,0.47904407041256586,0.010081295179842117,0.08133974265154575,0.399721863156705,0.03049517171684601,0.013389627250946449,0.021044609050603277,0.16979594921505603,0.830204050784944,0.3749110917093182,0.43907367944250036,0.9988554727115141,0.010098041051706573,0.9622065739798098,0.08405206988062329,0.9810828157650388,0.48829110990902336,1.0403450010854058,0.02915578159137823,1.0158476330098032,0.013054262827494433 +20077,0.5257483072581945,0.015670003323545723,0.11160519378543438,0.41635131022662353,0.04676998759568818,0.02057397334453418,0.029805142702723334,0.2122787505821206,0.7877212494178794,0.41906640730005296,0.43989691685167215,1.5524557900212286,0.010098041051706573,1.3214957065021584,0.08405206988062329,1.0764980688877113,0.48829110990902336,1.5954122147236194,0.02915578159137823,1.5659636227395048,0.013054262827494433 +20079,0.4995498877082686,0.0127131641808969,0.09548235145615164,0.40622250847323266,0.038093103012890206,0.016730238896186796,0.025449238391824527,0.19113676893049816,0.8088632310695019,0.3989543871925243,0.4391933860186056,1.2585373983339123,0.010098041051706573,1.1309820142486608,0.08405206988062329,1.0227233134084541,0.48829110990902336,1.2985285703993346,0.02915578159137823,1.2739847852280661,0.013054262827494433 +20081,0.47463743669316927,0.008898944821729584,0.07554779819096244,0.40042289949016485,0.02575695414623717,0.01151753052787581,0.018748931571283392,0.15916948885724017,0.8408305111427599,0.3409358679273647,0.4471619766251906,0.8812065388505841,0.010098041051706573,0.9020069307303249,0.08405206988062329,0.9715129330087473,0.48829110990902336,0.8851794248796101,0.02915578159137823,0.8827857514196621,0.013054262827494433 +20083,0.5155899930365666,0.013710656308437146,0.10247225895956505,0.41481549147019925,0.04019981311407607,0.017786983628173585,0.02659216915302846,0.19874757141048222,0.8012524285895177,0.39229947228877504,0.44246433628183773,1.35938990470558,0.010098041051706573,1.2161673145429446,0.08405206988062329,1.0556275014174776,0.48829110990902336,1.3729641035798295,0.02915578159137823,1.362115505477485,0.013054262827494433 +20085,0.5021917954368813,0.011407005491953474,0.0916691573034179,0.41239895519143066,0.032940508445395006,0.01471907249274339,0.022714440171269543,0.18253814207313046,0.8174618579268695,0.35934123771165954,0.44683804796586485,1.129358479236835,0.010098041051706573,1.0886594126407525,0.08405206988062329,1.0279907740361367,0.48829110990902336,1.1281789263056892,0.02915578159137823,1.1283152252182695,0.013054262827494433 +20087,0.5074004129598053,0.01176736184165485,0.09462164722286932,0.4137391503447837,0.033976318166459074,0.015179473788597037,0.023191470761745367,0.18648318922508436,0.8135168107749157,0.3590755304273255,0.4467662951067486,1.1662008607491272,0.010098041051706573,1.12477685863181,0.08405206988062329,1.038959600126387,0.48829110990902336,1.164535055925385,0.02915578159137823,1.1654793737341373,0.013054262827494433 +20089,0.5558342969083955,0.018949358278082418,0.13031376673544495,0.4266783254302182,0.05522963512901108,0.024493154129251817,0.0340917399006873,0.2344471499154745,0.7655528500845254,0.42382041830726075,0.44347847078906427,1.8787915830832085,0.010098041051706573,1.5442227692112054,0.08405206988062329,1.137605252547492,0.48829110990902336,1.8900681724920272,0.02915578159137823,1.8749877712618206,0.013054262827494433 +20091,0.48202525029084536,0.008903578346045698,0.07851812838161948,0.40477068988559173,0.025752277866560373,0.011533427333847122,0.018471186604173618,0.16289214794088702,0.837107852059113,0.32797875340835037,0.4478604725224486,0.8814111423313252,0.010098041051706573,0.9354532855771798,0.08405206988062329,0.9868486732698697,0.48829110990902336,0.8849500190204388,0.02915578159137823,0.8847555617200211,0.013054262827494433 +20093,0.4776549800999117,0.009492374413467754,0.0781035680259808,0.40132516467103707,0.027546527902550633,0.012231000830430366,0.019872868092953248,0.1635146105032628,0.8364853894967372,0.3526923109759519,0.4440124313924098,0.9395370822931854,0.010098041051706573,0.9286532230054286,0.08405206988062329,0.9779970710453103,0.48829110990902336,0.9435137624012605,0.02915578159137823,0.9381568719899542,0.013054262827494433 +20095,0.5225257151747118,0.015321135077907165,0.1099898218509304,0.41480762597044124,0.04616360932132116,0.02024537544277122,0.029321303493713008,0.21049647635840119,0.7895035236415988,0.41970801065472096,0.4385570309689948,1.5163885614991623,0.010098041051706573,1.300857069393688,0.08405206988062329,1.0697540733925617,0.48829110990902336,1.573113172096764,0.02915578159137823,1.5383651482712128,0.013054262827494433 +20097,0.5100987115395772,0.014479286495941216,0.1036092835943758,0.40851209587159454,0.04344893956346956,0.019018228099281196,0.02838526380950838,0.20311614448439363,0.7968838555156064,0.4193537302465056,0.4377144365399218,1.4339419225809253,0.010098041051706573,1.2256818888846834,0.08405206988062329,1.0439117483956417,0.48829110990902336,1.4789702359404813,0.02915578159137823,1.4483391864211752,0.013054262827494433 +20099,0.5045310576266449,0.012563652267801022,0.09610702430969223,0.4102757070028208,0.03691462916489417,0.01633967445403718,0.024901642976948662,0.19048782598595118,0.8095121740140488,0.38409917932680593,0.44263412158495197,1.2453830541641526,0.010098041051706573,1.1398274316919514,0.08405206988062329,1.0329411950048168,0.48829110990902336,1.2598619654836765,0.02915578159137823,1.2488856489820843,0.013054262827494433 +20101,0.5342571644142631,0.017538130386775416,0.11988714875268011,0.41662382259249553,0.05334582980212083,0.023199691934221604,0.03282713186636155,0.22439970249929975,0.7756002975007003,0.4449670407306961,0.43489232467238276,1.7367573511805352,0.010098041051706573,1.418494857082194,0.08405206988062329,1.0936711042762832,0.48829110990902336,1.8139846419344545,0.02915578159137823,1.7651464114738376,0.013054262827494433 +20103,0.4856617897526456,0.008935413038013016,0.07966759977441304,0.4069908828130606,0.02546959681018942,0.011568422433824511,0.018398427108222672,0.16403925829740254,0.8359607417025975,0.3196983074965129,0.45420516547778345,0.8852810552552158,0.010098041051706573,0.9503420082491356,0.08405206988062329,0.9942222696545637,0.48829110990902336,0.8743532821375155,0.02915578159137823,0.8828346952861748,0.013054262827494433 +20105,0.5265166878910184,0.015515939260153593,0.11216455077767243,0.4169813619038629,0.04754080623636149,0.02076293135437046,0.02946903605715376,0.21303133092884785,0.7869686690711521,0.4238487642195862,0.4367391510178044,1.5354291536802043,0.010098041051706573,1.3254926138901095,0.08405206988062329,1.077839313761141,0.48829110990902336,1.6197607583935703,0.02915578159137823,1.569225046757544,0.013054262827494433 +20107,0.5190224729993381,0.013696600988141412,0.10390167795273608,0.41680082547686004,0.03961115099416352,0.017662870501749924,0.026389225323888585,0.20018724305386404,0.799812756946136,0.38123687484799107,0.4459065202208451,1.3583311554654087,0.010098041051706573,1.2337786531265298,0.08405206988062329,1.0632889913946721,0.48829110990902336,1.3567209284952186,0.02915578159137823,1.3549858160879638,0.013054262827494433 +20109,0.5234606337935747,0.014765768761094391,0.10863957409975641,0.4168682925152526,0.04429664081850072,0.0194562067584947,0.028207983194620197,0.20754105865121875,0.7924589413487813,0.40773945576982923,0.4392253317404763,1.4628371656198356,0.010098041051706573,1.2867087228334402,0.08405206988062329,1.0717921451588164,0.48829110990902336,1.5107026813200422,0.02915578159137823,1.4819306787769109,0.013054262827494433 +20111,0.4760155856856273,0.009477637376260244,0.07850587044831148,0.3994444929214769,0.027928945482043513,0.012378292263970393,0.019910350965944033,0.16492289918456313,0.8350771008154368,0.35575614056062244,0.4432065747677021,0.9383373472198908,0.010098041051706573,0.9352279120610589,0.08405206988062329,0.9751974291091946,0.48829110990902336,0.9555929279762875,0.02915578159137823,0.9455907572668834,0.013054262827494433 +20113,0.506894809146857,0.013356907330921817,0.10006596446201418,0.4095220748787963,0.04046408033639732,0.017697605441532958,0.02635045198707503,0.19740972418011718,0.8025902758198828,0.40437406019064354,0.43736581418394466,1.3220334195924743,0.010098041051706573,1.1832650289136515,0.08405206988062329,1.0379712413474027,0.48829110990902336,1.3775207240464566,0.02915578159137823,1.344684757789412,0.013054262827494433 +20115,0.5203980388752658,0.015327938809490349,0.10974706831641343,0.41258961576254005,0.04664303643092618,0.020354400008852486,0.02945425936388723,0.21089062624757257,0.7891093737524274,0.4250048511223001,0.43638668419444304,1.5181474396541859,0.010098041051706573,1.2973000620171509,0.08405206988062329,1.0653183048548334,0.48829110990902336,1.5877813297762429,0.02915578159137823,1.5461642734539671,0.013054262827494433 +20117,0.5218797828263562,0.015598424378020427,0.11101785017094164,0.41323751241012424,0.04813673155146137,0.020821554919242397,0.029888922490048736,0.21272686512150318,0.7872731348784968,0.4335945208571596,0.432550242780459,1.5434721763543737,0.010098041051706573,1.3140669090756392,0.08405206988062329,1.0682034847413582,0.48829110990902336,1.6361359600115586,0.02915578159137823,1.582136666965196,0.013054262827494433 +20119,0.4973278696316237,0.01287295909972522,0.09466898544290889,0.40506536024147055,0.03923903922034648,0.017081539047947212,0.025884250382469748,0.1903552791301064,0.8096447208698936,0.41448674068668445,0.4353200126034172,1.2735755613541129,0.010098041051706573,1.1203266730506838,0.08405206988062329,1.0177468110081827,0.48829110990902336,1.3316833805357906,0.02915578159137823,1.2945781774391611,0.013054262827494433 +20121,0.4939210274977851,0.010168205771512152,0.08588919068612622,0.4096544419718271,0.029357347474789464,0.013167207058007105,0.0205867035526398,0.17389255752330035,0.8261074424766996,0.3418049144516109,0.4485148758522685,1.0067929509034932,0.010098041051706573,1.0198394363464702,0.08405206988062329,1.0114115595689963,0.48829110990902336,1.0079605335040003,0.02915578159137823,1.0085186319436052,0.013054262827494433 +20123,0.5231977184723715,0.015422045051526705,0.11112229622413236,0.41432744762881646,0.04678284476197874,0.020419950080436115,0.0294765143406127,0.21239063608416786,0.7876093639158321,0.42100322214021113,0.43648371928489,1.5278803607154883,0.010098041051706573,1.3153851675014647,0.08405206988062329,1.0712690796257631,0.48829110990902336,1.5908821197377185,0.02915578159137823,1.5534746801868367,0.013054262827494433 +20125,0.5042116788589337,0.012810457478197548,0.09702084076953268,0.4095120075109252,0.03821077888857041,0.016813890211568386,0.025406903519546612,0.192420851871376,0.807579148128624,0.3938409375294724,0.4400300308088655,1.2680584284514784,0.010098041051706573,1.1494206538168932,0.08405206988062329,1.0321224619174778,0.48829110990902336,1.3036448677245185,0.02915578159137823,1.2818829291696625,0.013054262827494433 +20127,0.5268230140350858,0.015276412952825964,0.11170117192034314,0.41706989445115306,0.04608057351911403,0.020212012357885736,0.028997239197694907,0.21202788971725514,0.7879721102827448,0.4125343783498997,0.4386232812293857,1.5130501379194334,0.010098041051706573,1.3215992298668076,0.08405206988062329,1.07846191292399,0.48829110990902336,1.5724035847555384,0.02915578159137823,1.538511037332244,0.013054262827494433 +20129,0.49539838957616456,0.012200320580309095,0.09246596433854112,0.40527746048577984,0.036880067071339354,0.016126823833772043,0.02462729156375945,0.18664970715316592,0.8133502928468341,0.39885018595936733,0.43727750826962836,1.2077234541774873,0.010098041051706573,1.094210572162721,0.08405206988062329,1.013906557256114,0.48829110990902336,1.2552712711832348,0.02915578159137823,1.2264245202319304,0.013054262827494433 +20131,0.5115888487903657,0.014864618274747662,0.10615047790107768,0.40825653176991994,0.04682420611266415,0.020181698247814253,0.029055790230562182,0.20749177420904863,0.7925082257909514,0.44111159024926794,0.43100993958669337,1.4723487848060728,0.010098041051706573,1.2535366288010537,0.08405206988062329,1.0468831115122907,0.48829110990902336,1.5934762489437557,0.02915578159137823,1.5232162526155142,0.013054262827494433 +20133,0.5047618018958171,0.013198556218061284,0.09801350780244152,0.4087793502285164,0.039451705776600364,0.017323083559315524,0.026148088402270717,0.19417774370864838,0.8058222562913516,0.40251294603311427,0.43909593307344924,1.3063321544804922,0.010098041051706573,1.1599578969786735,0.08405206988062329,1.0331273382015116,0.48829110990902336,1.3467101757021624,0.02915578159137823,1.321273311052034,0.013054262827494433 +20135,0.5373216758847763,0.017623935907206373,0.12135414721889208,0.4181781635368064,0.05385069623799812,0.023402285442366843,0.03279959975220814,0.2258500869503641,0.7741499130496359,0.44374829762402046,0.4345772121299655,1.7445340059202306,0.010098041051706573,1.436270743561432,0.08405206988062329,1.0995631092464497,0.48829110990902336,1.8304296548031553,0.02915578159137823,1.7767761077161701,0.013054262827494433 +20137,0.5149848412009659,0.013054964206384712,0.10213385840150829,0.4149303500465942,0.03921875590960825,0.017249984132545106,0.02535019123269725,0.19832400923360757,0.8016759907663924,0.3839936777423174,0.4398401665851673,1.2921147793025873,0.010098041051706573,1.207006972150065,0.08405206988062329,1.0544121228344783,0.48829110990902336,1.3401462591160078,0.02915578159137823,1.3155079879795748,0.013054262827494433 +20139,0.5071730965223508,0.01226250405799342,0.09597493935635519,0.41262814388664004,0.0355459509726384,0.01584278592698648,0.02417814379760386,0.18923507578467472,0.8107649242153253,0.3703670063354372,0.4456987503072153,1.215855652906016,0.010098041051706573,1.1410759626687232,0.08405206988062329,1.0383905101828494,0.48829110990902336,1.2174164256466626,0.02915578159137823,1.214504932951457,0.013054262827494433 +20141,0.5344888829214249,0.01763387039902315,0.12107167346478971,0.41551946357821634,0.05442585193144167,0.02353133724906689,0.032992024647246966,0.22651859998103727,0.7734814000189627,0.4495341509198673,0.43235588261821767,1.7456531345725328,0.010098041051706573,1.432072067051783,0.08405206988062329,1.0937691052665608,0.48829110990902336,1.8523260331774494,0.02915578159137823,1.789406210973291,0.013054262827494433 +20143,0.5118792574756355,0.013096952287453546,0.09977226253623449,0.4141223160670973,0.03791438651134957,0.016905264157570835,0.025586018765522918,0.19491366582867145,0.8050863341713286,0.38000928862949385,0.44587993405907517,1.2985534492488109,0.010098041051706573,1.1835474533080292,0.08405206988062329,1.0484894974925982,0.48829110990902336,1.298635836419225,0.02915578159137823,1.2958921579786442,0.013054262827494433 +20145,0.5151214539439352,0.013383498574598855,0.10232612774521013,0.4135715888399093,0.03901034646522941,0.017355256885189567,0.025981248639773195,0.19864466323770533,0.8013553367622946,0.3812354412781488,0.4448885605427423,1.3275099487261348,0.010098041051706573,1.216913596861032,0.08405206988062329,1.0543826211284726,0.48829110990902336,1.333710741696025,0.02915578159137823,1.3277154589841895,0.013054262827494433 +20147,0.5244634836874951,0.015261662220744623,0.11046595264656237,0.4162044441607386,0.04588242975101523,0.020144077112450094,0.029099570695446896,0.21062658522930494,0.789373414770695,0.41535358770513503,0.4390368431175851,1.5115933741617393,0.010098041051706573,1.3075580699491827,0.08405206988062329,1.0737859951864164,0.48829110990902336,1.5639365327258323,0.02915578159137823,1.5315127700858737,0.013054262827494433 +20149,0.4851133379765985,0.009979273812929264,0.08203190010870715,0.4046991851853977,0.028816093684334715,0.01287587826589865,0.020571015125151346,0.16909842234159372,0.8309015776584063,0.35127912002706463,0.4468294143872235,0.9879718934984011,0.010098041051706573,0.9757630312973808,0.08405206988062329,0.9931956052708597,0.48829110990902336,0.9872726864286141,0.02915578159137823,0.9864255096199108,0.013054262827494433 +20151,0.5098342543437953,0.013770042120230563,0.10188233436366882,0.4101896412227894,0.04144271263550818,0.018130061462676216,0.027008860238223704,0.19983422748791368,0.8001657725120863,0.40677034830767117,0.4374728464840487,1.3635503260825639,0.010098041051706573,1.20713153456213,0.08405206988062329,1.0440299031618432,0.48829110990902336,1.4094952314699982,0.02915578159137823,1.3800560924399117,0.013054262827494433 +20153,0.5517222105869282,0.018952377899092918,0.1292250950666921,0.4238425346359487,0.055839735929026045,0.024595208287284117,0.03435130494190395,0.23422130301627883,0.7657786969837211,0.4321121675337718,0.4404606841003932,1.879780046029886,0.010098041051706573,1.5305782818697822,0.08405206988062329,1.1291258606455485,0.48829110990902336,1.90551071443751,0.02915578159137823,1.8803001596459037,0.013054262827494433 +20155,0.505035007621456,0.012716049231184568,0.09692132217372497,0.41031213191879545,0.03777308762112849,0.01665115522868067,0.0251785500792764,0.19191010664823335,0.8080898933517666,0.3897293884767974,0.44082060210949753,1.2595614023361617,0.010098041051706573,1.148180053924253,0.08405206988062329,1.0341650454335043,0.48829110990902336,1.288472078562351,0.02915578159137823,1.2703547678372213,0.013054262827494433 +20157,0.5550029285173699,0.019548486015525657,0.13259090036550752,0.42422150607924053,0.05978531907278141,0.025960176972505085,0.03522231147094542,0.23890126259281141,0.7610987374071886,0.45090061918256713,0.43422327379237874,1.9369439657406413,0.010098041051706573,1.5683991606265382,0.08405206988062329,1.1358625210136768,0.48829110990902336,2.032194582071945,0.02915578159137823,1.973455777604485,0.013054262827494433 +20159,0.505269225229449,0.01302007872566285,0.09742726801568827,0.4096650753696581,0.03800749894719832,0.01685374802027684,0.02576859637503209,0.1928224858172301,0.80717751418277,0.39011151314515097,0.443432177520831,1.2913545316253874,0.010098041051706573,1.1577267144023455,0.08405206988062329,1.0344072441021526,0.48829110990902336,1.2988868080113214,0.02915578159137823,1.2897562955824022,0.013054262827494433 +20161,0.433171973936953,0.006019429390583768,0.05627704186366761,0.37645836706502045,0.017498472920724328,0.007860857016503664,0.013896165386405816,0.12991847406974344,0.8700815259302566,0.3109344830724182,0.4492310301657039,0.5947549623268225,0.010098041051706573,0.6700187355188147,0.08405206988062329,0.8874719646193479,0.48829110990902336,0.6016023385408649,0.02915578159137823,0.5966432917905902,0.013054262827494433 +20163,0.5203662770295585,0.014524059123397437,0.10686453892032369,0.415282416029506,0.04316578347347813,0.01896493894043652,0.027911222853075898,0.20536407457136857,0.7946359254286315,0.4039299089257455,0.439351203994454,1.4396145163403433,0.010098041051706573,1.268043476857568,0.08405206988062329,1.0652216562052024,0.48829110990902336,1.4714718536407017,0.02915578159137823,1.4494961865738887,0.013054262827494433 +20165,0.5420973052226521,0.01797709682849999,0.12389696079090866,0.42082352177938676,0.05410189611167772,0.02364783209843482,0.033162121735905645,0.2285511468093745,0.7714488531906255,0.43666846842983753,0.4370980279438027,1.7832794975053345,0.010098041051706573,1.465523482558479,0.08405206988062329,1.1099998184939812,0.48829110990902336,1.839055486584354,0.02915578159137823,1.7998126682101692,0.013054262827494433 +20167,0.5337583615704768,0.016596861387543134,0.11689415180531271,0.41868371642927493,0.049761984348225936,0.021912967754320063,0.031094335157036603,0.219002005816593,0.780997994183407,0.4257012312395624,0.440355585520401,1.64423549980632,0.010098041051706573,1.3834615894116618,0.08405206988062329,1.0929457271141807,0.48829110990902336,1.698450777824497,0.02915578159137823,1.6655874170195923,0.013054262827494433 +20169,0.4940605858997978,0.01112890663465675,0.08890084434892905,0.4072183581716284,0.03265040290853023,0.01448597806460899,0.022525388489325567,0.17993915500670873,0.8200608449932912,0.3672676356186212,0.4436691977489928,1.1023800868831672,0.010098041051706573,1.055217608975052,0.08405206988062329,1.0116173395040722,0.48829110990902336,1.1161474396853983,0.02915578159137823,1.1072882922681497,0.013054262827494433 +20171,0.5123656019770916,0.012621125356565272,0.09921763028276001,0.414760247177298,0.037714557933501175,0.01665157607343152,0.024633045832631005,0.19364615793859663,0.8063538420614034,0.3801195193436749,0.4415158757207709,1.2488846435521892,0.010098041051706573,1.1750076228991406,0.08405206988062329,1.0492341794162217,0.48829110990902336,1.2877147972488483,0.02915578159137823,1.2655505372315163,0.013054262827494433 +20173,0.47913668253681685,0.009208260560363139,0.07837471161588061,0.402042848879401,0.026552055872812258,0.011909177956072324,0.01921844203539055,0.16357485133661895,0.836425148663381,0.33878345866132886,0.4485218776699932,0.9113986432516499,0.010098041051706573,0.9342592116229012,0.08405206988062329,0.9812557207971793,0.48829110990902336,0.9117954757440974,0.02915578159137823,0.9111753661561426,0.013054262827494433 +20175,0.4553248275817824,0.007135112292289549,0.06428245221167656,0.3919131933459019,0.020828447547185,0.009302545556261829,0.015670378288361594,0.1411793258739676,0.8588206741260325,0.32401451454587826,0.4466269286363152,0.7058146242805322,0.010098041051706573,0.7685038707764233,0.08405206988062329,0.9326789283151782,0.48829110990902336,0.7154951950565367,0.02915578159137823,0.7102736095791841,0.013054262827494433 +20177,0.496579869336981,0.01111953143792467,0.08938699644847528,0.4093051222788172,0.032212118554616274,0.014373588223201119,0.02239223159160911,0.18000527602502736,0.8199947239749726,0.360366941887169,0.44621679256614,1.1016300153852987,0.010098041051706573,1.0623347596796633,0.08405206988062329,1.0168790125828178,0.48829110990902336,1.1045318120386436,0.02915578159137823,1.1011667000938108,0.013054262827494433 +20179,0.5262336766314807,0.015493127132028384,0.1117344410642425,0.41652942783326874,0.046644076025567804,0.020454755567920757,0.02944153485425479,0.2123285643356681,0.787671435664332,0.4174547756385112,0.4385284758713743,1.534602642728535,0.010098041051706573,1.3229963939510352,0.08405206988062329,1.077209256861905,0.48829110990902336,1.5896015524865788,0.02915578159137823,1.5558060393568012,0.013054262827494433 +20181,0.5163139534928405,0.014002850091081306,0.1031722279299751,0.41451567626436836,0.039602821216812606,0.01784044306469565,0.027120805076741895,0.1998245974799241,0.8001754025200759,0.38385156559468475,0.4504841452336188,1.388506895284121,0.010098041051706573,1.225957013407625,0.08405206988062329,1.0571595431943202,0.48829110990902336,1.3575490715478284,0.02915578159137823,1.3658049873237101,0.013054262827494433 +20183,0.5512148736609763,0.01984374199392856,0.13212306451685543,0.42077649978480325,0.06063818973013421,0.026322937831405997,0.03600001186857199,0.23969430222254393,0.760305697777456,0.4589523407731613,0.434098345424794,1.9658285752258569,0.010098041051706573,1.5644300625100227,0.08405206988062329,1.1280721487447964,0.48829110990902336,2.0622006987700705,0.02915578159137823,2.0018842929699954,0.013054262827494433 +20185,0.5247181516339968,0.015461252400986966,0.11089982888689087,0.4154518820726675,0.04676121330529619,0.02040745684440752,0.029465823419372674,0.21135123407022155,0.7886487659297785,0.4216527092479913,0.43641846312178917,1.531987689723676,0.010098041051706573,1.3147533049669562,0.08405206988062329,1.0737736836046015,0.48829110990902336,1.5877243679015134,0.02915578159137823,1.5528466940998624,0.013054262827494433 +20187,0.4993853204885503,0.012682152747171736,0.09435188621543916,0.40730507722677484,0.03751664430703659,0.016495493079423836,0.025395525713020048,0.1889360426596729,0.8110639573403271,0.39762474087028477,0.4396846622108458,1.256267735069645,0.010098041051706573,1.1199842430898976,0.08405206988062329,1.022176434470503,0.48829110990902336,1.2785711148577152,0.02915578159137823,1.2624044148075415,0.013054262827494433 +20189,0.483199261893298,0.010356132886800408,0.0827158410743076,0.40288788736767744,0.0303767304763781,0.01342949199767509,0.021432426958233414,0.17118370742166664,0.8288162925783333,0.36724199478415787,0.4420980068318506,1.0259301891623316,0.010098041051706573,0.9796493423672213,0.08405206988062329,0.9892970669008576,0.48829110990902336,1.0381748752248199,0.02915578159137823,1.0288076355696307,0.013054262827494433 +20191,0.4983592591341159,0.011505800983497249,0.09138899818044766,0.40871614098277226,0.033893385220058955,0.01502898287235202,0.02308736272601462,0.18337975367254794,0.8166202463274521,0.3708694251482704,0.4434193508489524,1.138427961612987,0.010098041051706573,1.0833867297191095,0.08405206988062329,1.0202886148271455,0.48829110990902336,1.1594205540195546,0.02915578159137823,1.1467084015379607,0.013054262827494433 +20193,0.4920068155038757,0.01151403625508057,0.08995138346791237,0.4043532893991094,0.034516507732334986,0.01519066348435609,0.023402188531247835,0.18282548256123454,0.8171745174387655,0.3837240340460998,0.44009850597155026,1.139828706211448,0.010098041051706573,1.0650174597787663,0.08405206988062329,1.0077932123808158,0.48829110990902336,1.1769775793063504,0.02915578159137823,1.1535522597352164,0.013054262827494433 +20195,0.5474775878236882,0.018271794288901678,0.12685825905696438,0.42238894798317617,0.05550665126220507,0.02421322840925049,0.03337450645520488,0.23171406807947417,0.7682859319205259,0.43754858118682194,0.4362221077771535,1.8105254863896691,0.010098041051706573,1.5017174426283892,0.08405206988062329,1.121022735251145,0.48829110990902336,1.8876212793391756,0.02915578159137823,1.8406658231754658,0.013054262827494433 +20197,0.5053442298915174,0.0115371439405486,0.09313584505125588,0.41364102902816025,0.03344633028462422,0.014933221128384598,0.02283026748524523,0.18430178785508133,0.8156982121449187,0.3591134032897597,0.44648309698865896,1.143117281190729,0.010098041051706573,1.10778584525062,0.08405206988062329,1.0348691729136994,0.48829110990902336,1.146293785999526,0.02915578159137823,1.1433823246698904,0.013054262827494433 +20199,0.5341960616118784,0.01618443198707551,0.11589137197616578,0.42021745348837,0.048121468374565414,0.021155408711908963,0.030296801399547484,0.2169453882278282,0.7830546117721718,0.41522908525461305,0.4396251699395492,1.605246575576731,0.010098041051706573,1.3762781586575938,0.08405206988062329,1.0939715303553268,0.48829110990902336,1.639339140269196,0.02915578159137823,1.613904318998804,0.013054262827494433 +20201,0.5313227959025383,0.01657606316286879,0.11638107188870042,0.4168066567120704,0.0501240898415409,0.02189151557502476,0.03119772629877784,0.21904023841289968,0.7809597615871003,0.4306893640700994,0.4367463956798258,1.641627420786791,0.010098041051706573,1.3768664515709368,0.08405206988062329,1.0873773476942388,0.48829110990902336,1.706034647140858,0.02915578159137823,1.6660128449304334,0.013054262827494433 +20203,0.5019176948923572,0.012385613736139034,0.0944006996967722,0.4092273349290412,0.03603050808734615,0.015958331099631448,0.024676583157314847,0.18808003913274599,0.811919960867254,0.3816762820941053,0.442911630914136,1.2271008663676757,0.010098041051706573,1.1215118937587616,0.08405206988062329,1.027340382126111,0.48829110990902336,1.2310156994914956,0.02915578159137823,1.2228000661711478,0.013054262827494433 +20205,0.5169518264139685,0.014456239384491608,0.10602263198803367,0.4131740801283901,0.04374479075966281,0.019131761942623157,0.027964384002224674,0.20509189942029935,0.7949081005797006,0.4125986116303932,0.43734949031381826,1.4315405014435085,0.010098041051706573,1.2547257987657916,0.08405206988062329,1.0582868125953824,0.48829110990902336,1.4894980990171538,0.02915578159137823,1.45493244150734,0.013054262827494433 +20207,0.536689221493525,0.016818295629672866,0.11883515242630788,0.4201091141879777,0.050634065832501976,0.022169817203595725,0.03133712203660452,0.22142265517389673,0.7785773448261033,0.42608659810405175,0.43784390684591107,1.6664909608794565,0.010098041051706573,1.4083623140208272,0.08405206988062329,1.099009208771078,0.48829110990902336,1.7235944281294817,0.02915578159137823,1.6865047543248783,0.013054262827494433 +20209,0.47548596779386687,0.008842566063768674,0.07580947792983544,0.40084475507898654,0.025587548026301074,0.011446523814011114,0.018596902248863234,0.159435783734212,0.840564216265788,0.33752439305786175,0.4473474286104083,0.8749388018660857,0.010098041051706573,0.9038000874440008,0.08405206988062329,0.9734482920952294,0.48829110990902336,0.8785974686042196,0.02915578159137823,0.8767529324824889,0.013054262827494433 +21001,0.4982454188903074,0.011382284124800333,0.09070118361651916,0.4095274205590743,0.03228710945866538,0.014621194498275744,0.022844734127512836,0.18204117926167573,0.8179588207383243,0.35597230566663757,0.4528492870194558,1.1285460611453755,0.010098041051706573,1.0794949674403076,0.08405206988062329,1.02088535839293,0.48829110990902336,1.1080624153884808,0.02915578159137823,1.1159827691786208,0.013054262827494433 +21003,0.4954502643735963,0.011074845721015815,0.08906164262434582,0.4082562331701217,0.03170974407721026,0.014237769403433685,0.022353092767076983,0.17975899707500917,0.8202410029249908,0.3560426592507301,0.44900297425189084,1.0977028575526708,0.010098041051706573,1.0584009417265494,0.08405206988062329,1.014699199935785,0.48829110990902336,1.0878927117706232,0.02915578159137823,1.091341072416448,0.013054262827494433 +21005,0.4900550121855143,0.009616601678550834,0.08320710832579481,0.4082555377189909,0.027254988172864657,0.012427398073727102,0.01962351458393082,0.16979136271806172,0.8302086372819383,0.3275560071880952,0.4559678395347808,0.9543440983952528,0.010098041051706573,0.9915225913548219,0.08405206988062329,1.0034374316939447,0.48829110990902336,0.9354228863261648,0.02915578159137823,0.9466507649597693,0.013054262827494433 +21007,0.511042336615199,0.012697780535110146,0.09864975639075944,0.4139512772109467,0.03653807443231033,0.016349668811576734,0.024846827014786504,0.1930363676797291,0.8069636323202709,0.37038180091981315,0.44746936081335614,1.2597504067983119,0.010098041051706573,1.1726195319914132,0.08405206988062329,1.0468930689499134,0.48829110990902336,1.2526268728559091,0.02915578159137823,1.2536782795124763,0.013054262827494433 +21009,0.5024533617488756,0.011669001074312924,0.09286385416145129,0.411032430942574,0.033884784085117,0.0150906370645114,0.02322404816577792,0.18482084354699635,0.8151791564530037,0.36488668697947396,0.44535143050061715,1.156771598502972,0.010098041051706573,1.1034334853309165,0.08405206988062329,1.028698824315459,0.48829110990902336,1.1609527333551934,0.02915578159137823,1.1574466452157157,0.013054262827494433 +21011,0.4996130678909391,0.011617089856155987,0.09166820733629938,0.40978864153989086,0.03315485249317547,0.0148995709276241,0.023252173737561024,0.1834784020427378,0.8165215979572622,0.36168322100531136,0.449393371021361,1.1515495466194055,0.010098041051706573,1.089543453135355,0.08405206988062329,1.023178967255741,0.48829110990902336,1.1366556015589804,0.02915578159137823,1.1403660698550415,0.013054262827494433 +21013,0.5040119692142773,0.011442653426650679,0.09273633654756858,0.41241675685874,0.032702716828802325,0.01473433878914519,0.022703138269690403,0.1839962981278771,0.8160037018721229,0.3526418882422388,0.45055396670187925,1.134730934422292,0.010098041051706573,1.1032251161857078,0.08405206988062329,1.0321021155513592,0.48829110990902336,1.122275527343822,0.02915578159137823,1.1279485626739385,0.013054262827494433 +21015,0.47475985340550686,0.00778737509083289,0.07241941589910689,0.4031612758228331,0.022035053686997326,0.010075657979456146,0.016402766651335735,0.15253904764616072,0.8474609523538392,0.30426997254018273,0.45725588521718447,0.7720304318147806,0.010098041051706573,0.866576986647708,0.08405206988062329,0.9718171925985546,0.48829110990902336,0.7571967063909284,0.02915578159137823,0.7676792962014558,0.013054262827494433 +21017,0.5020613293980503,0.011656826107416939,0.09316522678567052,0.41068144333390255,0.03405699689313507,0.01514035090985438,0.023217932600770045,0.1855654306165575,0.8144345693834425,0.36555481125467815,0.4445591887435691,1.1547258144868784,0.010098041051706573,1.1054007535515207,0.08405206988062329,1.0280319632235444,0.48829110990902336,1.1654133543166072,0.02915578159137823,1.15928260299077,0.013054262827494433 +21019,0.5110509561290062,0.012528493056728995,0.09805323450472064,0.41430113947787606,0.0359838877928115,0.016095598844535847,0.024515154323606018,0.19186586646355624,0.8081341335364438,0.3669831798468525,0.447300162150663,1.242234610332062,0.010098041051706573,1.1657116853791063,0.08405206988062329,1.0464035672225234,0.48829110990902336,1.2333865729189855,0.02915578159137823,1.2360858998319961,0.013054262827494433 +21021,0.5022875720047377,0.012003013873749434,0.09384113699516702,0.41016013274411983,0.034577477197185486,0.015446223335257038,0.023896696917749375,0.1868275112215635,0.8131724887784365,0.36846822517683564,0.44671342698519134,1.1899912935829722,0.010098041051706573,1.1143237575870388,0.08405206988062329,1.028611572408531,0.48829110990902336,1.1844505459699706,0.02915578159137823,1.185577082031429,0.013054262827494433 +21023,0.49417441364470893,0.010305799453998083,0.08657334318551416,0.40899302061635573,0.0297637661765481,0.013318045939156793,0.020854579212204072,0.1751878300355648,0.8248121699644352,0.343798276482966,0.4474583579295332,1.0206701137042116,0.010098041051706573,1.030245957593266,0.08405206988062329,1.0121783582758612,0.48829110990902336,1.0216643468625946,0.02915578159137823,1.0215144770402507,0.013054262827494433 +21025,0.5005810065770666,0.010328386246748523,0.08837163651972585,0.4133091585787091,0.029009015281995575,0.013216051069557543,0.02063279691207865,0.17653813340622754,0.8234618665937725,0.32826160547021593,0.45558427065120255,1.0248791236599484,0.010098041051706573,1.0544729369875807,0.08405206988062329,1.0252842632185688,0.48829110990902336,0.9962350788911498,0.02915578159137823,1.0122983052918157,0.013054262827494433 +21027,0.5079103386014698,0.011863075033501369,0.09451726974235114,0.4142472885183901,0.03328304579007081,0.015191898295910873,0.02335663232641872,0.18609046234932777,0.8139095376506722,0.35213719017485967,0.4564455546446115,1.1761536243563173,0.010098041051706573,1.1251330636083985,0.08405206988062329,1.0400602175956295,0.48829110990902336,1.144244529798768,0.02915578159137823,1.1587694875901478,0.013054262827494433 +21029,0.4860222171526193,0.008712028236432988,0.07899867023793047,0.4083112015528649,0.024215531428968977,0.01116551728627531,0.01792516458912672,0.16254127373177993,0.83745872626822,0.30653087395061135,0.46108908734986637,0.8647479065014645,0.010098041051706573,0.9423248850818924,0.08405206988062329,0.9951238638063875,0.48829110990902336,0.83442928590113985,0.02915578159137823,0.8533553031652924,0.013054262827494433 +21031,0.4993432034073624,0.011184647173125482,0.09064815812093849,0.41032892403804544,0.03194501162202158,0.01439298662262324,0.022398717148456083,0.1815347790905808,0.8184652209094192,0.3524066267226528,0.450555059829789,1.1089321837377368,0.010098041051706573,1.0787838047598655,0.08405206988062329,1.0223613113272232,0.48829110990902336,1.0961291931408987,0.02915578159137823,1.1004404923895892,0.013054262827494433 +21033,0.5145669752632678,0.013599727861328698,0.10248204453149448,0.4137009265375034,0.039414726456404744,0.017562318499656913,0.02642946111022899,0.19916172132706655,0.8008382786729334,0.38460128929504256,0.4455775817468119,1.348883057999449,0.010098041051706573,1.2170938700431475,0.08405206988062329,1.0539319863144985,0.48829110990902336,1.3502019272470025,0.02915578159137823,1.3459648996191307,0.013054262827494433 +21035,0.48573853323265126,0.011084128466934963,0.08700581897044471,0.39995672377359637,0.032608976075464244,0.01443892369799693,0.022819125328947427,0.1791206853436354,0.8208793146563647,0.3747907491858825,0.442789852235229,1.0976387190338714,0.010098041051706573,1.0328599111442256,0.08405206988062329,0.9948677318098291,0.48829110990902336,1.1140638857437137,0.02915578159137823,1.1038086265973819,0.013054262827494433 +21037,0.4874451938962,0.009884138353361722,0.08353528898246296,0.4054162994244673,0.02849090347793117,0.01278112824974829,0.02027743524222032,0.17137370524623852,0.8286262947537615,0.3410642834301133,0.4486038240117044,0.9786714662590597,0.010098041051706573,0.9944475370953684,0.08405206988062329,0.9984261284622316,0.48829110990902336,0.9782240144811614,0.02915578159137823,0.979232624764012,0.013054262827494433 +21039,0.5206705453004512,0.014640740333112542,0.10722167410091754,0.41508637261305714,0.04340305040912548,0.019076740005342555,0.028119010121196986,0.20592997831103665,0.7940700216889633,0.40479735811879164,0.4395253288771536,1.4515095531492435,0.010098041051706573,1.2720310888904214,0.08405206988062329,1.0661481224144689,0.48829110990902336,1.4783242401608692,0.02915578159137823,1.4601743420542186,0.013054262827494433 +21041,0.4890253618241207,0.010160651313163477,0.08457457889749898,0.405886923238421,0.02902446087900147,0.013089882783002438,0.02077735043283457,0.17294517932981246,0.8270548206701875,0.34318185508411414,0.45099486386920856,1.0069640538123314,0.010098041051706573,1.0056922847557925,0.08405206988062329,1.001547365040909,0.48829110990902336,0.9972841092505222,0.02915578159137823,1.001257605538986,0.013054262827494433 +21043,0.5013725331103824,0.011778420522008979,0.09261169133124261,0.4103939227199477,0.03341451986056944,0.015133635028576405,0.0234923529794079,0.1847163241207176,0.8152836758792824,0.3608023930915624,0.4529059550077432,1.1678120569750954,0.010098041051706573,1.1004756107979636,0.08405206988062329,1.026888123641706,0.48829110990902336,1.1463201491078316,0.02915578159137823,1.1543824332496488,0.013054262827494433 +21045,0.5050666349504528,0.011990384784326881,0.09455860439036382,0.41203698605361294,0.03436222163615439,0.015440775184372296,0.02374020367728932,0.18722005740814784,0.8127799425918522,0.36339603209770027,0.44935322715357273,1.1885341424564757,0.010098041051706573,1.1217786809469323,0.08405206988062329,1.03415399564582,0.48829110990902336,1.1784366230328902,0.02915578159137823,1.1824565546324528,0.013054262827494433 +21047,0.46024688207202014,0.008048192706661995,0.06886705577370347,0.39274962009959313,0.02298458085586963,0.010348736589040609,0.017486685994328153,0.14963068400086857,0.8503693159991315,0.3337529185420204,0.4502469135258486,0.7968191807355274,0.010098041051706573,0.8200586642022563,0.08405206988062329,0.9425985117122855,0.48829110990902336,0.7904986001098186,0.02915578159137823,0.7912600291887142,0.013054262827494433 +21049,0.4985211113273442,0.010604114821794308,0.08840946385919103,0.41168204283642507,0.0298302773292229,0.013655831178182148,0.021271144954243114,0.17734347021692862,0.8226565297830714,0.3374104538936388,0.45778425146602186,1.0514596957953501,0.010098041051706573,1.0528127157928129,0.08405206988062329,1.0208889307771065,0.48829110990902336,1.0259169231967995,0.02915578159137823,1.0403245534023378,0.013054262827494433 +21051,0.4884036352109194,0.009533885707399735,0.0824967286969896,0.40709927917102184,0.02712775439424248,0.012362477277895259,0.01952050521344396,0.16891096369780909,0.8310890363021909,0.32883430437445216,0.4557132558129853,0.9452716375987511,0.010098041051706573,0.9830608208443401,0.08405206988062329,0.9998785846146194,0.48829110990902336,0.9319052293505323,0.02915578159137823,0.9413719705286816,0.013054262827494433 +21053,0.5080393168822741,0.011941070864077722,0.09484390188955519,0.414783550876219,0.033826667116101765,0.015332082023761982,0.023504225888180182,0.18668614561485403,0.8133138543851459,0.35665621555187166,0.4532542910934252,1.1839379901459002,0.010098041051706573,1.128753747816746,0.08405206988062329,1.0404612733631662,0.48829110990902336,1.159763037065843,0.02915578159137823,1.1695857054248937,0.013054262827494433 +21055,0.5133238952652688,0.01291738284302259,0.09956715930058271,0.415494556075221,0.03699488558325094,0.016560996724709058,0.025164195476127825,0.19396556485867408,0.8060344351413259,0.37155710620976234,0.447656384487019,1.2808469401613327,0.010098041051706573,1.1814601696192764,0.08405206988062329,1.0515705516809795,0.48829110990902336,1.268064579049951,0.02915578159137823,1.2723665131694397,0.013054262827494433 +21057,0.5159828419569146,0.013746663606632414,0.10275096713482168,0.4138021457258745,0.039172342232094794,0.017572119102716055,0.026641706833694063,0.1991364029569835,0.8008635970430165,0.38123575207516974,0.4485848458742101,1.3634855253094997,0.010098041051706573,1.2222458164198722,0.08405206988062329,1.056386657809679,0.48829110990902336,1.3405642385778278,0.02915578159137823,1.3455774587666294,0.013054262827494433 +21059,0.49598699773602595,0.011185629162406731,0.0895678577469877,0.40836845243437825,0.03240799293338494,0.014449285810674225,0.02255226288887505,0.18058509226215133,0.8194149077378486,0.36182614777872,0.4458556208764586,1.1080492049542823,0.010098041051706573,1.0636266109921748,0.08405206988062329,1.015497232148014,0.48829110990902336,1.1104064248388301,0.02915578159137823,1.1079146061937504,0.013054262827494433 +21061,0.5073107730805332,0.012284715025154802,0.0959552890869454,0.41256914839534076,0.03484995553360479,0.015788880613846992,0.024215363987952727,0.1891449860295258,0.8108550139704742,0.36318952154921996,0.45305310644147706,1.2181896536188197,0.010098041051706573,1.1408254573840466,0.08405206988062329,1.0389010613995588,0.48829110990902336,1.19495672123307,0.02915578159137823,1.2034704920087433,0.013054262827494433 +21063,0.4981255290613317,0.010020712011754144,0.08689603839378052,0.41232434240033233,0.027857133848827383,0.012857635176792491,0.02011684089076339,0.17444606494577283,0.8255539350542271,0.32058002141120884,0.4615562838074858,0.9940890157114914,0.010098041051706573,1.0363497180955967,0.08405206988062329,1.0197409693753046,0.48829110990902336,0.9609357573274192,0.02915578159137823,0.9817264438825181,0.013054262827494433 +21065,0.5030215312089663,0.011403549337352003,0.09231594566149388,0.41217814092498245,0.032587667650160614,0.014682296858479889,0.02267010183429845,0.18352285127760026,0.8164771487223997,0.35300150387511364,0.45054764324035707,1.1305726923895298,0.010098041051706573,1.0971561048948741,0.08405206988062329,1.030016137007707,0.48829110990902336,1.1183695846086565,0.02915578159137823,1.1241074360660699,0.013054262827494433 +21067,0.47523464455859166,0.008514123449958427,0.07566254781296236,0.40052314500709985,0.024526436624284085,0.011032005696856632,0.017915620309766202,0.15921092596950584,0.8407890740304942,0.32415557410138207,0.449800591331463,0.8431750795391046,0.010098041051706573,0.9039226202795152,0.08405206988062329,0.9730678688196259,0.48829110990902336,0.8420147026035678,0.02915578159137823,0.8446768334852297,0.013054262827494433 +21069,0.5003009209912177,0.011102770807945962,0.09014761955533508,0.41185135854419463,0.03134601729713696,0.014195544891608706,0.02219218542701995,0.18018679513267882,0.8198132048673212,0.3477187467817263,0.4528659815709756,1.1009487829029765,0.010098041051706573,1.0732180929800168,0.08405206988062329,1.02452283771144,0.48829110990902336,1.0772730423927288,0.02915578159137823,1.086671530774475,0.013054262827494433 +21071,0.4996751799762641,0.010500312279638426,0.08851553082954336,0.4124752460459148,0.029611476914889558,0.013552439294972267,0.021014276274713542,0.17714614288776176,0.8228538571122382,0.33453425220838523,0.4576752228173288,1.0409493550169238,0.010098041051706573,1.0549918615663096,0.08405206988062329,1.0232831316711177,0.48829110990902336,1.018046077336702,0.02915578159137823,1.0317649578084664,0.013054262827494433 +21073,0.4972113676144656,0.01064732797297208,0.08851573643167582,0.4101474953588903,0.030359489997512132,0.013726595928744964,0.02141408798446448,0.17802436186517429,0.8219756381348258,0.34298409775922994,0.45213526083178,1.0549998324974383,0.010098041051706573,1.0533505115075066,0.08405206988062329,1.0182051757298471,0.48829110990902336,1.0426204139745012,0.02915578159137823,1.0494476368583783,0.013054262827494433 +21075,0.5125738037920842,0.013412410006368853,0.10156928684857891,0.4127790503517458,0.03968969942326848,0.017533762514627876,0.026166787898917562,0.19815543848935863,0.8018445615106413,0.39076477402503085,0.4417711086103246,1.3294901143399835,0.010098041051706573,1.2047073681296827,0.08405206988062329,1.0493243534453973,0.48829110990902336,1.3524016534384795,0.02915578159137823,1.336818961192272,0.013054262827494433 +21077,0.48905788644405335,0.009323142606653748,0.08199836526577722,0.4084376321228071,0.026340889106347402,0.012056235928394521,0.01906347462146546,0.16766597071358663,0.8323340292864134,0.3212367590618421,0.4577004170101955,0.9244014301997671,0.010098041051706573,0.9752209850659943,0.08405206988062329,1.0015107436794335,0.48829110990902336,0.90804739892709,0.02915578159137823,0.9200154038126735,0.013054262827494433 +21079,0.5021521924064435,0.010782828446893966,0.09031775453596617,0.41303454094981334,0.030729014552904943,0.013934665698067127,0.021473227857912672,0.17986131675168057,0.8201386832483194,0.34023226895735204,0.4534693318614679,1.0688214844401003,0.010098041051706573,1.0739551485685763,0.08405206988062329,1.0282673165159064,0.48829110990902336,1.0550944605576946,0.02915578159137823,1.0636159087125114,0.013054262827494433 +21081,0.47683791924497604,0.008509731830598116,0.07542367146550713,0.4028177240962797,0.02428310803558205,0.011016884419965506,0.017846172645146183,0.1581746510112551,0.8418253489887448,0.32195605920201376,0.4536851050459628,0.8435827778287788,0.010098041051706573,0.9000151080331532,0.08405206988062329,0.9763995463116779,0.48829110990902336,0.8335246839388251,0.02915578159137823,0.8403372716087281,0.013054262827494433 +21083,0.5050442827498345,0.012135844863188725,0.09500570462332505,0.41182716839946293,0.035526144147818225,0.01577186733467878,0.02402926887343861,0.18811361274311186,0.8118863872568881,0.37393695766660445,0.44395100321202124,1.2020793299419854,0.010098041051706573,1.126688467360553,0.08405206988062329,1.0338652841633875,0.48829110990902336,1.2144109153695593,0.02915578159137823,1.206482088137121,0.013054262827494433 +21085,0.5016867593130663,0.011449479376339229,0.09136130690337219,0.41197746864649937,0.03223421262250193,0.01459548836727793,0.022821968417138235,0.18210826817209308,0.8178917318279069,0.35282127319603995,0.4527949399046022,1.1352961063182652,0.010098041051706573,1.086741204435962,0.08405206988062329,1.0273968912566205,0.48829110990902336,1.1054607450900518,0.02915578159137823,1.1174661166620519,0.013054262827494433 +21087,0.5138637194163163,0.013196774523539623,0.10086127074797012,0.41444418683022854,0.03828747711079562,0.01705340947412205,0.025681467721693756,0.19628019441134253,0.8037198055886574,0.37960534134521773,0.44540436615275525,1.3092437158255301,0.010098041051706573,1.1992817663401774,0.08405206988062329,1.0524007007777778,0.48829110990902336,1.3118084875182296,0.02915578159137823,1.3071720910993867,0.013054262827494433 +21089,0.5092666657894822,0.012401675015672155,0.097262394428725,0.413228021849242,0.03587247240034999,0.016017695105217965,0.024352025861434822,0.19098519687705376,0.8090148031229463,0.3688216048046992,0.4465177344470321,1.23021606580357,0.010098041051706573,1.1565176954646827,0.08405206988062329,1.0428559311522392,0.48829110990902336,1.2295047526412906,0.02915578159137823,1.2283070758565315,0.013054262827494433 +21091,0.4983852884487089,0.010917178636390397,0.08928130362922065,0.41089041820559746,0.030958900207328274,0.01406771821338406,0.021905098102657845,0.17914112976151583,0.8208588702384841,0.346756811884138,0.4543998048759527,1.0818445410527757,0.010098041051706573,1.0606187384585781,0.08405206988062329,1.0201419492126007,0.48829110990902336,1.0658919872451733,0.02915578159137823,1.074581446070228,0.013054262827494433 +21093,0.4803360733455959,0.008896598701879418,0.07777552034900406,0.40388705057597585,0.025412851119796236,0.011497191740063445,0.018521612669882538,0.16191896604243905,0.838081033957561,0.32674614076203545,0.45241644417879984,0.8818598778616296,0.010098041051706573,0.9278188600264194,0.08405206988062329,0.9835615398439199,0.48829110990902336,0.8722080153615723,0.02915578159137823,0.8784971826783767,0.013054262827494433 +21095,0.5034883011998623,0.011489978806700905,0.09270912154630095,0.4117543040016536,0.03272776508255096,0.014777759170161307,0.02282074633972458,0.1841336160648936,0.8158663839351064,0.35301558829037116,0.4515358483198162,1.1394078808844663,0.010098041051706573,1.103942399410311,0.08405206988062329,1.030984049879974,0.48829110990902336,1.1234372143248632,0.02915578159137823,1.1301753378214614,0.013054262827494433 +21097,0.4995642215074123,0.011042692737709817,0.09053149669277294,0.41075542506968155,0.03208110315328723,0.01429439896807577,0.022104650938349815,0.18122093775971038,0.8187790622402896,0.35436399844528627,0.445570680651955,1.0936580389459234,0.010098041051706573,1.0744746534783987,0.08405206988062329,1.0229196033613068,0.48829110990902336,1.099181325129603,0.02915578159137823,1.0967477208865257,0.013054262827494433 +21099,0.4980023304288838,0.010977742034671258,0.08982900287387069,0.4099447941987373,0.03185140421437954,0.014213976079837291,0.02204355554966406,0.18037867974736022,0.8196213202526398,0.35457817848765666,0.4462590089959139,1.0867517580964667,0.010098041051706573,1.0659734870653874,0.08405206988062329,1.0196572900008456,0.48829110990902336,1.0913611779535022,0.02915578159137823,1.0892822273409144,0.013054262827494433 +21101,0.4993903069841292,0.011036467901254461,0.08995741433990215,0.4112910558814187,0.03169504524313323,0.01421323927331163,0.022099884092474396,0.18013448215117445,0.8198655178488256,0.35233388460204274,0.44843726091197,1.0934494126148178,0.010098041051706573,1.0695526427118882,0.08405206988062329,1.0227421151122287,0.48829110990902336,1.0868187427956695,0.02915578159137823,1.0895802662801062,0.013054262827494433 +21103,0.50085936302775,0.01048267871667192,0.08860750437951578,0.4133676982055361,0.029636574972918106,0.013524013530226399,0.020929385553068176,0.1769109473043963,0.8230890526956037,0.33447025938098157,0.45632849081193216,1.0386662169313579,0.010098041051706573,1.054328261385646,0.08405206988062329,1.0258330446982256,0.48829110990902336,1.0191610550410979,0.02915578159137823,1.0311508130136493,0.013054262827494433 +21105,0.5252062476362651,0.014743252937983339,0.10864151865571112,0.41851041544003564,0.04314900076952714,0.019100702004273867,0.028071358641174944,0.20685496249266153,0.7931450375073384,0.3971686083132534,0.44266846656071906,1.4623762003678713,0.010098041051706573,1.2900761193920436,0.08405206988062329,1.0759120603373016,0.48829110990902336,1.4741380454639872,0.02915578159137823,1.4641492956626916,0.013054262827494433 +21107,0.5033578659262903,0.011494963717779777,0.09278688694670031,0.4121330995166454,0.03314253633522429,0.01482361366376891,0.02283656320066935,0.1843358239290685,0.8156641760709316,0.3571898726838675,0.4472685347262995,1.139543293281647,0.010098041051706573,1.1023764883855802,0.08405206988062329,1.0307029026455257,0.48829110990902336,1.1358133694616588,0.02915578159137823,1.1373552587181073,0.013054262827494433 +21109,0.4953621214736703,0.010753955069358223,0.08815003001283223,0.408956487655886,0.030107415423891854,0.013702065314864228,0.021709280147149526,0.17795068736905353,0.8220493126309465,0.34154742113541015,0.4551059970425393,1.0668805212058556,0.010098041051706573,1.0461601227085775,0.08405206988062329,1.014493331854098,0.48829110990902336,1.0354657980410005,0.02915578159137823,1.0493376769264349,0.013054262827494433 +21111,0.49286895554964866,0.010557472042141938,0.08696123171991607,0.40742752098070634,0.030689917890298117,0.013680590320946255,0.021420444366126123,0.17643885000412876,0.8235611499958713,0.3529149401786755,0.4457682281799472,1.0456905931316074,0.010098041051706573,1.033647066337649,0.08405206988062329,1.0091857264896333,0.48829110990902336,1.0524946515556453,0.02915578159137823,1.0487988765541285,0.013054262827494433 +21113,0.4796816349349621,0.00905308211634141,0.07818839670026956,0.402457404346753,0.02591197896617458,0.011672988318911875,0.01887310552877197,0.16300060499683458,0.8369993950031654,0.33140440346291494,0.4504861760712973,0.8966546764722523,0.010098041051706573,0.9320963428143305,0.08405206988062329,0.9819494951629475,0.48829110990902336,0.8894090290849408,0.02915578159137823,0.8935800817055075,0.013054262827494433 +21115,0.5008643508854485,0.011033589857555062,0.09057598842428095,0.4117757930936672,0.03136770761932081,0.014220215936746675,0.022029097974430464,0.18083935952749886,0.8191606404725011,0.34631372138481664,0.45333934214522553,1.0936540146559572,0.010098041051706573,1.0774901725080348,0.08405206988062329,1.0258010840868343,0.48829110990902336,1.0787671480821852,0.02915578159137823,1.0865560178480298,0.013054262827494433 +21117,0.4828742752121544,0.009073506028683485,0.07926555490792973,0.4047845181898417,0.0260424986927835,0.011713631721154116,0.018790617960952615,0.16415360887283512,0.8358463911271649,0.3285474847559316,0.4497890874196345,0.898287063106854,0.010098041051706573,0.9450243612459204,0.08405206988062329,0.9884372854242396,0.48829110990902336,0.8935951140982938,0.02915578159137823,0.8970955090652007,0.013054262827494433 +21119,0.4999437587840073,0.01046792186695477,0.08883841389014001,0.4119970038298306,0.029459274250602192,0.013496685080741675,0.020938198913444717,0.17769681555024916,0.8223031844497508,0.3316051352181088,0.4581472362804655,1.0378479951209432,0.010098041051706573,1.058163132789279,0.08405206988062329,1.0234276901842128,0.48829110990902336,1.0126759270497585,0.02915578159137823,1.0279117675619776,0.013054262827494433 +21121,0.4940348293279101,0.010912383989280235,0.08793963374145067,0.4078063567337813,0.031247603584382597,0.014009506207534984,0.022088288803697405,0.1780029028744484,0.8219970971255516,0.355330153821802,0.4483385796194902,1.080754654821896,0.010098041051706573,1.045907249624541,0.08405206988062329,1.0115353358350738,0.48829110990902336,1.0717415526107588,0.02915578159137823,1.0741690779210753,0.013054262827494433 +21123,0.4999897685622852,0.011410432858102183,0.09143806313102872,0.41012039728831956,0.032888610411276026,0.014703851977288612,0.02282133270629267,0.18287986851002533,0.8171201314899746,0.35968183582527746,0.4470803659204562,1.130301598530439,0.010098041051706573,1.087513232734654,0.08405206988062329,1.023812068343939,0.48829110990902336,1.1276426040769665,0.02915578159137823,1.1272473470647941,0.013054262827494433 +21125,0.4914267544447764,0.009966788981926987,0.08419446354555297,0.40878059979467796,0.02814799185565581,0.012816016096382212,0.02028133163646668,0.17132657671574583,0.8286734232842542,0.33432117351073193,0.4553083631011167,0.9890860372681592,0.010098041051706573,1.0045785688681228,0.08405206988062329,1.0066382658300563,0.48829110990902336,0.9660908840766048,0.02915578159137823,0.9782905648837932,0.013054262827494433 +21127,0.4991919503276887,0.01103003617539288,0.08983113972611514,0.4109538680221454,0.031208315535665894,0.014164747941135473,0.02209578132850969,0.17995310154169464,0.8200468984583054,0.3474108825827711,0.4538773624275726,1.0937061910936245,0.010098041051706573,1.0689748881993681,0.08405206988062329,1.0222753323261686,0.48829110990902336,1.0705752704487543,0.02915578159137823,1.0813982228217305,0.013054262827494433 +21129,0.5048080715922874,0.011269764135646374,0.0927880290077316,0.41269993219908796,0.031781867548312914,0.014437293527230761,0.022324849323622737,0.18380852888317653,0.8161914711168234,0.3425212054635267,0.45426196258870066,1.1182016986748167,0.010098041051706573,1.1050872688221807,0.08405206988062329,1.0337300508204486,0.48829110990902336,1.0911598424587714,0.02915578159137823,1.1061663597688773,0.013054262827494433 +21131,0.4996826863371369,0.010856452856303886,0.09005570118316775,0.41092907293072833,0.03127713286164744,0.014017862757474882,0.021726694066359978,0.18022577857021643,0.8197742214297836,0.3473087483715404,0.44818247310206066,1.0760004655480337,0.010098041051706573,1.0703905038139079,0.08405206988062329,1.0233532463276922,0.48829110990902336,1.072933129029468,0.02915578159137823,1.074918449275547,0.013054262827494433 +21133,0.502933744529098,0.01096726948938825,0.09105426072310846,0.41318000843785857,0.031025832573910277,0.014160013286856102,0.021806589056093298,0.1810462346454074,0.8189537653545926,0.340740041460095,0.45639430474988457,1.087318916113651,0.010098041051706573,1.083692413427078,0.08405206988062329,1.0299331035486663,0.48829110990902336,1.0655144921456614,0.02915578159137823,1.0777516691453721,0.013054262827494433 +21135,0.5021499875649877,0.01100785701136754,0.09055405554790147,0.413037150779888,0.031485091476844876,0.014182854451168375,0.02192145232293352,0.1803326850350306,0.8196673149649694,0.34769388611413243,0.4504625454748604,1.0901990266644248,0.010098041051706573,1.0764600646396238,0.08405206988062329,1.0282739066760438,0.48829110990902336,1.080802687702438,0.02915578159137823,1.0859949365333468,0.013054262827494433 +21137,0.49622120834446815,0.010899733792330266,0.0887093474890788,0.4095798468020304,0.03163074580955552,0.014105553062538582,0.02196547348045604,0.17876976235062148,0.8212302376493785,0.35656609708970805,0.44594437157651057,1.0796992354632127,0.010098041051706573,1.0537001518704123,0.08405206988062329,1.0161678728071855,0.48829110990902336,1.0843591695212336,0.02915578159137823,1.0811807418601025,0.013054262827494433 +21139,0.5196398417247724,0.013143401894902389,0.10262530843888401,0.41814400636846905,0.037869116997653905,0.01693559266330673,0.025293291313609093,0.19749314852043154,0.8025068514795685,0.36900368509202514,0.44721382503732354,1.3040107427234706,0.010098041051706573,1.2217500864805464,0.08405206988062329,1.0643412279631213,0.48829110990902336,1.2978770353232918,0.02915578159137823,1.299927797023658,0.013054262827494433 +21141,0.5033670471621476,0.01145354293081859,0.09222132615398804,0.4125515052228343,0.032580698704437035,0.014741602220209824,0.02275385922735841,0.18320890625222264,0.8167910937477774,0.353288117436469,0.4524642750587244,1.1351588001720903,0.010098041051706573,1.096770459639113,0.08405206988062329,1.0305004207910646,0.48829110990902336,1.1190072528280495,0.02915578159137823,1.126189890395413,0.013054262827494433 +21143,0.5363136862791751,0.0147655863990723,0.11254906495736414,0.4238919870431979,0.041684137827757324,0.018903965361909313,0.027531623333188922,0.20985678314160597,0.7901432168583941,0.37036414157281644,0.45350501046758435,1.463673431051601,0.010098041051706573,1.3394444529233298,0.08405206988062329,1.0976609946200375,0.48829110990902336,1.4291240581281222,0.02915578159137823,1.4440194894550227,0.013054262827494433 +21145,0.5089838925757995,0.012487319026431699,0.09758993756246714,0.4129253967962909,0.03653799114928198,0.016247241428491342,0.024533819652400982,0.19173482498355043,0.8082651750164496,0.3744032639214886,0.4446670689176797,1.2384101959246805,0.010098041051706573,1.159188961186906,0.08405206988062329,1.0423845265004466,0.48829110990902336,1.2494146935702326,0.02915578159137823,1.2414278100853262,0.013054262827494433 +21147,0.4883343779511078,0.009303788927454903,0.08123488781839426,0.40825223731357363,0.025641593872296784,0.011859858322113559,0.019052086741241883,0.16635095026327948,0.8336490497367205,0.3156475568676871,0.46252422455403475,0.9241029331983558,0.010098041051706573,0.970888701772239,0.08405206988062329,1.0002437539601645,0.48829110990902336,0.8832505809637998,0.02915578159137823,0.906108610495653,0.013054262827494433 +21149,0.5061631132495967,0.01217452599299828,0.0955292471063352,0.4120845884944519,0.03557339787200168,0.015803686571812255,0.024052574504762135,0.1887321391182219,0.811267860881778,0.37238226982365236,0.44425575056609,1.2063959805696114,0.010098041051706573,1.1343894641675047,0.08405206988062329,1.0360502089732866,0.48829110990902336,1.2166030186117789,0.02915578159137823,1.209501680567575,0.013054262827494433 +21151,0.4743991501194116,0.008912537745819713,0.07639425128275781,0.3995162662805729,0.02543109901247122,0.01148048496809773,0.018787001923541238,0.16103370181740106,0.8389662981825989,0.332892836639542,0.4514348735958201,0.8830527959024201,0.010098041051706573,0.9106472864150539,0.08405206988062329,0.9718977177996571,0.48829110990902336,0.8732728475280648,0.02915578159137823,0.8786861354069778,0.013054262827494433 +21153,0.4907828355413079,0.010096682259853652,0.08481897236988661,0.40756794832679977,0.028668211775326663,0.013042264766746338,0.020572606718646826,0.17282383618069222,0.8271761638193078,0.33799291566876816,0.4549382036437718,1.0015270456221437,0.010098041051706573,1.0090334888638886,0.08405206988062329,1.0049566298094026,0.48829110990902336,0.9841225098284183,0.02915578159137823,0.9938672345563347,0.013054262827494433 +21155,0.48992474532008057,0.00999560366965499,0.0842180686136633,0.4072709448095777,0.02856664335078938,0.012896352842822848,0.0204023245715515,0.17190000998753685,0.8280999900124631,0.3391985095482801,0.451447959232021,0.9905119790972519,0.010098041051706573,1.0028046244137783,0.08405206988062329,1.0032506205571186,0.48829110990902336,0.9811621900671705,0.02915578159137823,0.9867546938800054,0.013054262827494433 +21157,0.5210226432891213,0.0138652079671819,0.10460461156123949,0.41810930215715214,0.03937834852181692,0.017768182042087202,0.026611526669269806,0.20076788006926066,0.7992321199307393,0.3764494503071057,0.451217044621438,1.3748012265680645,0.010098041051706573,1.2438007931657982,0.08405206988062329,1.0675228240423664,0.48829110990902336,1.3489291604123084,0.02915578159137823,1.356866455369648,0.013054262827494433 +21159,0.48532405012380553,0.009113900176755214,0.0807698996612385,0.4051743513095717,0.0262761513724409,0.011820047353178573,0.01877899966925247,0.16642467984150838,0.8335753201584917,0.32532108474378646,0.44983936900195143,0.9023077856183812,0.010098041051706573,0.9629228624279983,0.08405206988062329,0.9930411993952908,0.48829110990902336,0.9022266692537266,0.02915578159137823,0.9055217576836725,0.013054262827494433 +21161,0.5019775802947232,0.01143435822625256,0.09217286554499127,0.4114897438771584,0.03330533857359805,0.014833780154572124,0.022778623339192106,0.1836194865333913,0.8163805134666087,0.36133560974450885,0.44538746008518953,1.1323268312197108,0.010098041051706573,1.0939780822978062,0.08405206988062329,1.0277418102417442,0.48829110990902336,1.1402545627300507,0.02915578159137823,1.1353995361658251,0.013054262827494433 +21163,0.47729187947305673,0.008439879561101975,0.07507106383811037,0.4035827429347042,0.02372605155191009,0.01090284892606696,0.017682847590911942,0.1572854411874572,0.8427145588125429,0.31604789300808317,0.45953069360119536,0.8374382571377585,0.010098041051706573,0.8969913791391178,0.08405206988062329,0.9771896925103609,0.48829110990902336,0.8167013371189488,0.02915578159137823,0.8289335319158904,0.013054262827494433 +21165,0.5129796198101753,0.012106196837128741,0.09765774551292922,0.41608834170323306,0.03451829427463691,0.015614987494718013,0.023599761802639566,0.19037353871693152,0.8096264612830685,0.35346192043791264,0.4523684562881624,1.1993251846999593,0.010098041051706573,1.1592575127829186,0.08405206988062329,1.04998464318441,0.48829110990902336,1.1860064746680166,0.02915578159137823,1.1937446862442531,0.013054262827494433 +21167,0.5068424837119078,0.011677002000989454,0.09416632787622448,0.4139922352788643,0.033617980452284604,0.015042341781421347,0.02303871987105708,0.18579012395841144,0.8142098760415886,0.3570063865766674,0.44744929882898726,1.157621821506774,0.010098041051706573,1.1197127492006005,0.08405206988062329,1.0377736635930308,0.48829110990902336,1.152334863967012,0.02915578159137823,1.1546118319451564,0.013054262827494433 +21169,0.5073766834056181,0.012548612958243777,0.09689247694900074,0.41209832226663756,0.036298929137980246,0.016201144187696793,0.024732340623173435,0.19096753973524802,0.809032460264752,0.37463103721753493,0.44632567881307644,1.2447020965861024,0.010098041051706573,1.1501915237827145,0.08405206988062329,1.0388724319395723,0.48829110990902336,1.2440741995801488,0.02915578159137823,1.2421349382147615,0.013054262827494433 +21171,0.5078614287700525,0.012402601056878909,0.09671627734875111,0.4125394694968586,0.03585848001862757,0.01600689950846232,0.0244212305843264,0.19043832012007736,0.8095616798799227,0.37075951434032944,0.4463909094905066,1.2302337204933442,0.010098041051706573,1.1501667063242489,0.08405206988062329,1.0400372099754738,0.48829110990902336,1.228462617729374,0.02915578159137823,1.2275326373937423,0.013054262827494433 +21173,0.4905453096871874,0.009917365035173667,0.08401074852070527,0.40826984674388217,0.028284265356420726,0.012769955270317195,0.020217021423561885,0.17125991597856174,0.8287400840214383,0.3366743643457693,0.451486192389944,0.9827006976290049,0.010098041051706573,1.0009542471396466,0.08405206988062329,1.0051041818241335,0.48829110990902336,0.971793343931087,0.02915578159137823,0.9774361351655025,0.013054262827494433 +21175,0.49530029231545786,0.010078976843669415,0.086479942560611,0.4097807585809608,0.02818217806032932,0.01290374863199108,0.02034922450086117,0.17460103275192848,0.8253989672480715,0.3258810913360325,0.4578691045230127,1.000252401773809,0.010098041051706573,1.0309809428873153,0.08405206988062329,1.0143770312775364,0.48829110990902336,0.9684054571912658,0.02915578159137823,0.9874474349243615,0.013054262827494433 +21177,0.5064269252179758,0.01197820284198067,0.09521147718321352,0.41284981786420205,0.034188236464189455,0.015414160549949294,0.023652381509583088,0.18800634887695333,0.8119936511230467,0.3590768411081547,0.45086152852882283,1.1873839076997583,0.010098041051706573,1.1305707040045159,0.08405206988062329,1.0372565660145998,0.48829110990902336,1.1732962691954039,0.02915578159137823,1.1793552093306072,0.013054262827494433 +21179,0.485822589906203,0.009276767833717031,0.08060667079086184,0.4063722965386459,0.026286720253122904,0.011993448257103887,0.019094970111431176,0.1659179142049044,0.8340820857950956,0.3261109781016159,0.45625502693433373,0.920308624759197,0.010098041051706573,0.9614800500532366,0.08405206988062329,0.994778210732693,0.48829110990902336,0.9023702767070093,0.02915578159137823,0.912423558150896,0.013054262827494433 +21181,0.5022388324548581,0.011768926370466287,0.0933472632932601,0.4105857899931734,0.03365243971313571,0.015118977243316376,0.023432927941755863,0.18586229749896982,0.8141377025010301,0.36050804839787415,0.4492683850619876,1.1669077559657233,0.010098041051706573,1.1083509478048033,0.08405206988062329,1.0288625164642329,0.48829110990902336,1.154080213864475,0.02915578159137823,1.1587710769223563,0.013054262827494433 +21183,0.499328709686633,0.011426234438553217,0.09103054463071016,0.4102515050427217,0.03314362498605218,0.014763442234642408,0.022883191406566736,0.18230584956318413,0.8176941504368158,0.3640934492977955,0.44543836833947104,1.1315095791547416,0.010098041051706573,1.0812588443059021,0.08405206988062329,1.0222952727129642,0.48829110990902336,1.135079752375991,0.02915578159137823,1.1318783685544065,0.013054262827494433 +21185,0.483301073923474,0.007857275561105333,0.07574689984188757,0.4083497158279446,0.02184350753678191,0.010079898851695773,0.01625751728072811,0.15672818441508646,0.8432718155849135,0.2883749378836305,0.4614597190823133,0.7787814776213305,0.010098041051706573,0.9046191158846346,0.08405206988062329,0.9900874710257631,0.48829110990902336,0.7531097124423862,0.02915578159137823,0.7718091559770994,0.013054262827494433 +21187,0.4998253525633255,0.010762182782582428,0.08890494438546084,0.4121507300343409,0.03007882662764049,0.013712399022235137,0.02153188654274777,0.17787201855511522,0.8221279814448847,0.33832568970775334,0.45588211242370513,1.0674685151195975,0.010098041051706573,1.0598889463525467,0.08405206988062329,1.0232791093514724,0.48829110990902336,1.0327022486406914,0.02915578159137823,1.0499112071450376,0.013054262827494433 +21189,0.5159404714238589,0.013501264684659533,0.10167146471323818,0.4152731831782071,0.03785078304731124,0.0172901345009732,0.026168260550291048,0.1970604562821984,0.8029395437178016,0.37228521448046825,0.4567972736353051,1.3379599695465905,0.010098041051706573,1.206512997642022,0.08405206988062329,1.0566855700337159,0.48829110990902336,1.3017606817080458,0.02915578159137823,1.316354353267176,0.013054262827494433 +21191,0.4916445033386896,0.009702934359293073,0.08321356174364526,0.409897297776444,0.027169893262802895,0.012393218558962232,0.019735671391425697,0.16925555188465144,0.8307444481153485,0.3265079957339738,0.45613791850736646,0.9636326611994415,0.010098041051706573,0.9935332188170412,0.08405206988062329,1.0067611505856664,0.48829110990902336,0.9332299308842102,0.02915578159137823,0.949212410910474,0.013054262827494433 +21193,0.49797585831259256,0.01037951750081086,0.08813285797585084,0.4110293961271424,0.029701585792471136,0.013393763690151893,0.020843415052252116,0.17698219000915408,0.823017809990846,0.33700922079038476,0.4509443968324073,1.0281266293622886,0.010098041051706573,1.0490453598726184,0.08405206988062329,1.0198937706377609,0.48829110990902336,1.0195270393824463,0.02915578159137823,1.0257365457824354,0.013054262827494433 +21195,0.49989968901610804,0.010755988265073197,0.0898353908726898,0.4113715385719515,0.030529988881422998,0.013905773945336479,0.02151629317122182,0.1797068348842183,0.8202931651157817,0.3398436694586053,0.4554791683464358,1.0666157759031334,0.010098041051706573,1.0691758645581082,0.08405206988062329,1.0238718001623364,0.48829110990902336,1.0480698749257278,0.02915578159137823,1.0586032667565606,0.013054262827494433 +21197,0.4933677081403084,0.009834840253925961,0.08468715782209608,0.41001045380471945,0.028035135314831074,0.012684299193097097,0.019934098019907375,0.17165119732159687,0.8283488026784032,0.3310435257931907,0.4524429452775597,0.9746168016989061,0.010098041051706573,1.0089218643922222,0.08405206988062329,1.0105973076943768,0.48829110990902336,0.9614528633756352,0.02915578159137823,0.9689010287348445,0.013054262827494433 +21199,0.5068030429718202,0.012118799443125574,0.09561293576093201,0.41255520745192553,0.03491348076362155,0.01562146225904647,0.023912246801168904,0.188658961477957,0.811341038522043,0.3651543641638436,0.44743353906217814,1.2020143943319201,0.010098041051706573,1.1368818651734238,0.08405206988062329,1.037690809745003,0.48829110990902336,1.1970469388887972,0.02915578159137823,1.1980929350180571,0.013054262827494433 +21201,0.4829028719889455,0.009503178232266558,0.08070240494117481,0.4038463866309797,0.026817050976583323,0.012206481085806034,0.01967927461919113,0.16711933107538493,0.8328806689246151,0.3322955616518575,0.4551761152434228,0.9412011489731144,0.010098041051706573,0.9630954995681681,0.08405206988062329,0.9898657409259283,0.48829110990902336,0.9257183823276296,0.02915578159137823,0.9353549368478479,0.013054262827494433 +21203,0.5019211869689274,0.0113013865026429,0.09143751422916171,0.4117846135228126,0.03185882952681239,0.014418460992840576,0.022516257125727863,0.18217504381783023,0.8178249561821698,0.34842186815104614,0.4525734688622506,1.1209901311667572,0.010098041051706573,1.0886308881698565,0.08405206988062329,1.027620937976593,0.48829110990902336,1.0931159597728688,0.02915578159137823,1.1054443799550093,0.013054262827494433 +21205,0.47488766477168365,0.009188031416032996,0.07729409044310825,0.39922415586387305,0.0259201188087292,0.011790197502985175,0.01934779969585105,0.16276289357877866,0.8372371064212214,0.3353441208782645,0.4548666458663975,0.9116643924948822,0.010098041051706573,0.9213425995946121,0.08405206988062329,0.9730698132055946,0.48829110990902336,0.8907559909294158,0.02915578159137823,0.9003492481167303,0.013054262827494433 +21207,0.5116422911805021,0.012978676950143117,0.09955936718508246,0.41366385900911423,0.037495161760695346,0.016739567153551762,0.02536670086477346,0.19458783783367695,0.805412162166323,0.3766110896525813,0.4464460577710901,1.287242586325331,0.010098041051706573,1.182306096964731,0.08405206988062329,1.0476971705938833,0.48829110990902336,1.2850953507142133,0.02915578159137823,1.283908546598862,0.013054262827494433 +21209,0.47358268736906095,0.007816343476194317,0.07215437793448796,0.4021891177355432,0.022177283223167685,0.010123717049026665,0.016504706959659346,0.15235856347564997,0.8476414365243501,0.3073588028616002,0.4564904071951807,0.774918565003279,0.010098041051706573,0.8635430100292574,0.08405206988062329,0.9689878726769804,0.48829110990902336,0.7617035895142341,0.02915578159137823,0.7710641970721006,0.013054262827494433 +21211,0.4910948763133008,0.009558087049180656,0.08294172184890708,0.4098250831172794,0.026937585799040337,0.012322229387274525,0.019462811587313205,0.16889144206015552,0.8311085579398445,0.3247772676833486,0.4574362928883371,0.9485151172761466,0.010098041051706573,0.9895348087900259,0.08405206988062329,1.005850199029363,0.48829110990902336,0.9252044585443109,0.02915578159137823,0.9387307990673008,0.013054262827494433 +21213,0.4957889100825633,0.01093200434960293,0.08830033820633781,0.40926857122167726,0.03084822126044258,0.01397475334239353,0.022049715367337346,0.1781006723035278,0.8218993276964722,0.34935564106625844,0.4530165037526392,1.0838333995507563,0.010098041051706573,1.0491187715678119,0.08405206988062329,1.0151697931885026,0.48829110990902336,1.058576050272575,0.02915578159137823,1.0690116174019124,0.013054262827494433 +21215,0.4866774159169772,0.008443756522636013,0.0783648917519402,0.40861181729662477,0.02354435155106021,0.010855989435205588,0.017349801421803476,0.16102019364158976,0.8389798063584102,0.3004451486462659,0.4610867881267573,0.8376385184062405,0.010098041051706573,0.9353937351745689,0.08405206988062329,0.9961766361913811,0.48829110990902336,0.8108659615945474,0.02915578159137823,0.8292625829929914,0.013054262827494433 +21217,0.501250500591787,0.011938013485561515,0.09346804189920582,0.40943902316513225,0.03473633955915478,0.015448460359389966,0.023816461971543655,0.18646972280098567,0.8135302771990143,0.3716386783475554,0.4447348383695344,1.1835101823239844,0.010098041051706573,1.1109146822675708,0.08405206988062329,1.0264255987756812,0.48829110990902336,1.1890226372242267,0.02915578159137823,1.1840049287153827,0.013054262827494433 +21219,0.4908235903464487,0.011042044538147545,0.08694184706675825,0.4057909983585396,0.03207045320962304,0.014253161498884764,0.022496971937215768,0.17713461369163247,0.8228653863083675,0.3688724623597858,0.4444328056644977,1.0937502732731823,0.010098041051706573,1.032562605650123,0.08405206988062329,1.0048578783047346,0.48829110990902336,1.0980467934366795,0.02915578159137823,1.0918403813302229,0.013054262827494433 +21221,0.5188707685569439,0.012652273409835426,0.10075449894492274,0.4186951797841201,0.035923981469127925,0.016267169540657156,0.024384247825375214,0.19418033362167586,0.8058196663783241,0.35654965133383976,0.45282201124161897,1.2532722571773685,0.010098041051706573,1.198504643176154,0.08405206988062329,1.0627532081213442,0.48829110990902336,1.2334686762102116,0.02915578159137823,1.2431058674779294,0.013054262827494433 +21223,0.4942277030601135,0.01013791978337645,0.0857400258372468,0.41004405251077136,0.028647114622951317,0.013100529033939358,0.020512649777836033,0.17348284061449737,0.8265171593855026,0.3341160017531341,0.4573071042709327,1.0055899648479176,0.010098041051706573,1.0218486424135644,0.08405206988062329,1.0121660806469512,0.48829110990902336,0.9840460733089202,0.02915578159137823,0.9965492803732188,0.013054262827494433 +21225,0.491461872927762,0.011023884857329799,0.08782035893470769,0.405606394894074,0.0316765166574387,0.014200196303227037,0.022430803821378336,0.17869210974910366,0.8213078902508963,0.3606967341250498,0.4482878107082635,1.0921750108565806,0.010098041051706573,1.045226326182696,0.08405206988062329,1.0070171867205406,0.48829110990902336,1.08627543012273,0.02915578159137823,1.0866014114865759,0.013054262827494433 +21227,0.4729314570329686,0.008649573304896031,0.07512478821138033,0.3993872055123715,0.024720508533460875,0.01115485985427423,0.018289274642801057,0.15884920974107097,0.841150790258929,0.3290592775303967,0.4512390932077864,0.8569218516906294,0.010098041051706573,0.8967554471388128,0.08405206988062329,0.9688546472557895,0.48829110990902336,0.8488117176846726,0.02915578159137823,0.8533166969603707,0.013054262827494433 +21229,0.49925683453087266,0.01167155745852486,0.09229711318318706,0.40905858862395,0.03449172138246962,0.015259778013215416,0.02337786215684369,0.18486900288488622,0.8151309971151137,0.3737031440410497,0.44241856890828246,1.1555324483480378,0.010098041051706573,1.0938430378992565,0.08405206988062329,1.0223077417465407,0.48829110990902336,1.1772328453424694,0.02915578159137823,1.1649689066972675,0.013054262827494433 +21231,0.5066161456008137,0.011782183764805911,0.09406052971248885,0.4138324610135419,0.03297245496681586,0.01506468299025673,0.02325662904176299,0.1856642954024673,0.8143357045975327,0.3505450699416799,0.45688690773611274,1.1681932440054421,0.010098041051706573,1.1190804165252843,0.08405206988062329,1.0377210445651377,0.48829110990902336,1.132518561117764,0.02915578159137823,1.1491544252942854,0.013054262827494433 +21233,0.5010144183898373,0.011491025399437287,0.0924755082672517,0.41021874214480514,0.033649977018615704,0.014959024294893184,0.022935518375633186,0.18457654085974207,0.8154234591402579,0.3638798818100917,0.44454783094257727,1.1377440550780564,0.010098041051706573,1.0968418446690031,0.08405206988062329,1.0258381257643787,0.48829110990902336,1.1511174322830477,0.02915578159137823,1.143672934658789,0.013054262827494433 +21235,0.4910828178355354,0.010613099471706973,0.08617698179095931,0.4067630071940924,0.03017165496182695,0.013637347303142434,0.021611628601637047,0.1754836020750784,0.8245163979249216,0.35011269059079775,0.45199202100104713,1.0522149208012146,0.010098041051706573,1.0254790965428282,0.08405206988062329,1.0056451066535308,0.48829110990902336,1.0362059107891453,0.02915578159137823,1.0425357007938656,0.013054262827494433 +21237,0.5049794713560345,0.011226890155941308,0.09159395726844285,0.4147457556897158,0.031241905337718666,0.014319058201635437,0.022232369418490317,0.18138154611014826,0.8186184538898518,0.3410913369116167,0.45832858293530176,1.1137301736704692,0.010098041051706573,1.0895958351833537,0.08405206988062329,1.0341225553537503,0.48829110990902336,1.076487954901825,0.02915578159137823,1.095446295883018,0.013054262827494433 +21239,0.5009827333631094,0.01038454170035346,0.08862260697026028,0.4132611414497932,0.0294944294479168,0.013420695303574828,0.020728342533168312,0.17689752773580547,0.8231024722641945,0.33280931870819885,0.4550247472077388,1.028714454661797,0.010098041051706573,1.055188752314261,0.08405206988062329,1.0262289821487371,0.48829110990902336,1.012889747337804,0.02915578159137823,1.0231594922704872,0.013054262827494433 +22001,0.48507015232379463,0.009933008167435564,0.08185473758693015,0.4044170957872617,0.028357842982566633,0.012754323363753404,0.02047746726911589,0.16874824640269842,0.8312517535973016,0.34644107132406915,0.4497635229729672,0.9844713391221125,0.010098041051706573,0.9746387731977053,0.08405206988062329,0.9933964842158788,0.48829110990902336,0.9737625011837405,0.02915578159137823,0.9770648443340977,0.013054262827494433 +22003,0.48991264151779745,0.009984103832929053,0.08432449750781812,0.40692488601680876,0.02868372586960674,0.012900363981059506,0.02037935539282538,0.17212149751141867,0.8278785024885813,0.34015887099650177,0.44974505891261235,0.9893813384462236,0.010098041051706573,1.003406903211747,0.08405206988062329,1.0031497778590133,0.48829110990902336,0.9846779198378982,0.02915578159137823,0.9879870981500002,0.013054262827494433 +22005,0.4712529390685858,0.0074076422595917134,0.0700724583121379,0.4016732873857617,0.020859554650347653,0.00957318115110456,0.01571903673265709,0.14869394438289033,0.8513060556171097,0.29768549802304245,0.4589350689203237,0.7345518306553873,0.010098041051706573,0.8393637134033558,0.08405206988062329,0.9645251930436444,0.48829110990902336,0.7175232103276742,0.02915578159137823,0.729449878564363,0.013054262827494433 +22007,0.4938424648115225,0.010388018819434134,0.08634161339200687,0.4093938869571495,0.02967485527701416,0.013388828726946557,0.021035086205878982,0.17483634872298717,0.8251636512770129,0.34369122965405846,0.45118429734406845,1.0292822312678411,0.010098041051706573,1.0271834616860562,0.08405206988062329,1.0113477640088382,0.48829110990902336,1.018459361698923,0.02915578159137823,1.0236168242392467,0.013054262827494433 +22009,0.49309198152556766,0.010706640236157302,0.0873812477553241,0.4077624112120396,0.030974318614766093,0.013830140263982358,0.021713271838313487,0.17721084712222854,0.8227891528777714,0.35447329273092054,0.44650345455506635,1.06009198248086,0.010098041051706573,1.038481945136036,0.08405206988062329,1.009936704438744,0.48829110990902336,1.0617805106505305,0.02915578159137823,1.0603723810260834,0.013054262827494433 +22011,0.4872249595310427,0.009924041351019416,0.08287388317393568,0.40567836120046485,0.028233539365961555,0.012772765176427815,0.020368499513184573,0.17009367347211102,0.829906326527889,0.3406807824692492,0.4523968819802558,0.9836123795733508,0.010098041051706573,0.9877343765120112,0.08405206988062329,0.9978746937766726,0.48829110990902336,0.9696651244190522,0.02915578159137823,0.9763830640748576,0.013054262827494433 +22013,0.5079731068384646,0.01307499989308963,0.09888596496782129,0.4109645970274661,0.03838730922265919,0.016989675443186858,0.02573955139961273,0.1946677169255478,0.8053322830744523,0.3881977511687416,0.4425857343801066,1.296406145593731,0.010098041051706573,1.1734006468517957,0.08405206988062329,1.040118837614835,0.48829110990902336,1.3102176488914585,0.02915578159137823,1.2993668462024637,0.013054262827494433 +22015,0.4804153638891312,0.009301205358495525,0.07901251746301931,0.40232879285328516,0.026284506292759885,0.01193171983626492,0.019360757497843113,0.16446709119247396,0.8355329088075261,0.33266255951232,0.4539449858166647,0.9229213343554601,0.010098041051706573,0.941397278659565,0.08405206988062329,0.9839625228074683,0.48829110990902336,0.903152358384033,0.02915578159137823,0.9127377246796609,0.013054262827494433 +22017,0.48942356148690536,0.010554873541039182,0.08563471384637464,0.4050611435372065,0.030649675882916616,0.013663354224171642,0.02156592851593145,0.17497055839774034,0.8250294416022597,0.3579118152703931,0.445791148864555,1.0453940957654426,0.010098041051706573,1.0185046394079302,0.08405206988062329,1.0021487239287523,0.48829110990902336,1.0508599623391746,0.02915578159137823,1.0464657193220237,0.013054262827494433 +22019,0.48772346238423425,0.010081384302932133,0.08334521699123318,0.40565688640323294,0.028766288507385645,0.012960110249174435,0.020670287735696218,0.17088621610246185,0.8291137838975382,0.34514624289011664,0.45053119194876223,0.9993680203517497,0.010098041051706573,0.9924211889122061,0.08405206988062329,0.9989560702598298,0.48829110990902336,0.9878283389299939,0.02915578159137823,0.9922135433881065,0.013054262827494433 +22021,0.49879889252165965,0.010987625437714563,0.08981923171656017,0.410507144067378,0.03124319480443795,0.014168554704210069,0.022028167268309324,0.18007103276128444,0.8199289672387156,0.347845268851009,0.45349250590075674,1.0887560244058287,0.010098041051706573,1.067266780057221,0.08405206988062329,1.0212718257263291,0.48829110990902336,1.0737086316977331,0.02915578159137823,1.0813212606496394,0.013054262827494433 +22023,0.49993238950125096,0.010481486445436394,0.08841480848737315,0.4128292542838302,0.029550766118751508,0.013552361702783112,0.020965807908331507,0.1768535312856578,0.8231464687143422,0.3342286956711755,0.4586128714335913,1.0393293123864868,0.010098041051706573,1.0515493509178562,0.08405206988062329,1.0236079805285447,0.48829110990902336,1.0179706514998808,0.02915578159137823,1.031672994408015,0.013054262827494433 +22025,0.49467453423717833,0.010751577905199684,0.08787420326742443,0.40859048744052384,0.030318348013603093,0.013770665800064382,0.021734650080136725,0.17764044272651391,0.8223595572734861,0.34501989077882556,0.4542023791628035,1.0659053918772763,0.010098041051706573,1.0446506133026576,0.08405206988062329,1.0133183850490481,0.48829110990902336,1.0402816017588203,0.02915578159137823,1.0521741100863449,0.013054262827494433 +22027,0.5036154582424656,0.011779616824462354,0.09421110275762207,0.41081408320793605,0.034223793528868604,0.015264580911807997,0.02339010177640548,0.18706952142891561,0.8129304785710844,0.3632670940803711,0.44602246968711845,1.1685541284496428,0.010098041051706573,1.1197196361920279,0.08405206988062329,1.0314372356602595,0.48829110990902336,1.173264462337333,0.02915578159137823,1.170134999849159,0.013054262827494433 +22029,0.49541882625745104,0.011059005992207644,0.0883989131246492,0.4089632078150803,0.03162391881712123,0.014187292971307096,0.022322538842035614,0.17843268854444283,0.8215673114555572,0.3577410366180532,0.44862539185453754,1.0956288908539875,0.010098041051706573,1.051035781478781,0.08405206988062329,1.014326763845679,0.48829110990902336,1.0847108526837652,0.02915578159137823,1.0878473048311983,0.013054262827494433 +22031,0.49970403626834115,0.011205794716048493,0.09014805637975523,0.4109431357228809,0.03206222761422216,0.014388323781714014,0.022424863324559938,0.18040289818941088,0.8195971018105891,0.3556618844798794,0.4487624489114301,1.110559274658748,0.010098041051706573,1.0728435712074198,0.08405206988062329,1.0227612438238949,0.48829110990902336,1.09939176186105,0.02915578159137823,1.1031971145894723,0.013054262827494433 +22033,0.4741527051447816,0.00881204367739008,0.07599910938469276,0.39977652814679165,0.02529324808404057,0.011367527565493266,0.01858482210852164,0.16028403626103235,0.8397159637389676,0.33280979591498966,0.4494293310105119,0.8728227388652963,0.010098041051706573,0.9078706008756403,0.08405206988062329,0.9715243331079644,0.48829110990902336,0.8685634013183495,0.02915578159137823,0.8709657135166087,0.013054262827494433 +22035,0.4781083804031826,0.009241942453977926,0.0781072357562129,0.40141658214044873,0.02677508038001249,0.011958207148927855,0.01933022476239449,0.16336721747137348,0.8366327825286265,0.34279897529061787,0.4466170401435888,0.9153924216376557,0.010098041051706573,0.929701476315467,0.08405206988062329,0.9784056887451245,0.48829110990902336,0.918855135735527,0.02915578159137823,0.9163246120409037,0.013054262827494433 +22037,0.49861491319661166,0.010157801119339196,0.08731166334308614,0.4122565241227275,0.02846751294629466,0.01307037034165492,0.020372036315997263,0.17510840737460612,0.8248915926253939,0.3260447900807159,0.4591328496561257,1.006901978759108,0.010098041051706573,1.0429102860578925,0.08405206988062329,1.021304226743807,0.48829110990902336,0.9784734800544572,0.02915578159137823,0.9949998395827637,0.013054262827494433 +22039,0.4847221436685164,0.010058396838480057,0.082548125841551,0.40354108058393234,0.028824767892990454,0.012933086137780906,0.02075085070872814,0.17029988606834232,0.8297001139316577,0.3491874297463622,0.4486796280821379,0.9963923163210895,0.010098041051706573,0.9821177370524685,0.08405206988062329,0.9927563442487719,0.48829110990902336,0.9892322517057905,0.02915578159137823,0.9912572414835359,0.013054262827494433 +22041,0.5002103051866058,0.011978979106126176,0.0926994448336664,0.40935430166558573,0.03487906965883632,0.015500093618350407,0.023947885483201634,0.18532094175685654,0.8146790582431435,0.37625974698576625,0.4443952711457597,1.1873783885924705,0.010098041051706573,1.101087137750798,0.08405206988062329,1.0236487345102971,0.48829110990902336,1.1926196682292147,0.02915578159137823,1.1860420660079711,0.013054262827494433 +22043,0.48650516221555384,0.00951597579781327,0.08165421456837565,0.40625627192757036,0.026948035270523994,0.01230436240713971,0.01955986603405673,0.1678383312450803,0.8321616687549197,0.3300262627345247,0.4565958996127014,0.9437593875165751,0.010098041051706573,0.973456818809398,0.08405206988062329,0.9962146286678315,0.48829110990902336,0.9253963598879384,0.02915578159137823,0.9365834718445458,0.013054262827494433 +22045,0.4822318449256662,0.00943618200539491,0.07979498058233866,0.4036967293208257,0.026992051126952247,0.0121500905278926,0.019567728893659965,0.1654701600941321,0.8345298399058679,0.33826753174154545,0.4501358741040775,0.93520708639483,0.010098041051706573,0.9512926243533937,0.08405206988062329,0.9875273453916116,0.48829110990902336,0.9267291496926859,0.02915578159137823,0.93081967238817,0.013054262827494433 +22047,0.486816009313026,0.009266694393560109,0.08128437052681364,0.406549354598992,0.026383382153836805,0.011974646919862513,0.019035311526909054,0.16697144089718555,0.8330285591028145,0.324581244621112,0.45387080587471607,0.9180694392185293,0.010098041051706573,0.969913253166993,0.08405206988062329,0.9969528002610619,0.48829110990902336,0.9056036191194019,0.02915578159137823,0.9139332459871747,0.013054262827494433 +22049,0.500230872572619,0.01156693241599755,0.09205220626067487,0.4099725575458498,0.0331279438217886,0.01487575719952237,0.02312318781228035,0.18401944243717497,0.8159805575628251,0.35988212740905284,0.4490395564405185,1.1467046570528912,0.010098041051706573,1.093488187843238,0.08405206988062329,1.0244629175963267,0.48829110990902336,1.136116867195119,0.02915578159137823,1.1399378722277596,0.013054262827494433 +22051,0.49584100226771355,0.010695921313114072,0.08833706216699261,0.4090101309511721,0.030939350783136838,0.013847288815756222,0.021571272371983367,0.1781560253447895,0.8218439746552105,0.35024201647830455,0.44756235878432005,1.0596293605278375,0.010098041051706573,1.050495607946723,0.08405206988062329,1.0153892915736331,0.48829110990902336,1.060919711210628,0.02915578159137823,1.0606660903949163,0.013054262827494433 +22053,0.49078097220651107,0.010738449841575818,0.08607867019116554,0.4066227895364545,0.031028762311831794,0.013845347876585364,0.021880330431916763,0.17539121332304894,0.824608786676951,0.36046981491375724,0.4462101239309148,1.0634405130929931,0.010098041051706573,1.0233783685143438,0.08405206988062329,1.0045834321886469,0.48829110990902336,1.0638492609655597,0.02915578159137823,1.060850152476549,0.013054262827494433 +22055,0.4734987079103161,0.008442834298258225,0.07458355063055755,0.40010686420775954,0.02416307619078862,0.010894775198334757,0.017830744112309924,0.15751584826855364,0.8424841517314463,0.32397326201963883,0.450885272732287,0.8357578452452179,0.010098041051706573,0.8909079413548153,0.08405206988062329,0.9696200751272186,0.48829110990902336,0.8291622412541124,0.02915578159137823,0.8335141984455117,0.013054262827494433 +22057,0.48389812274837685,0.009559532306477292,0.08108854798095741,0.4040545078641918,0.02725345611185775,0.012321385095799995,0.019755258094787388,0.16757359487241244,0.8324264051275876,0.33609500713045043,0.45210358074325346,0.9470640392024161,0.010098041051706573,0.9662711590802495,0.08405206988062329,0.9910498115129817,0.48829110990902336,0.9355100373147092,0.02915578159137823,0.941722745287326,0.013054262827494433 +22059,0.49508828625576207,0.010858342705287224,0.08823856311662528,0.4087104785601293,0.031130779624102524,0.014014120547248408,0.02193213413996593,0.17822793543340135,0.8217720645665987,0.352802431550895,0.4501692767243835,1.0758849853913919,0.010098041051706573,1.049266611040263,0.08405206988062329,1.0140888432939432,0.48829110990902336,1.0682733741156372,0.02915578159137823,1.0717790794398911,0.013054262827494433 +22061,0.4639736459743936,0.008972340486416847,0.07358683826775536,0.39168138357155247,0.025779296964179632,0.011576091358308047,0.01933803905515794,0.1586013320071558,0.8413986679928442,0.3503248348621567,0.4490460455299864,0.8887938893262295,0.010098041051706573,0.8749415740512428,0.08405206988062329,0.9504260403831988,0.48829110990902336,0.8858310615536975,0.02915578159137823,0.8838884534218379,0.013054262827494433 +22063,0.47402208821960556,0.008037891243842717,0.07292093458732765,0.40218269135663565,0.022629297553154112,0.01039813768337445,0.01695678628401576,0.15383446552293306,0.8461655344770669,0.31032648828785964,0.45949891546346916,0.7970510150766221,0.010098041051706573,0.8717999334768782,0.08405206988062329,0.9704339503737296,0.48829110990902336,0.7791221720808421,0.02915578159137823,0.7903761767010022,0.013054262827494433 +22065,0.4778234099435069,0.009351988066605275,0.07894977268851872,0.40071277093982693,0.027559045944840887,0.012240881424846958,0.019572059200094364,0.16522792949356113,0.8347720705064389,0.34907061801900113,0.4441692738328802,0.9262013607635561,0.010098041051706573,0.94010187362967,0.08405206988062329,0.9789218009044172,0.48829110990902336,0.9441238311380072,0.02915578159137823,0.934919478464201,0.013054262827494433 +22067,0.49920976126247874,0.011811354355228084,0.09229653394887069,0.4088830673677083,0.034739840702722215,0.015404164975931327,0.02366010297025785,0.184885274910204,0.815114725089796,0.3763937735946506,0.44341495713088447,1.169711232892238,0.010098041051706573,1.0947077313583082,0.08405206988062329,1.0218280364519965,0.48829110990902336,1.1862261451913885,0.02915578159137823,1.1747385770777792,0.013054262827494433 +22069,0.4796002313679766,0.01006392526228011,0.08108463409715418,0.4005564327169515,0.028888852549291705,0.012942722740435841,0.0209839875047068,0.16906712881658606,0.830932871183414,0.3562802357186146,0.4480178891962661,0.9968959350642401,0.010098041051706573,0.9645991330885595,0.08405206988062329,0.9826175130142387,0.48829110990902336,0.9911087545000237,0.02915578159137823,0.9909124728020909,0.013054262827494433 +22071,0.48368247181722657,0.009320453893529285,0.0806747307201785,0.4039677706604542,0.026713868061061852,0.012044937985432526,0.019269778080879655,0.16679275231347185,0.8332072476865282,0.33113055132119745,0.4508870807439988,0.9233793220568827,0.010098041051706573,0.9630440993007106,0.08405206988062329,0.9905445951963163,0.48829110990902336,0.9172416105762258,0.02915578159137823,0.9218460116557639,0.013054262827494433 +22073,0.48005991664219927,0.009620384595916114,0.07978296339220128,0.4016784038411909,0.0276273665086845,0.012390714700892952,0.02003996639254185,0.1661937617084276,0.8338062382915724,0.3462815284620658,0.4484942383849001,0.9528794861223048,0.010098041051706573,0.9506217181510597,0.08405206988062329,0.9834105053741397,0.48829110990902336,0.9479318783260244,0.02915578159137823,0.9488059251989513,0.013054262827494433 +22075,0.47958543462949565,0.008860491250422684,0.0772549641820692,0.40334584931986117,0.02510875525131211,0.011429199733693832,0.018475313490844168,0.16108696929412092,0.8389130307058791,0.32501154478743294,0.4551878266883252,0.8792185088890982,0.010098041051706573,0.9214236999600265,0.08405206988062329,0.9818722864680594,0.48829110990902336,0.8624887926768414,0.02915578159137823,0.8715261712204068,0.013054262827494433 +22077,0.5058449850292418,0.011623861673018095,0.09341282023586835,0.4133323920805669,0.03283721589095481,0.014950841051480812,0.022979098374072335,0.18466689005618658,0.8153331099438135,0.35152793597324755,0.4553017253694489,1.1526188755164557,0.010098041051706573,1.1123081302921878,0.08405206988062329,1.0356715722228982,0.48829110990902336,1.12806410251166,0.02915578159137823,1.1392097333755413,0.013054262827494433 +22079,0.4902877806867241,0.010419649358099678,0.08515407813103669,0.4066338177529178,0.029760480639135993,0.013392505646058652,0.021252109003217137,0.17368182827596723,0.8263181717240328,0.3494897871284568,0.4500097229090808,1.0326742029595084,0.010098041051706573,1.0132252042016772,0.08405206988062329,1.003843770366345,0.48829110990902336,1.021706135186926,0.02915578159137823,1.0255797573667378,0.013054262827494433 +22081,0.4929868768843283,0.011074068295803818,0.08788009665169118,0.40721611094549537,0.03180994029629698,0.014239225048037806,0.02246321112195077,0.1782605192395636,0.8217394807604363,0.3619697918901279,0.4476344474527481,1.0967863216197058,0.010098041051706573,1.0439961964983344,0.08405206988062329,1.0093769454887502,0.48829110990902336,1.0909040521229694,0.02915578159137823,1.090880176672255,0.013054262827494433 +22083,0.4936790670516462,0.010667416534441362,0.087127110760895,0.4084269008532849,0.03071000890255316,0.013752265906774211,0.021607998488065102,0.17648532533744274,0.8235146746625572,0.35247362886658057,0.44781054770814077,1.056853870600196,0.010098041051706573,1.036065654801408,0.08405206988062329,1.0108137654199338,0.48829110990902336,1.0532132295704129,0.02915578159137823,1.054035303507777,0.013054262827494433 +22085,0.5063982265063789,0.012325585527013929,0.09534811325250721,0.4122518997180096,0.034846014250702356,0.015773936068537626,0.024339709110056822,0.1882868230213009,0.8117131769786992,0.3654609730810386,0.4526754754518212,1.2221131854785692,0.010098041051706573,1.1355180270777592,0.08405206988062329,1.0369976026452523,0.48829110990902336,1.1946055555874273,0.02915578159137823,1.2039556881781086,0.013054262827494433 +22087,0.4784214852283911,0.008483174780515239,0.07603800282303477,0.40303643673146194,0.02404248400864957,0.010963577502008099,0.017731592418901296,0.15893517572007743,0.8410648242799226,0.3161903668696332,0.45600851800769926,0.8413721412703544,0.010098041051706573,0.908470304651212,0.08405206988062329,0.9790716324190585,0.48829110990902336,0.826060065424955,0.02915578159137823,0.8353356212590867,0.013054262827494433 +22089,0.48057548793712157,0.008362248321801807,0.07624849480228542,0.40512303327184984,0.023783037542139222,0.010818857807264923,0.017400488646844847,0.1586608071285187,0.8413391928714813,0.3119148463692213,0.45489806708230063,0.8283002847346239,0.010098041051706573,0.9111867786902575,0.08405206988062329,0.9839589501547257,0.48829110990902336,0.817063789657638,0.02915578159137823,0.8257279318904521,0.013054262827494433 +22091,0.49390701944216336,0.011271151952371349,0.08879704554745646,0.4072786191854657,0.03272864683226181,0.01455468593437287,0.022820392318176404,0.17978494342466947,0.8202150565753306,0.36857810561693066,0.4447078429171655,1.1165135285373797,0.010098041051706573,1.0541697162083508,0.08405206988062329,1.0109598265507107,0.48829110990902336,1.1207005710872024,0.02915578159137823,1.1157796984859125,0.013054262827494433 +22093,0.49087058266405226,0.010052248293897462,0.08409966296939403,0.40836396370688,0.02805648892023612,0.01279490031625214,0.020478408462250703,0.17132756767164256,0.8286724323283574,0.33361000424516063,0.456040681092624,0.9980893750664488,0.010098041051706573,1.0044641971277186,0.08405206988062329,1.0050383360835933,0.48829110990902336,0.9657371708300667,0.02915578159137823,0.9807726534341021,0.013054262827494433 +22095,0.4756170004400707,0.00800765901005807,0.07367018553249757,0.4027187635682394,0.02244645514536709,0.010314284369381636,0.016836359933830963,0.15489392823287076,0.8451060717671293,0.304688456844804,0.4595061582144959,0.7942342432382312,0.010098041051706573,0.8803926904134223,0.08405206988062329,0.9741714071921257,0.48829110990902336,0.7722219136455577,0.02915578159137823,0.7856849267709171,0.013054262827494433 +22097,0.48900431157931945,0.010464337007829158,0.08496383873649135,0.4060137070248198,0.03015772786288883,0.013486839525567378,0.021399273503403007,0.17374864949981061,0.8262513505001894,0.3549478026342553,0.4472100679097867,1.0363577814297449,0.010098041051706573,1.0102844036215108,0.08405206988062329,1.0008785880842213,0.48829110990902336,1.0344052942536992,0.02915578159137823,1.0335939667500074,0.013054262827494433 +22099,0.48389548597845866,0.00928276339401133,0.07982394168194491,0.40519235213452354,0.026267957748083118,0.011994523445479376,0.019183405638184783,0.16496112072741756,0.8350388792725825,0.3290736738201513,0.45662184934626926,0.9212179235147309,0.010098041051706573,0.952686160553617,0.08405206988062329,0.9912310820292058,0.48829110990902336,0.9020870252865089,0.02915578159137823,0.9126542949522692,0.013054262827494433 +22101,0.4887053985210751,0.01003213893015231,0.08374326184964354,0.40657733032936316,0.028759013323559453,0.012931304445826623,0.02052798876482982,0.17135734964882357,0.8286426503511765,0.34341883380652993,0.44964353610953917,0.9937842286965002,0.010098041051706573,0.9965461149714934,0.08405206988062329,1.0012100761651688,0.48829110990902336,0.9871720843683143,0.02915578159137823,0.9900997992288614,0.013054262827494433 +22103,0.49332326201276205,0.00994932631566691,0.08491322348808474,0.4100014495042391,0.028291436428622984,0.012851063458652848,0.020167965068327805,0.17212491286471723,0.8278750871352828,0.3331805726653743,0.4542386347570243,0.9860053160607494,0.010098041051706573,1.0117611959457906,0.08405206988062329,1.0102585732216927,0.48829110990902336,0.9715922836667531,0.02915578159137823,0.9805658811263446,0.013054262827494433 +22105,0.4788164250770391,0.009077985827279107,0.07763749035631183,0.40233703899097367,0.025725860494276963,0.011710478259620873,0.01895921975905172,0.16214458462618603,0.837855415373814,0.33135873372786684,0.45520258738190755,0.9007855077661362,0.010098041051706573,0.9277380220833251,0.08405206988062329,0.9805444452407528,0.48829110990902336,0.884676928221928,0.02915578159137823,0.8931244575679904,0.013054262827494433 +22107,0.5089910450755948,0.012627766087121675,0.09673905439754807,0.4141440758538846,0.035457925353919055,0.016044399659090748,0.02480940717777503,0.1900604250968315,0.8099395749031685,0.3665316513039822,0.4524912131475681,1.2518644489917072,0.010098041051706573,1.1502867755427353,0.08405206988062329,1.0425325856718732,0.48829110990902336,1.2148518370299275,0.02915578159137823,1.2273652620015323,0.013054262827494433 +22109,0.4793298129805341,0.008844783985502532,0.07728746381887694,0.4030931268956055,0.025131896974359053,0.011440432377376903,0.018452396963386304,0.16124067755830498,0.838759322441695,0.3251743003659121,0.4552156325107119,0.8777606631103898,0.010098041051706573,0.9226403812185098,0.08405206988062329,0.9817011958344724,0.48829110990902336,0.8629624842075232,0.02915578159137823,0.8714507060510295,0.013054262827494433 +22111,0.5050503885599797,0.01204304918075815,0.09455449313472394,0.41185896703466557,0.03437465961050558,0.015444084320253295,0.023845242877835977,0.18721793958880334,0.8127820604111966,0.363543375580551,0.44928690189948167,1.1938605682455932,0.010098041051706573,1.1254560186551403,0.08405206988062329,1.0341886635633337,0.48829110990902336,1.1782940903915367,0.02915578159137823,1.1825939318667849,0.013054262827494433 +22113,0.4883277481640349,0.010237235665042626,0.08389026301032576,0.4058296193815214,0.029362711518657825,0.013179280503173296,0.020963862290298976,0.1717908993001685,0.8282091006998316,0.3500133443978316,0.44884412309124927,1.0137946086108722,0.010098041051706573,0.9979092630056949,0.08405206988062329,0.9998411140637286,0.48829110990902336,1.0075445415996491,0.02915578159137823,1.008218820728294,0.013054262827494433 +22115,0.46244247152529666,0.007608666886033668,0.06809468501064625,0.39529937705983575,0.021437352753242066,0.009788445916983482,0.016453218193687162,0.14725006720521627,0.8527499327947837,0.31481682821339796,0.456607027446667,0.7544742865989051,0.010098041051706573,0.813517965171279,0.08405206988062329,0.9474444035789125,0.48829110990902336,0.7372227318915334,0.02915578159137823,0.7463595799124817,0.013054262827494433 +22117,0.4982430975166833,0.01124858440265928,0.0900946351775686,0.4098578312420941,0.03226458190988432,0.01445777326672065,0.02257649821688223,0.18082465291865255,0.8191753470813474,0.3581187919379846,0.44810043741157174,1.1144035432975774,0.010098041051706573,1.070861246605861,0.08405206988062329,1.0198981068252388,0.48829110990902336,1.1055817837992281,0.02915578159137823,1.1085498368205273,0.013054262827494433 +22119,0.505030869772132,0.012282240896211435,0.09532525616435572,0.41136705495306036,0.03556088459244336,0.01585950410130685,0.02431978247538242,0.1887513454521426,0.8112486545478574,0.37304787863492134,0.44598170948416094,1.2180782452465677,0.010098041051706573,1.1319546965219216,0.08405206988062329,1.034303616586072,0.48829110990902336,1.2182604347304316,0.02915578159137823,1.2150984507262406,0.013054262827494433 +22121,0.48126253785905704,0.008812093009299943,0.07789827670092579,0.4042336315002207,0.024885934140123966,0.011351291406557572,0.01831036558237296,0.16186233203910658,0.8381376679608934,0.31946706902988786,0.4561328235718391,0.8746288667491712,0.010098041051706573,0.9306093737529383,0.08405206988062329,0.985792212743329,0.48829110990902336,0.8546342537221415,0.02915578159137823,0.8659175700303063,0.013054262827494433 +22123,0.49804201061706194,0.011985341272821793,0.0928318147596015,0.4075729770170399,0.03551922293610845,0.01567823944584794,0.02406492026239362,0.18639354267441244,0.8136064573255876,0.38261907330034967,0.44140153274326316,1.186624535465359,0.010098041051706573,1.1001375572634406,0.08405206988062329,1.020081778264446,0.48829110990902336,1.2120064898555052,0.02915578159137823,1.1968829128819904,0.013054262827494433 +22125,0.49854646104076605,0.00862244369308762,0.08376788056732534,0.4148548169170353,0.024091908025325716,0.011116014128072352,0.017295165780712593,0.16802422063623004,0.83197577936377,0.2876031703579122,0.4614003223151549,0.854385442816853,0.010098041051706573,1.00116687064381,0.08405206988062329,1.0207453061310583,0.48829110990902336,0.8295685341374639,0.02915578159137823,0.8510665339963397,0.013054262827494433 +22127,0.49880075557679754,0.010997665215579693,0.08990846253631635,0.4105310596244995,0.03174387975141557,0.014203257128824686,0.022048212823700192,0.1802492508904663,0.8197507491095337,0.35306887534188897,0.4474329300655605,1.0891603554204723,0.010098041051706573,1.0689006580394567,0.08405206988062329,1.0212875874479534,0.48829110990902336,1.0879972443668342,0.02915578159137823,1.0887529109315164,0.013054262827494433 +23001,0.4971173640638844,0.010821037009200313,0.08919707422262345,0.4094372352345197,0.031445022243796986,0.014020573420356511,0.02176756997731768,0.1794286031239109,0.820571396876089,0.35253423408613827,0.44587576728848666,1.0719084074520915,0.010098041051706573,1.0592176772357138,0.08405206988062329,1.0179957099220558,0.48829110990902336,1.0780803581455458,0.02915578159137823,1.0751609907259916,0.013054262827494433 +23003,0.521213491270883,0.013679528190032004,0.10462869889201187,0.41765858557367597,0.03962848489761675,0.017669374643771385,0.026245537422059043,0.20074058067241138,0.7992594193275886,0.37875349036422246,0.44587560411208194,1.3570464055165277,0.010098041051706573,1.2446253792041269,0.08405206988062329,1.0674919533108667,0.48829110990902336,1.3572405653922994,0.02915578159137823,1.3548431881388008,0.013054262827494433 +23005,0.5004914873134125,0.011052310551353577,0.09126128532948569,0.4106324972054722,0.03209145418590528,0.014328882567351552,0.022082914158403088,0.18234333179045062,0.8176566682095494,0.35164367968349036,0.4465015042429852,1.0957323201618818,0.010098041051706573,1.0835511767621302,0.08405206988062329,1.025122678471849,0.48829110990902336,1.100263465880738,0.02915578159137823,1.0987301607961295,0.013054262827494433 +23007,0.509389108935696,0.012348513291425462,0.09709527693230476,0.4132490052237704,0.03533978042574932,0.01585076330789198,0.02424180861900663,0.19061121494170347,0.8093887850582966,0.36397012854073596,0.44852466871420554,1.2245068315825836,0.010098041051706573,1.1551064236237427,0.08405206988062329,1.0428789565895196,0.48829110990902336,1.2114472559015692,0.02915578159137823,1.2159810328892453,0.013054262827494433 +23009,0.5230864121458182,0.013431230624340245,0.10520937479442247,0.41886139651671395,0.039202068119603084,0.017452377236595082,0.025676886863190182,0.2011319207525004,0.7988680792474996,0.37261002830026635,0.44519021760150407,1.3311258315348287,0.010098041051706573,1.2489160034765718,0.08405206988062329,1.0713492982974384,0.48829110990902336,1.341438418868193,0.02915578159137823,1.3358073833000805,0.013054262827494433 +23011,0.5071766564958147,0.011772685175847794,0.0951786826809885,0.41304279931735505,0.0340884276599462,0.015228405799779037,0.023212198402796452,0.1876637685547224,0.8123362314452776,0.35815191700226384,0.44673242050622264,1.1671552013340225,0.010098041051706573,1.130503783015328,0.08405206988062329,1.0381907848073337,0.48829110990902336,1.1683537889044304,0.02915578159137823,1.1679762495129844,0.013054262827494433 +23013,0.5249628931369459,0.014173857328587197,0.10788055351601532,0.4187804108488935,0.04151044979761179,0.01842131640785242,0.0269997318170252,0.20550129337974515,0.7944987066202549,0.3847815796704212,0.4437753986687046,1.405109130232683,0.010098041051706573,1.280738204118689,0.08405206988062329,1.0750705192621408,0.48829110990902336,1.4188512993314912,0.02915578159137823,1.4096541546379222,0.013054262827494433 +23015,0.5351989097251533,0.015500146855962288,0.11450983307195958,0.4223670594062548,0.045237480149865936,0.02005964029263281,0.028961469416898204,0.21395752306514434,0.7860424769348556,0.3950532363577726,0.44342965669568263,1.5371879891705342,0.010098041051706573,1.3597153408139941,0.08405206988062329,1.096355227385788,0.48829110990902336,1.54650088771956,0.02915578159137823,1.539000430108001,0.013054262827494433 +23017,0.5149847700315777,0.012710257707840573,0.09995691503984552,0.4159252151940095,0.03679669915122801,0.016423303195420708,0.02468084193453179,0.1940968371428079,0.8059031628571921,0.3681255982796173,0.4463254469626147,1.2613512336540587,0.010098041051706573,1.1895566514741382,0.08405206988062329,1.0544540227765982,0.48829110990902336,1.2609882872636873,0.02915578159137823,1.2599847278153873,0.013054262827494433 +23019,0.4970599236299175,0.010985230266817091,0.08984021937777298,0.4085984684898726,0.03154843539468423,0.01415616321111188,0.022100414345607285,0.1807432365934673,0.8192567634065326,0.3511616023779379,0.4487120528803508,1.0889387106526944,0.010098041051706573,1.0687883711135657,0.08405206988062329,1.0179861769521938,0.48829110990902336,1.0821178273011616,0.02915578159137823,1.0849905633093002,0.013054262827494433 +23021,0.5329270872754446,0.014797438496479055,0.11163438342759367,0.42285955554039667,0.04250812040562836,0.019009561919988746,0.027766347122886937,0.20947402767293602,0.790525972327064,0.38077981980524156,0.4471983644205485,1.4671969876245403,0.010098041051706573,1.3270792137519614,0.08405206988062329,1.0921638289363051,0.48829110990902336,1.455896041656799,0.02915578159137823,1.4601886230207677,0.013054262827494433 +23023,0.5111786164993166,0.011810351475141033,0.09634557365434136,0.4156777070543577,0.03399703925483963,0.01524960032848674,0.02310415790868048,0.18847731603904086,0.8115226839609592,0.35286560622712854,0.44855671737108377,1.1700159489927822,0.010098041051706573,1.1442720534862758,0.08405206988062329,1.046829793751932,0.48829110990902336,1.1662495346826025,0.02915578159137823,1.1691400565560544,0.013054262827494433 +23025,0.5131524654890824,0.012260367415571103,0.09811714552451317,0.4159906389434562,0.03532323565999174,0.01580557296632639,0.023892250822347357,0.19120466551982426,0.8087953344801757,0.3600108367519389,0.44745541202581,1.2150124906975242,0.010098041051706573,1.1657434415931431,0.08405206988062329,1.0508670553412554,0.48829110990902336,1.2100997794999304,0.02915578159137823,1.212927730490939,0.013054262827494433 +23027,0.5150342834798278,0.01236223234898437,0.0986945762072993,0.41689510134947194,0.03502491242570356,0.015907899625436164,0.02400273679930388,0.19162719720417376,0.8083728027958262,0.35488183618253555,0.45418813420820753,1.225064987806996,0.010098041051706573,1.1747681726509493,0.08405206988062329,1.0547062691581877,0.48829110990902336,1.2034628613004759,0.02915578159137823,1.2138065181356583,0.013054262827494433 +23029,0.524879446307007,0.014090104455414136,0.10689029855536172,0.41958203590342524,0.04049598078452994,0.018095634031268126,0.0268444583885891,0.2036473314156801,0.7963526685843199,0.3788555306874351,0.44685012390614637,1.3973290581334146,0.010098041051706573,1.2711797499851056,0.08405206988062329,1.0754632295313893,0.48829110990902336,1.386890501491055,0.02915578159137823,1.3899252777345246,0.013054262827494433 +23031,0.5082843133933221,0.011655322720782034,0.09494830392833106,0.4141915776024785,0.03352883926999612,0.015041601628711453,0.022930714983058854,0.18680156248469126,0.8131984375153087,0.35312731120825896,0.4486168312474717,1.1551327264686968,0.010098041051706573,1.1285923458587557,0.08405206988062329,1.0402246478057018,0.48829110990902336,1.1500703827554455,0.02915578159137823,1.1531249244114106,0.013054262827494433 +24001,0.508227512375999,0.013083862147298272,0.09940292867063252,0.41009568145716624,0.03857732490720771,0.0170443697059076,0.025744104419161227,0.19558746083209255,0.8044125391679074,0.3880904257361679,0.4418235257863374,1.2968458074444125,0.010098041051706573,1.180212385208077,0.08405206988062329,1.0398754710966365,0.48829110990902336,1.3157694587561815,0.02915578159137823,1.3031196348694367,0.013054262827494433 +24003,0.4899523182800066,0.00946803064406547,0.082724582484241,0.40828996358755876,0.02690923842257268,0.012267752659987731,0.019324391967984345,0.16884210850281983,0.8311578914971802,0.3252870865525236,0.45589371454292027,0.9386289938759429,0.010098041051706573,0.9863735978884378,0.08405206988062329,1.0031476641759984,0.48829110990902336,0.9240280772351713,0.02915578159137823,0.9339055300205594,0.013054262827494433 +24005,0.49727004050504875,0.011329219129420464,0.09096109793527637,0.40810124544009707,0.033428710134866924,0.014815798523722404,0.022782830668652436,0.18292092932623166,0.8170790706737683,0.3675055698937717,0.44320580913677493,1.1217060456266963,0.010098041051706573,1.0787684241757511,0.08405206988062329,1.0182066529265836,0.48829110990902336,1.1419500964344307,0.02915578159137823,1.1305777102975338,0.013054262827494433 +24009,0.48680547819129816,0.008722056482264307,0.07954589975523277,0.4079491228392904,0.02475766674654536,0.011296595116247555,0.017916923438640583,0.16340387140009527,0.8365961285999047,0.3112374971271442,0.4562867426844196,0.8639982010545478,0.010098041051706573,0.949047778401531,0.08405206988062329,0.9969178412190904,0.48829110990902336,0.850526396968164,0.02915578159137823,0.8609698606672336,0.013054262827494433 +24011,0.49266070632258896,0.010222733757534082,0.08540752491306336,0.408876945868974,0.02919216065324629,0.013179297426513756,0.020750048920768496,0.17335972570367614,0.8266402742963239,0.3417984619383491,0.45146700797729966,1.013129249359393,0.010098041051706573,1.0162996363199184,0.08405206988062329,1.008899765895987,0.48829110990902336,1.0025592147934281,0.02915578159137823,1.0086008468456171,0.013054262827494433 +24013,0.4944552124821109,0.010163877757521237,0.08632109567999403,0.40958401834134106,0.02921743570328096,0.013144249335419031,0.02055570959905486,0.1745781892897268,0.8254218107102732,0.3384738744697428,0.44987689778480466,1.00657817646512,0.010098041051706573,1.0255815302030413,0.08405206988062329,1.0125903565586527,0.48829110990902336,1.0031905092427615,0.02915578159137823,1.006532669135289,0.013054262827494433 +24015,0.48701618232912525,0.009243199156279936,0.08110945116610865,0.4072225802398995,0.02621911722907443,0.011964719138889867,0.01897924441047297,0.16654364702669147,0.8334563529733086,0.3232560059539647,0.4563356971310295,0.9164267608136276,0.010098041051706573,0.9670585616498882,0.08405206988062329,0.9973753410384167,0.48829110990902336,0.9003293823165354,0.02915578159137823,0.9104975426858579,0.013054262827494433 +24017,0.4775676584172609,0.00779673593471757,0.07367285601783044,0.4047822699439799,0.02195164184559173,0.010086017998200685,0.01632592952495413,0.15426684516701697,0.8457331548329831,0.2979610542080648,0.4594653133075844,0.7733074527037178,0.010098041051706573,0.8803594315216119,0.08405206988062329,0.9779450455474523,0.48829110990902336,0.7544679937729584,0.02915578159137823,0.7685190694033435,0.013054262827494433 +24019,0.5149170593437248,0.012963458228001037,0.10084950872991519,0.4154893720501063,0.03789822078492684,0.016830196417552064,0.02517581811044152,0.19585583134194567,0.8041441686580544,0.3757898403493662,0.4440893548291822,1.2850550561679035,0.010098041051706573,1.1967041049645315,0.08405206988062329,1.054501621353154,0.48829110990902336,1.2957333928725152,0.02915578159137823,1.2892860353872768,0.013054262827494433 +24021,0.485597750876098,0.008974184277085621,0.07983796920314279,0.40666534575261315,0.025691082290876775,0.011611046145011973,0.0184806957217053,0.16441173596686146,0.8355882640331386,0.3217902778251711,0.45194850156761207,0.8890975054767207,0.010098041051706573,0.9517903751170615,0.08405206988062329,0.9940280954703978,0.48829110990902336,0.8817192887344009,0.02915578159137823,0.8881972009008073,0.013054262827494433 +24023,0.5107284052646877,0.012621946910253309,0.0984042041510146,0.4136222513560756,0.036669153642045496,0.016327551665619548,0.024713618393149523,0.1926742337740469,0.8073257662259531,0.37263807942363625,0.44526666268343024,1.2516134696159082,0.010098041051706573,1.1688419736595443,0.08405206988062329,1.0459013148114233,0.48829110990902336,1.2548382918250898,0.02915578159137823,1.2517131846162264,0.013054262827494433 +24025,0.491166640145098,0.009679215410815638,0.08367977992347791,0.4089552061231221,0.027526757534009887,0.012513635216053086,0.01970658147295234,0.1703694287925533,0.8296305712074468,0.32895351253531135,0.45459895523808885,0.9592492353873563,0.010098041051706573,0.9969032248008025,0.08405206988062329,1.0059862309822194,0.48829110990902336,0.94504409344941,0.02915578159137823,0.9539268469195512,0.013054262827494433 +24027,0.48455953982537703,0.008344881740062517,0.07749656723296763,0.4076377144044592,0.023510673979486505,0.010806634593598867,0.017221581775213424,0.15993198123990177,0.8400680187600982,0.30337697292848453,0.4596480136225722,0.8271425664877825,0.010098041051706573,0.9264407025989749,0.08405206988062329,0.9920866097449679,0.48829110990902336,0.8080470390080303,0.02915578159137823,0.8222650282670596,0.013054262827494433 +24029,0.5240975414868545,0.015098585946112486,0.10996484274138422,0.41509671667200443,0.044575655654254184,0.019646932924829427,0.028808732632628065,0.20981751303281468,0.7901824869671853,0.40536279180689955,0.4407547715555447,1.4972033415722306,0.010098041051706573,1.3049867792678698,0.08405206988062329,1.0723275540908745,0.48829110990902336,1.5194485851630595,0.02915578159137823,1.5026643708962717,0.013054262827494433 +24031,0.491378484516248,0.009916666928891314,0.08467827644639359,0.40827189590581603,0.028728133566047084,0.012867209184153077,0.02018132100076394,0.17232801010764157,0.8276719898923585,0.33926214339321975,0.4478957588585025,0.9818813479343331,0.010098041051706573,1.007179977710361,0.08405206988062329,1.0062091837123828,0.48829110990902336,0.9866385355045697,0.02915578159137823,0.9861625120753115,0.013054262827494433 +24033,0.4738633628561037,0.007721996597881446,0.07246945270902791,0.4019875270996489,0.02161310702974256,0.009935004293963157,0.016295829564326025,0.15293322588231922,0.8470667741176807,0.29823748106007286,0.4596749685406752,0.76645504293344,0.010098041051706573,0.86801056973671,0.08405206988062329,0.9697738080264668,0.48829110990902336,0.7428226373476899,0.02915578159137823,0.7579263077214597,0.013054262827494433 +24035,0.5053182745573548,0.011020820301771999,0.09180450086053354,0.41402794815225985,0.031314882771382765,0.014240832322231854,0.021809661072372536,0.18167658975118567,0.8183234102488144,0.34110400337512137,0.4547624344053396,1.0925219033351692,0.010098041051706573,1.0921857165345035,0.08405206988062329,1.034938442224248,0.48829110990902336,1.0751672666720342,0.02915578159137823,1.0851001255424544,0.013054262827494433 +24037,0.47807765614710684,0.008346848551987262,0.0754280205239738,0.4033090488698318,0.023657184836426263,0.010807016215819422,0.01745918982965164,0.15777357413408213,0.8422264258659179,0.31363921089387653,0.45681750768499163,0.8279501140455194,0.010098041051706573,0.9007206226512103,0.08405206988062329,0.9786354465179089,0.48829110990902336,0.8122568204785887,0.02915578159137823,0.8222771253506498,0.013054262827494433 +24039,0.4879503821581984,0.010339260061300653,0.08509664201380449,0.40407381675664056,0.029767575513678292,0.013356753800622491,0.021189162749643182,0.1743960966634007,0.8256039033365993,0.34980905014852826,0.448701433359429,1.0244242968076618,0.010098041051706573,1.013321013312569,0.08405206988062329,0.9993294889492836,0.48829110990902336,1.0209597285635066,0.02915578159137823,1.022954466148821,0.013054262827494433 +24041,0.5362567888946261,0.016362354924776272,0.11685422270178086,0.4208232664616868,0.04779487483737568,0.0211610667587676,0.030512163694008648,0.2179072137112703,0.7820927862887297,0.40901281727191946,0.4427476132277599,1.6226227755477964,0.010098041051706573,1.386459931363938,0.08405206988062329,1.0981897356295627,0.48829110990902336,1.6341759890515162,0.02915578159137823,1.6226227415817203,0.013054262827494433 +24043,0.49623956505628597,0.010859550003586144,0.08911235967713582,0.40888758762141464,0.03176780273895675,0.01412425407984389,0.021883684349824867,0.17957528168280626,0.8204247183171938,0.35649154454056764,0.44460909669787657,1.0753278808046791,0.010098041051706573,1.0572079600916757,0.08405206988062329,1.0161053610327513,0.48829110990902336,1.0882582449808451,0.02915578159137823,1.0815796252021832,0.013054262827494433 +24045,0.4856231112778431,0.010120506865434193,0.08329397472626715,0.4034019981572805,0.029217631977866067,0.013073830221487502,0.020840249630631507,0.1715197913606125,0.8284802086393875,0.350777256985098,0.44746371750426706,1.0022119582496636,0.010098041051706573,0.9918376395478093,0.08405206988062329,0.994906683499602,0.48829110990902336,1.0016435575621263,0.02915578159137823,1.0012705635807782,0.013054262827494433 +24047,0.5380787157684312,0.016004788505297244,0.11639664909319543,0.42286127574811194,0.04608965828008317,0.020550401287645147,0.029744325572218136,0.21631899884196154,0.7836810011580384,0.395970662722262,0.4458787948212156,1.5878498354711423,0.010098041051706573,1.3845895485233815,0.08405206988062329,1.1022152188920558,0.48829110990902336,1.5780883318931072,0.02915578159137823,1.579749674363188,0.013054262827494433 +24510,0.4814682272239846,0.009442756060353753,0.08017868586862445,0.4024743678907458,0.027329421127090636,0.01225223716293706,0.01961241786357976,0.16652954719548793,0.833470452804512,0.3408564362338245,0.4483167464821227,0.935192092787309,0.010098041051706573,0.9556723693470294,0.08405206988062329,0.986105966368648,0.48829110990902336,0.9380686305506003,0.02915578159137823,0.9370282038364675,0.013054262827494433 +25001,0.5450116966629772,0.01734625037560783,0.12276342820514752,0.42399420294313295,0.05100771129731968,0.022527659747338558,0.03182729927048585,0.22524916246166662,0.7747508375383334,0.41549598315291186,0.44165203994405305,1.7204430803326805,0.010098041051706573,1.4570859379358918,0.08405206988062329,1.115993741042507,0.48829110990902336,1.7397741969730622,0.02915578159137823,1.7239300780446598,0.013054262827494433 +25003,0.5186094577864212,0.013801394168174531,0.10465968423521652,0.4155445421412445,0.04079761040824291,0.0180418892147654,0.026612307124291506,0.20180828302271048,0.7981917169772895,0.38981209150748697,0.44222906768873266,1.3679177201941095,0.010098041051706573,1.241732992594153,0.08405206988062329,1.0621629805503665,0.48829110990902336,1.3916377386350467,0.02915578159137823,1.3763108913023987,0.013054262827494433 +25005,0.49674215746240075,0.010989964552199189,0.08974080004816425,0.4085782362604079,0.03225730889801719,0.014322558184996555,0.0221240826595859,0.1806587153919121,0.8193412846080879,0.3594497584231984,0.4440097042898995,1.0881843405101912,0.010098041051706573,1.0642336476480418,0.08405206988062329,1.0170999039011535,0.48829110990902336,1.1040145959675027,0.02915578159137823,1.0958869849228745,0.013054262827494433 +25007,0.5169345334091558,0.012657461926172656,0.10089289720602504,0.4169370646374173,0.036469227440030616,0.01635879048272965,0.024485618793345775,0.195175386215043,0.8048246137849571,0.36146476560743246,0.4485642178636707,1.2540679726080173,0.010098041051706573,1.1986701247988054,0.08405206988062329,1.0589724476094289,0.48829110990902336,1.250473557901068,0.02915578159137823,1.25311912946755,0.013054262827494433 +25009,0.49892581053994456,0.011097232363587464,0.09058985649690607,0.4099238413158069,0.03250763163576182,0.014453517744578469,0.02224224950715194,0.18156979371115006,0.81843020628885,0.3588440570812921,0.4446192176202119,1.0988570804367286,0.010098041051706573,1.074894703341529,0.08405206988062329,1.021680934934087,0.48829110990902336,1.1130162866177358,0.02915578159137823,1.1054882340643137,0.013054262827494433 +25011,0.512986190437787,0.01211013301545062,0.09816680152244639,0.4153254406866054,0.035060299315307145,0.015700344768320704,0.02360713259184565,0.19136343892351168,0.8086365610764883,0.35715026639928177,0.44780977558471713,1.1994307719645811,0.010098041051706573,1.1656202481908964,0.08405206988062329,1.049983173757636,0.48829110990902336,1.2022750199077499,0.02915578159137823,1.2020465564987486,0.013054262827494433 +25013,0.4936141174543749,0.011005755215017253,0.08869346421155085,0.4071926206324845,0.03251535426352033,0.014406899947283367,0.022296273193674457,0.17968178193312886,0.8203182180668711,0.3666037238771619,0.44307990097609906,1.0891066475712934,0.010098041051706573,1.0517465136842798,0.08405206988062329,1.0110701707601923,0.48829110990902336,1.1109182527805024,0.02915578159137823,1.0983958702786083,0.013054262827494433 +25015,0.4852955671296401,0.010119944893009977,0.08399485166510244,0.4023385854979978,0.029506226690530876,0.013173768155358988,0.020853157495062325,0.1730797834439406,0.8269202165560594,0.35128613368085637,0.44647417284253116,1.002443680146898,0.010098041051706573,1.0001347321419787,0.08405206988062329,0.9940425355904722,0.48829110990902336,1.0118728438764335,0.02915578159137823,1.0073386343161064,0.013054262827494433 +25017,0.4928834936448765,0.01039969335286408,0.08691829174517675,0.4072446873107134,0.030417053068813153,0.013532437442401131,0.021099698989629947,0.1763465258339561,0.823653474166044,0.34994996401894946,0.4448964011006065,1.030061999827454,0.010098041051706573,1.0320310330568545,0.08405206988062329,1.0090436327682997,0.48829110990902336,1.0427705631928301,0.02915578159137823,1.0373585024781617,0.013054262827494433 +25019,0.4957880473889831,0.009661144848944488,0.08541749729760562,0.41068792056110065,0.028287255009443565,0.012620175225593378,0.01948644163533977,0.17228631821087279,0.8277136817891272,0.3311646431279426,0.44614350955510507,0.9565993230288874,0.010098041051706573,1.018035236206746,0.08405206988062329,1.0146800625474681,0.48829110990902336,0.9724703956118746,0.02915578159137823,0.9702009569551261,0.013054262827494433 +25021,0.5002401023797187,0.011239589723511186,0.0916729911140339,0.41032892741871396,0.03305833130727345,0.014681317284785503,0.022468390019198255,0.18325798087344747,0.8167420191265525,0.36061146151707346,0.44410339857521297,1.1128063885583654,0.010098041051706573,1.0869153058989132,0.08405206988062329,1.0246097944979082,0.48829110990902336,1.1311380408193312,0.02915578159137823,1.1216908249236202,0.013054262827494433 +25023,0.4991061141109665,0.010684383937607036,0.08917024803747181,0.411350793626616,0.030700006204548803,0.013807555325537364,0.02140703877498798,0.17865989920060676,0.8213401007993932,0.34428530681722236,0.44975741156337307,1.0582230168516191,0.010098041051706573,1.0588935751671298,0.08405206988062329,1.022040948029559,0.48829110990902336,1.0539944894280153,0.02915578159137823,1.0573466145674373,0.013054262827494433 +25025,0.4675752872089782,0.008430839430677427,0.07375318837089162,0.39507524675741024,0.02463646205150189,0.010997669118714757,0.018030977387625165,0.1577354286860083,0.8422645713139917,0.33403928149667944,0.44639807029614936,0.8345595085486155,0.010098041051706573,0.8787670861589945,0.08405206988062329,0.957734752118327,0.48829110990902336,0.8457306007433141,0.02915578159137823,0.8414044324378348,0.013054262827494433 +25027,0.4900681502013908,0.01009333143012221,0.08524983022068172,0.40661916330338693,0.02952826665880831,0.013144081838907817,0.020595771069746954,0.17395505132428782,0.8260449486757122,0.34637331924732345,0.44513557096948403,0.9989767365399019,0.010098041051706573,1.0122998105490906,0.08405206988062329,1.0036144569272727,0.48829110990902336,1.012381157225202,0.02915578159137823,1.0071002716462294,0.013054262827494433 +26001,0.5730521650774792,0.020256797230407984,0.1391320484796712,0.43460059255108574,0.057867519615582286,0.025899722039483635,0.035348958550168244,0.2427912447741296,0.7572087552258704,0.41591797323416396,0.4475692445699622,2.0098611811649256,0.010098041051706573,1.6500389130457842,0.08405206988062329,1.1729470857384328,0.48829110990902336,1.982442886681415,0.02915578159137823,1.9880707462977205,0.013054262827494433 +26003,0.5337158149134877,0.014901796286504723,0.11282379089267354,0.4222292613316591,0.04392618644253063,0.01944902910497519,0.02792084452082466,0.2113930068026214,0.7886069931973786,0.3893344311069685,0.44276616478921255,1.476521233115493,0.010098041051706573,1.3367480914354366,0.08405206988062329,1.09250012863202,0.48829110990902336,1.5016747750775963,0.02915578159137823,1.4882188604895674,0.013054262827494433 +26005,0.4914753626614841,0.009897421231301981,0.08403588379527824,0.4092987573942969,0.02821805374338833,0.012753447098661917,0.020138183891262675,0.17098697143270647,0.8290130285672935,0.33578576756723333,0.4519605503143579,0.9806267267030575,0.010098041051706573,1.000757693467751,0.08405206988062329,1.006496241891963,0.48829110990902336,0.9686302422346631,0.02915578159137823,0.9751238820410206,0.013054262827494433 +26007,0.522354409243613,0.014034450065365602,0.10606048462233293,0.41755376130092425,0.041198631210651156,0.018256819884400276,0.0268676779922045,0.2030431499102537,0.7969568500897463,0.38844468189405246,0.44314141872947244,1.3920106091824758,0.010098041051706573,1.2602134613572855,0.08405206988062329,1.0699103704492963,0.48829110990902336,1.4062753214943782,0.02915578159137823,1.3952735340267004,0.013054262827494433 +26009,0.5322074838205939,0.015120651218761475,0.1116900768881214,0.4218624507277152,0.04371066168077582,0.01948216317905494,0.028411196156457312,0.20986190589866244,0.7901380941013376,0.3913567158214088,0.44570734987576954,1.4995733339250559,0.010098041051706573,1.328919660238928,0.08405206988062329,1.0901478350703266,0.48829110990902336,1.497702231787727,0.02915578159137823,1.4947696328417537,0.013054262827494433 +26011,0.5272655015881083,0.014680599225108955,0.10947995068635236,0.41926704129295633,0.0423750265652143,0.01889906727975854,0.02784289732761089,0.20763723466944442,0.7923627653305556,0.3870574137050349,0.44599540841993957,1.4561753483882545,0.010098041051706573,1.301732526661882,0.08405206988062329,1.0805522922635553,0.48829110990902336,1.4511776666753704,0.02915578159137823,1.4516145286798654,0.013054262827494433 +26013,0.5134003370791644,0.012470053390001777,0.09935106723507417,0.4155979764542685,0.03603682308977384,0.016112328420016683,0.024289141415345314,0.19351578107700892,0.806484218922991,0.36272205314621586,0.44710734849956507,1.2359402704425744,0.010098041051706573,1.1792768477163271,0.08405206988062329,1.0515826893667914,0.48829110990902336,1.234159410979315,0.02915578159137823,1.235945375463369,0.013054262827494433 +26015,0.5006947373490266,0.010835093108648943,0.08955938851780595,0.41251650744259327,0.030722008674786493,0.013967914229934007,0.021640117821122545,0.17887024136100613,0.8211297586389938,0.34303504281606867,0.45465497968553903,1.0738444720185658,0.010098041051706573,1.0655325553003112,0.08405206988062329,1.0251861974987593,0.48829110990902336,1.05508244250443,0.02915578159137823,1.0644602220321846,0.013054262827494433 +26017,0.5061422037772951,0.012135174628212116,0.09585172919208361,0.41179435868468683,0.03568795909230958,0.01585215235189178,0.02397582050587437,0.18937707323505235,0.8106229267649476,0.3723246246376226,0.44418769677719594,1.2022932295681192,0.010098041051706573,1.1371816090311708,0.08405206988062329,1.0363912964982385,0.48829110990902336,1.2198013088120885,0.02915578159137823,1.2095271859252743,0.013054262827494433 +26019,0.5245164482351988,0.014342496587923331,0.10719282472389144,0.41907077176325735,0.04149394920777323,0.018501870262158444,0.027344226546527673,0.2043650396180236,0.7956349603819763,0.3870963314443279,0.44589321130928683,1.4225795796156588,0.010098041051706573,1.274023529274751,0.08405206988062329,1.074460683939724,0.48829110990902336,1.4216663323281487,0.02915578159137823,1.419008267402749,0.013054262827494433 +26021,0.5043787931134701,0.012035013693864172,0.09452842849393162,0.41142405687281663,0.03506409590479514,0.015604270645514924,0.023861062079104215,0.18741554915586142,0.8125844508441386,0.3709370446906999,0.4450213314463638,1.1932293513407486,0.010098041051706573,1.1229789569328776,0.08405206988062329,1.0328248980647823,0.48829110990902336,1.200357123564007,0.02915578159137823,1.1943898898418515,0.013054262827494433 +26023,0.49836850198819804,0.010902647612199858,0.0894088221801577,0.4106706767188124,0.031265695484931175,0.014054030808152582,0.021876678740138447,0.17940303575259858,0.8205969642474014,0.34969362891204603,0.44950322038817486,1.0803454701188506,0.010098041051706573,1.0629679944691968,0.08405206988062329,1.0204499749105462,0.48829110990902336,1.0725835933326355,0.02915578159137823,1.076272654592283,0.013054262827494433 +26025,0.49696535528702684,0.011243579347617851,0.08997258276868804,0.4090820818455578,0.032650417023308294,0.014547639144308507,0.02262447317102018,0.18104397381327228,0.8189560261867277,0.36289296159530926,0.4455575294466628,1.1140281539973276,0.010098041051706573,1.0689008779088183,0.08405206988062329,1.0177881345005981,0.48829110990902336,1.1188984712233716,0.02915578159137823,1.114565309921018,0.013054262827494433 +26027,0.5087704891757732,0.012042750523253501,0.09578443860120495,0.41446741423705546,0.03454040960168675,0.015476991242816646,0.023670300812382413,0.18826649862569514,0.8117335013743049,0.36060564853853244,0.4480836047196395,1.1940410036685,0.010098041051706573,1.1392126214575755,0.08405206988062329,1.0421112319624897,0.48829110990902336,1.1835557740802551,0.02915578159137823,1.1875700403589429,0.013054262827494433 +26029,0.5189647905565655,0.013202530811358911,0.10227360154190229,0.41768244106600916,0.03788124651768279,0.016952768746093333,0.025440128216019844,0.19707233207905805,0.802927667920942,0.37039124413901225,0.44752404697611675,1.3088616425109079,0.010098041051706573,1.2175969115305187,0.08405206988062329,1.062939424594457,0.48829110990902336,1.298634412803973,0.02915578159137823,1.3020929672691604,0.013054262827494433 +26031,0.5277571589641221,0.01469965861564269,0.10936195404207573,0.4199867619211405,0.042254339721331524,0.018864282783853607,0.02785307288771804,0.20722021896724352,0.7927797810327565,0.38637147709590725,0.44644604337126187,1.4578816684618578,0.010098041051706573,1.3013761850852743,0.08405206988062329,1.0816772705458906,0.48829110990902336,1.4468037345628622,0.02915578159137823,1.4492315198807733,0.013054262827494433 +26033,0.4962703065304096,0.010678883757214631,0.08883997537375793,0.40886931059427156,0.030537722100019177,0.013807197947367355,0.021518280696409688,0.17901529510171116,0.8209847048982888,0.343738525045107,0.4521358175356074,1.0584286503740017,0.010098041051706573,1.0568029711930675,0.08405206988062329,1.0164104756606651,0.48829110990902336,1.0497871189164993,0.02915578159137823,1.0555438079229125,0.013054262827494433 +26035,0.5241815569819037,0.014261890730927412,0.10669258294967549,0.4188296124304915,0.04055302000558755,0.018265653191746948,0.02720792164654464,0.203541275973124,0.796458724026876,0.3800922133895241,0.4504141291876717,1.4137479751838535,0.010098041051706573,1.2696330507054072,0.08405206988062329,1.074310944696938,0.48829110990902336,1.3886198473853466,0.02915578159137823,1.3966049617888125,0.013054262827494433 +26037,0.48948522683632983,0.00988277618722727,0.08368161209814294,0.407450958431495,0.0280966376849281,0.012751570526632294,0.020190141898872454,0.17095840182756675,0.8290415981724333,0.3357564102849259,0.4538468506312635,0.979867142793555,0.010098041051706573,0.997319006151975,0.08405206988062329,1.0027743972751848,0.48829110990902336,0.9642267173254354,0.02915578159137823,0.9725592478294508,0.013054262827494433 +26039,0.5285384019361663,0.014329682180003283,0.10866365895494247,0.4212335212054992,0.0409522915407968,0.018372372329162504,0.02711190355801987,0.2055927413351248,0.7944072586648752,0.37687200978367313,0.4486286759035179,1.42098638088016,0.010098041051706573,1.2927468640880173,0.08405206988062329,1.0827850027113262,0.48829110990902336,1.4025048559063018,0.02915578159137823,1.409220515477495,0.013054262827494433 +26041,0.5202396199011596,0.013881987896401233,0.10519344403258413,0.41680625996558274,0.040947771931346376,0.018120125163509956,0.026683834458895446,0.2022019085216344,0.7977980914783656,0.3892616342009168,0.4425179761646231,1.3759255490681173,0.010098041051706573,1.248207143898691,0.08405206988062329,1.0654811633357513,0.48829110990902336,1.3972679741094505,0.02915578159137823,1.382883718793988,0.013054262827494433 +26043,0.5203135570305241,0.014144200523742786,0.10604878558933456,0.4156446267741496,0.04199858612328897,0.01850837352503577,0.027183993829538098,0.20381707175681613,0.7961829282431838,0.3960308068583183,0.4406903954029192,1.4023079610682827,0.010098041051706573,1.2597531327672873,0.08405206988062329,1.0654261854352,0.48829110990902336,1.4299743969178262,0.02915578159137823,1.4119250565803245,0.013054262827494433 +26045,0.4974299121224216,0.010762236724094206,0.08883662261248451,0.41018727796399446,0.030943002264509335,0.013892559925334825,0.021635684669975237,0.1785912355640991,0.8214087644359009,0.3483135823328881,0.4489725918182529,1.0664934032269082,0.010098041051706573,1.0564404250650994,0.08405206988062329,1.0185069621992486,0.48829110990902336,1.0617929031380147,0.02915578159137823,1.0640315871867911,0.013054262827494433 +26047,0.509209918723944,0.012319099029716476,0.09700053880066184,0.41323871852569427,0.035447943486491135,0.015845731649399373,0.024192574764819105,0.19049224147821117,0.8095077585217888,0.365440686461932,0.44701413088852465,1.2215756873227348,0.010098041051706573,1.1537656051587712,0.08405206988062329,1.0427816691248708,0.48829110990902336,1.2147744948323225,0.02915578159137823,1.2170937262035264,0.013054262827494433 +26049,0.491249215425937,0.010263550347449777,0.08518456312854569,0.4079687645977679,0.029380345724403963,0.013227312157673123,0.02089275672135329,0.17340396778992617,0.8265960322100738,0.3449022292932144,0.45020954762578663,1.0172117764697814,0.010098041051706573,1.0135040235639008,0.08405206988062329,1.0063073987383877,0.48829110990902336,1.0082788268578744,0.02915578159137823,1.0123316826834614,0.013054262827494433 +26051,0.5343752635987397,0.015295041866610678,0.11258131443642888,0.4230091827702275,0.043623850602838465,0.019561842813668275,0.028622286450174585,0.2106783792315764,0.7893216207684236,0.3874874868997153,0.44842081896354763,1.5168026579109408,0.010098041051706573,1.3399140750656904,0.08405206988062329,1.0945331390298296,0.48829110990902336,1.493992041787547,0.02915578159137823,1.5011602666254373,0.013054262827494433 +26053,0.5322370012086928,0.01581452158895144,0.11492981008564193,0.41852253371691955,0.047200488649823194,0.020745346384086833,0.029713307329323556,0.2159372794913546,0.7840627205086454,0.4106896949942833,0.4395155003160024,1.56928074664028,0.010098041051706573,1.363600353891112,0.08405206988062329,1.0896361451300258,0.48829110990902336,1.6065257253549188,0.02915578159137823,1.5816972815533394,0.013054262827494433 +26055,0.5027978473990466,0.01140412629710769,0.09265982884520477,0.4116888123160557,0.03332539985152046,0.01485648335329872,0.022681334767244498,0.18428843584858287,0.8157115641514171,0.35965315570777767,0.44580060312827424,1.1293044023290295,0.010098041051706573,1.0995397146928614,0.08405206988062329,1.0296108472983818,0.48829110990902336,1.1414838256917799,0.02915578159137823,1.1347018167066103,0.013054262827494433 +26057,0.4915294876060592,0.010962404381253798,0.08804368504028504,0.40521939026247233,0.032046859549219445,0.014232405405619342,0.02230263831096888,0.17912187826022852,0.8208781217397715,0.3639881671758306,0.444112328191172,1.085600380529836,0.010098041051706573,1.044939407939526,0.08405206988062329,1.0065750436825973,0.48829110990902336,1.096882558127938,0.02915578159137823,1.089971400063866,0.013054262827494433 +26059,0.500992638122977,0.011534930276782679,0.09179912775497515,0.4106664786152353,0.03287957915463338,0.014811181926457166,0.023024151252999524,0.18323448444055085,0.8167655155594491,0.35816875343732707,0.4504675031514197,1.143565956503595,0.010098041051706573,1.0920138477261765,0.08405206988062329,1.0259543682159145,0.48829110990902336,1.1279776075315397,0.02915578159137823,1.1336600206593523,0.013054262827494433 +26061,0.48513479301419593,0.011149363105671817,0.08647830790957406,0.40059632706046894,0.032700084408008395,0.01448238802824368,0.022981990296757723,0.17825624786108374,0.8217437521389163,0.37813048379948877,0.44288534083101266,1.1043760326421894,0.010098041051706573,1.027239615231419,0.08405206988062329,0.9943169717806247,0.48829110990902336,1.1169772096918045,0.02915578159137823,1.106705488203465,0.013054262827494433 +26063,0.5286937017794462,0.015283374680415348,0.1117180939556892,0.418677610704145,0.04524891073004615,0.019942929093356633,0.028907805462738564,0.21130967435336379,0.7886903256466362,0.405027593363643,0.4407383243396872,1.5154851328821421,0.010098041051706573,1.3271320302011873,0.08405206988062329,1.0828825536336706,0.48829110990902336,1.541505167471094,0.02915578159137823,1.5225468851460129,0.013054262827494433 +26065,0.4690623695681266,0.008414147145255083,0.07352171469991078,0.3966373083424287,0.0241814380432867,0.010870569579201819,0.017938226750106017,0.1567418737248171,0.8432581262751829,0.32890198687539646,0.4495418990277846,0.8334424166042107,0.010098041051706573,0.8786757864353081,0.08405206988062329,0.9611445279182842,0.48829110990902336,0.8303972480593546,0.02915578159137823,0.8325863972614491,0.013054262827494433 +26067,0.4819379641844666,0.008968264432017863,0.07877779496963927,0.4041787575409878,0.025567225126239365,0.01161109908003391,0.018608752782516152,0.1634604468293896,0.8365395531706104,0.32454862612101415,0.4541399789262842,0.8893854241858425,0.010098041051706573,0.9394455499499033,0.08405206988062329,0.9863787615208185,0.48829110990902336,0.8777764386787981,0.02915578159137823,0.885632066311235,0.013054262827494433 +26069,0.550462689090586,0.017660782148697755,0.124851959744037,0.42675262588752805,0.051161284990630634,0.02273692525425345,0.03208352264142545,0.22681275628381586,0.7731872437161842,0.40977558618637644,0.4444166181208574,1.7525813846470066,0.010098041051706573,1.483155450148951,0.08405206988062329,1.1269921673516599,0.48829110990902336,1.7505493673178671,0.02915578159137823,1.7457791673315757,0.013054262827494433 +26071,0.5533390593849219,0.01841770538132608,0.12869929944212277,0.4265914504248814,0.054803732347696234,0.024120335292015092,0.033284665286052194,0.23258668850375708,0.7674133114962429,0.425827744092282,0.44012212779571813,1.826623184524792,0.010098041051706573,1.5271324081275033,0.08405206988062329,1.133412912614948,0.48829110990902336,1.8689421767640901,0.02915578159137823,1.8383035339929206,0.013054262827494433 +26073,0.4533352749590621,0.007567179504771217,0.06647191155742466,0.38755034826767387,0.02175599739510046,0.009783912227598316,0.016692236238299706,0.1466285886608478,0.8533714113391522,0.32729609974140117,0.44971104058882144,0.7491331113774968,0.010098041051706573,0.7941863820329622,0.08405206988062329,0.929526544981627,0.48829110990902336,0.7473228253540561,0.02915578159137823,0.7474573853322135,0.013054262827494433 +26075,0.4960351061946763,0.010747793970924837,0.08844625121147026,0.409259124435431,0.031171146930153028,0.01391068750065446,0.02166740586846026,0.1783064345787619,0.8216935654212381,0.3524303913754861,0.4462680674479169,1.064553153963895,0.010098041051706573,1.0505959664659388,0.08405206988062329,1.0157034784322587,0.48829110990902336,1.067954657599138,0.02915578159137823,1.0664895507400054,0.013054262827494433 +26077,0.4798599637013752,0.00960288585628927,0.08014633084726916,0.40070169777289716,0.02779459624820497,0.012433789200075594,0.020011850503671744,0.16702024946833355,0.8329797505316665,0.34679811233245017,0.447345559152657,0.9507667346377509,0.010098041051706573,0.9554414277424401,0.08405206988062329,0.983022285582896,0.48829110990902336,0.9535875110006378,0.02915578159137823,0.9517114520676582,0.013054262827494433 +26079,0.5110184604292611,0.01215733480277906,0.09682818089978909,0.4149116391027807,0.03435436538633532,0.015636699649071176,0.023790402390877947,0.1894807886557608,0.8105192113442392,0.35479717853927123,0.45515903068582886,1.205358192277568,0.010098041051706573,1.152998551174579,0.08405206988062329,1.0463719403301268,0.48829110990902336,1.179501714013878,0.02915578159137823,1.1916691426385633,0.013054262827494433 +26081,0.4755801117147218,0.008836208470386856,0.07637270538358917,0.40075615999652003,0.025655701975129758,0.011469722801894991,0.018579852800251838,0.16058851811154284,0.8394114818884572,0.3359276307716422,0.4470633005097098,0.8745778427864057,0.010098041051706573,0.9104542796185039,0.08405206988062329,0.9738995621334279,0.48829110990902336,0.8812669088599145,0.02915578159137823,0.878657736541766,0.013054262827494433 +26083,0.5537820495642818,0.018006331985214036,0.12546323614337215,0.42844394785425105,0.050733743623755614,0.022933209841193878,0.03251519618481946,0.22655706562191244,0.7734429343780875,0.404371393431778,0.4520307038894644,1.7840918651784712,0.010098041051706573,1.4925107603065912,0.08405206988062329,1.133770575973943,0.48829110990902336,1.74244662089033,0.02915578159137823,1.755684073413263,0.013054262827494433 +26085,0.5380598954683671,0.015864035396628888,0.11518997078684001,0.42323389518427623,0.04506312236488405,0.02024580101232995,0.029483772216138987,0.2140839184577586,0.7859160815422415,0.3912069953405382,0.4492764804088835,1.5727281514516238,0.010098041051706573,1.370929844534313,0.08405206988062329,1.1021084991932484,0.48829110990902336,1.543842063546881,0.02915578159137823,1.5528239670003794,0.013054262827494433 +26087,0.4964687035033206,0.010007326190436408,0.08627151224495003,0.41121034323970507,0.028386737861983258,0.012939211173729344,0.020157013160789248,0.17377029334614041,0.8262297066538595,0.32903953023780336,0.4558188840380315,0.9914294874423843,0.010098041051706573,1.0283372051758097,0.08405206988062329,1.016937909950984,0.48829110990902336,0.9744969903563052,0.02915578159137823,0.985521434238751,0.013054262827494433 +26089,0.5422072878716181,0.01613347534166737,0.11773927837369355,0.4259783100350457,0.04657997330502688,0.020758680432917204,0.029755179804015094,0.21714809263421675,0.7828519073657833,0.3956196602223632,0.44565676963745576,1.59958012722544,0.010098041051706573,1.3997651557398014,0.08405206988062329,1.1105540775501515,0.48829110990902336,1.5949635405350515,0.02915578159137823,1.5932557079341267,0.013054262827494433 +26091,0.49729512140468224,0.010878664846068335,0.08928720229628034,0.40990068043917427,0.03159300113041642,0.014102550723415907,0.021875671764766097,0.17954570325177469,0.8204542967482253,0.35383571573428696,0.4463821168872292,1.0772460206455305,0.010098041051706573,1.0605107333485746,0.08405206988062329,1.0183340444274929,0.48829110990902336,1.0829838758019927,0.02915578159137823,1.0801044823735761,0.013054262827494433 +26093,0.4918345576793218,0.009204432974950737,0.08252715628092767,0.40993317728158574,0.026044625978357862,0.011903044149407675,0.018714490129325287,0.1677945459349681,0.8322054540650319,0.31558855475039393,0.4570249601318396,0.9121244619288006,0.010098041051706573,0.9844089594639194,0.08405206988062329,1.0073939616943965,0.48829110990902336,0.8943711105408798,0.02915578159137823,0.9068747692036309,0.013054262827494433 +26095,0.5170482302735496,0.012485481694417103,0.10038201368143482,0.4177056122861035,0.036018790678849943,0.016168014430846884,0.024147615180524905,0.1941443908014668,0.8058556091985332,0.3588171760845185,0.44887721453515267,1.2369566736926503,0.010098041051706573,1.1914559823767923,0.08405206988062329,1.0591787492273594,0.48829110990902336,1.235311619438076,0.02915578159137823,1.2383546007844395,0.013054262827494433 +26097,0.5371541923283106,0.015419649289080196,0.11440080461525608,0.424248583053895,0.044045807431552286,0.019744690765690125,0.028706188110053227,0.21297572698703593,0.7870242730129641,0.3850130912949759,0.44827628137760017,1.5292017494621386,0.010098041051706573,1.3615110707546725,0.08405206988062329,1.1005675235926136,0.48829110990902336,1.5082503377768453,0.02915578159137823,1.5151545102201325,0.013054262827494433 +26099,0.49740066058907995,0.01097032003313576,0.08971383757347626,0.4094052873359201,0.03204816441922921,0.01425846808531879,0.022055298479385664,0.18036533660254223,0.8196346633974578,0.357226547052806,0.4449074804659817,1.0864124758967426,0.010098041051706573,1.0644843874510852,0.08405206988062329,1.0185903111827292,0.48829110990902336,1.097960788579564,0.02915578159137823,1.0919230919510539,0.013054262827494433 +26101,0.5291294509747483,0.014728939094060298,0.11039197766433687,0.42016128456884066,0.04286568930329328,0.019056011048729733,0.027836173297341577,0.20862943361208808,0.7913705663879119,0.3883043877847061,0.4445516066217953,1.4600591418354871,0.010098041051706573,1.3119564341727477,0.08405206988062329,1.083808549053002,0.48829110990902336,1.4664878331576414,0.02915578159137823,1.4603403730089255,0.013054262827494433 +26103,0.49935076018478436,0.011335426236365081,0.09169114990116298,0.4092352724676515,0.03284634788144558,0.014660347581244107,0.02270032838674445,0.18362072757680942,0.8163792724231906,0.358228115983405,0.44633113045500933,1.1239210428664368,0.010098041051706573,1.0906965737138214,0.08405206988062329,1.022740171957694,0.48829110990902336,1.12618422950879,0.02915578159137823,1.1245966692512543,0.013054262827494433 +26105,0.5191293420195302,0.01370358079120053,0.1041614317706273,0.4163462793419311,0.03969495315535006,0.017688980759416738,0.02639723799446687,0.20064639645568066,0.7993536035443194,0.3810907020053436,0.44562291559305267,1.359089714692745,0.010098041051706573,1.2374897564859655,0.08405206988062329,1.0635914533516537,0.48829110990902336,1.3586817729451055,0.02915578159137823,1.3562148857633298,0.013054262827494433 +26107,0.4859625458936486,0.01101524653404339,0.08583567308580853,0.4016323359780263,0.03147493929020583,0.014088289657968787,0.02266686317108488,0.17663022348350566,0.8233697765164943,0.3666883261781013,0.4476033941820085,1.0915851080128545,0.010098041051706573,1.0214390182130844,0.08405206988062329,0.9958993709448251,0.48829110990902336,1.0791003277821352,0.02915578159137823,1.0812370922757357,0.013054262827494433 +26109,0.5234636892088331,0.013968662227976852,0.10644615947673142,0.41816700756396974,0.0409102074668489,0.01815898728590993,0.026685064343410697,0.20334965284338047,0.7966503471566195,0.38432769832143787,0.44387424093668676,1.385538954242206,0.010098041051706573,1.2651310843178423,0.08405206988062329,1.0720536397980438,0.48829110990902336,1.3975757642395354,0.02915578159137823,1.388069615020362,0.013054262827494433 +26111,0.4964471655436681,0.011017257499048711,0.08947184649239948,0.40901699015405024,0.032187947264493366,0.014322499840575112,0.022192205462556156,0.18022430724207533,0.8197756927579247,0.3597550349788265,0.4449646857839335,1.0910533960976871,0.010098041051706573,1.0619742806087624,0.08405206988062329,1.016640077004341,0.48829110990902336,1.1023598700266122,0.02915578159137823,1.0955923644535064,0.013054262827494433 +26113,0.5102783029951672,0.012593311688193842,0.09762280613624794,0.41416372812012686,0.03630691324291953,0.016195594824015856,0.024679300715462933,0.19131286900351024,0.8086871309964898,0.37191015788101334,0.4460746832333447,1.2485563181877561,0.010098041051706573,1.1609777536376913,0.08405206988062329,1.0448824182148928,0.48829110990902336,1.2436490023714493,0.02915578159137823,1.2444683584684602,0.013054262827494433 +26115,0.49434882028559385,0.010291756539979813,0.08662777839057098,0.4094009045085446,0.029586870789418164,0.01328375775663542,0.020818814807799253,0.17523613860456796,0.824763861395432,0.3415402234606833,0.4489747446149796,1.018966455429398,0.010098041051706573,1.0299615018323638,0.08405206988062329,1.0124763177019511,0.48829110990902336,1.0157734729509325,0.02915578159137823,1.0184638575957208,0.013054262827494433 +26117,0.4945290712883179,0.010684949040474512,0.08750933907639473,0.4087891020871587,0.030577088711169438,0.013750287696074052,0.021606311258180865,0.1769548933663709,0.8230451066336291,0.34941514853032957,0.44969250754900153,1.0589254269858979,0.010098041051706573,1.0405388654668655,0.08405206988062329,1.0126202964106992,0.48829110990902336,1.0493035491238427,0.02915578159137823,1.0533664960139268,0.013054262827494433 +26119,0.5583517116923892,0.01842773438582586,0.12956608966029215,0.43041138646751315,0.053085726202098844,0.02368220996274579,0.03300381103869202,0.23205102974892206,0.767948970251078,0.40971928952462566,0.44611257407663507,1.8281504178686938,0.010098041051706573,1.5367599762371187,0.08405206988062329,1.1434128788984017,0.48829110990902336,1.817097924589842,0.02915578159137823,1.8169412373220881,0.013054262827494433 +26121,0.4905183244015393,0.010299329045746309,0.08537481688675466,0.40701689056691703,0.029639890017445453,0.013287244282859125,0.020996828320964535,0.17405020901291887,0.8259497909870811,0.34717368772528384,0.448289257316357,1.0197658594591088,0.010098041051706573,1.0154290606366918,0.08405206988062329,1.004798363007141,0.48829110990902336,1.0171180468934369,0.02915578159137823,1.0181379051571287,0.013054262827494433 +26123,0.49959104733907056,0.01119297156155701,0.09039457342637816,0.41067000712524554,0.031926643452491,0.014405143566127095,0.022404267692892388,0.18093713629945754,0.8190628637005425,0.3531920362287416,0.45119505241955427,1.1090493872893779,0.010098041051706573,1.0748243932481811,0.08405206988062329,1.022889017924821,0.48829110990902336,1.0960285381416592,0.02915578159137823,1.1014061690829275,0.013054262827494433 +26125,0.49659965957690866,0.010386302105568682,0.08771471226082361,0.4104113155097873,0.030092599298601252,0.013478726260641784,0.020914839358564138,0.17663063308491694,0.823369366915083,0.3430735679679318,0.4479083420775916,1.028339107422144,0.010098041051706573,1.0421171514458665,0.08405206988062329,1.0171477222230694,0.48829110990902336,1.0331496919212237,0.02915578159137823,1.0328047147213915,0.013054262827494433 +26127,0.50569961327021,0.012210512952397133,0.09515826499301515,0.41199013336728496,0.03519028572417835,0.015702433129713776,0.024145782658276826,0.18817152019882866,0.8118284798011713,0.369807979651178,0.44621499389887115,1.2102697044024935,0.010098041051706573,1.1312469511653758,0.08405206988062329,1.0357406201345762,0.48829110990902336,1.2052660971693467,0.02915578159137823,1.2059838588441445,0.013054262827494433 +26129,0.5312004616539925,0.014982556166195947,0.1111430945881186,0.4213293147423337,0.04297230062617367,0.019208508430545057,0.028205088752266783,0.20923004140857424,0.7907699585914257,0.38663941098116134,0.44699744139008213,1.486092175836517,0.010098041051706573,1.3235175418010825,0.08405206988062329,1.0881803666217937,0.48829110990902336,1.4712689513402741,0.02915578159137823,1.4754786900120402,0.013054262827494433 +26131,0.563463269778522,0.01838980511077721,0.1308568812320459,0.43377529398922493,0.05219101983982778,0.023483595969655276,0.03263709650143763,0.2322367548171884,0.7677632451828116,0.3988404686741578,0.4499547248113856,1.823936052937687,0.010098041051706573,1.5552452313968224,0.08405206988062329,1.153471967584708,0.48829110990902336,1.78835934787084,0.02915578159137823,1.7985288804926123,0.013054262827494433 +26133,0.5076284865043537,0.012366261334969111,0.0959939203768333,0.412822389728853,0.03527329212492501,0.015844866839669167,0.02436084984143823,0.18910270587426936,0.8108972941257306,0.367453396907391,0.4492029488926773,1.2260438762558394,0.010098041051706573,1.1432440585353547,0.08405206988062329,1.0395205519531157,0.48829110990902336,1.2088876951833842,0.02915578159137823,1.2139524144977476,0.013054262827494433 +26135,0.5413857203442007,0.015996750763744988,0.11707586449326615,0.42523917480257656,0.045846332544539424,0.0204822671530066,0.029547788503868588,0.2162522210944758,0.7837477789055242,0.3915950801898744,0.44675911934958384,1.5859713373968476,0.010098041051706573,1.3930341405876474,0.08405206988062329,1.1085618327989406,0.48829110990902336,1.5698741387596507,0.02915578159137823,1.5748315044709533,0.013054262827494433 +26137,0.5101894252183277,0.012234969605832396,0.09666574739370411,0.4147434581406075,0.03490618749014522,0.015728190655921445,0.023981229325944244,0.1894703077241115,0.8105296922758884,0.3611019252556742,0.45058460367125047,1.2134005029102184,0.010098041051706573,1.1502343222805544,0.08405206988062329,1.0447427581950857,0.48829110990902336,1.1970742529147298,0.02915578159137823,1.2033627541282919,0.013054262827494433 +26139,0.4767269986894066,0.009025544805378271,0.07703852439694703,0.40097913246497674,0.02604564723420546,0.011667687132047837,0.018932313106223973,0.1615988282785271,0.8384011717214729,0.3380860087610612,0.4479707118479588,0.8932470589827773,0.010098041051706573,0.9180451214040146,0.08405206988062329,0.9764838403211851,0.48829110990902336,0.8945808689550896,0.02915578159137823,0.8938327261853889,0.013054262827494433 +26141,0.5534909211656629,0.018070178643569117,0.12714516972021633,0.4279854384506816,0.05299923712692519,0.023440684330696685,0.032647651393292884,0.2297150049949258,0.7702849950050742,0.41684035062873653,0.4422834289965302,1.7915793768919388,0.010098041051706573,1.5111593415170663,0.08405206988062329,1.1334627808507922,0.48829110990902336,1.8077723968309842,0.02915578159137823,1.791806716818178,0.013054262827494433 +26143,0.5613123650676622,0.019102465214357614,0.13230785412522217,0.4301243688312024,0.05457904454156573,0.02443416761200465,0.03403179121495915,0.23571163287891117,0.7642883671210888,0.4125155298030126,0.44768404828700026,1.8951511450468284,0.010098041051706573,1.5688593799342763,0.08405206988062329,1.1490279320982695,0.48829110990902336,1.870520605970491,0.02915578159137823,1.8751422088042597,0.013054262827494433 +26145,0.4980934664450216,0.01139719261013698,0.09079909523397678,0.4093668476094702,0.0331038618982457,0.014748640265699666,0.022881634427933166,0.18229328700499822,0.8177067129950017,0.3645836097038368,0.445526274578896,1.1292568984081448,0.010098041051706573,1.0786174104084267,0.08405206988062329,1.0200387582799995,0.48829110990902336,1.134012238222872,0.02915578159137823,1.1296138351638811,0.013054262827494433 +26147,0.4992159872027314,0.010931797676767442,0.08997557100822007,0.41094365810105793,0.03153967118075475,0.014126008397266757,0.02189793187117632,0.1802337531543857,0.8197662468456143,0.3505359380033645,0.44788064898680147,1.0827168093502004,0.010098041051706573,1.0686827182236542,0.08405206988062329,1.022264557692993,0.48829110990902336,1.0815965136760526,0.02915578159137823,1.0827106204121175,0.013054262827494433 +26149,0.49542358193179187,0.01112484178675318,0.08897491164778742,0.40835225647794876,0.032480322523944255,0.01444887264802967,0.022455212453501676,0.17959361421765582,0.8204063857823441,0.36505034871537245,0.44485003612196483,1.1021512972493444,0.010098041051706573,1.0562683623491333,0.08405206988062329,1.0139623416152963,0.48829110990902336,1.1119028067496293,0.02915578159137823,1.1048290703027592,0.013054262827494433 +26151,0.5080050752286167,0.012641541999119738,0.09739092532626492,0.4122244081178595,0.036687657187999184,0.016338482492656098,0.02488467658208077,0.19171250460920344,0.8082874953907966,0.3767050889504697,0.4453400338138937,1.253920930062356,0.010098041051706573,1.1575515561902834,0.08405206988062329,1.0403485672843278,0.48829110990902336,1.2562066617040033,0.02915578159137823,1.2520210301341912,0.013054262827494433 +26153,0.5337876652913351,0.01524405714870761,0.113222992801256,0.4216226056685919,0.04442327348194125,0.019739432289222557,0.02855827914342603,0.21211241878258877,0.7878875812174112,0.3923520513180469,0.4443488906157927,1.5122574467550198,0.010098041051706573,1.3459014126300177,0.08405206988062329,1.0930610178964544,0.48829110990902336,1.5180824211024002,0.02915578159137823,1.511074146087362,0.013054262827494433 +26155,0.4965032140902792,0.010674122186503106,0.08820464856153844,0.40997119697491535,0.03058465580935792,0.013768544670618778,0.021498596350601328,0.1776517171659239,0.8223482828340761,0.3467465298954134,0.45017817942571214,1.0577939050348515,0.010098041051706573,1.0489040453816187,0.08405206988062329,1.0167709231957565,0.48829110990902336,1.049501202557693,0.02915578159137823,1.0535139864933067,0.013054262827494433 +26157,0.5036370148820514,0.011584838490184391,0.09308632169990105,0.41171996547098455,0.03334285900104921,0.014923583969814249,0.023002357149816497,0.18482819758929214,0.8151718024107079,0.3581928944248385,0.4475796142539739,1.1484664211256201,0.010098041051706573,1.1063034576378963,0.08405206988062329,1.0311770529653743,0.48829110990902336,1.1424232917817418,0.02915578159137823,1.1449519546448668,0.013054262827494433 +26159,0.49664645936176577,0.010583905837129665,0.08778067848678242,0.4104193506344212,0.030151359997504422,0.013627652912570374,0.02131074457015341,0.1767468122084033,0.8232531877915967,0.34348515547239095,0.4519747339323438,1.048652774235336,0.010098041051706573,1.044223778743542,0.08405206988062329,1.0169566968536476,0.48829110990902336,1.034779676037473,0.02915578159137823,1.041645951511926,0.013054262827494433 +26161,0.46978000516542734,0.008145914883512847,0.07316282006579215,0.39779420217568007,0.023343623612518977,0.010546984164728077,0.017339850129731174,0.15573847175558003,0.8442615282444199,0.3190640217466613,0.45181435152474886,0.8069306572050283,0.010098041051706573,0.8749026699711601,0.08405206988062329,0.9626959001385353,0.48829110990902336,0.8015615141706083,0.02915578159137823,0.8062188626360951,0.013054262827494433 +26163,0.4851021377488972,0.009875611158666484,0.08254521450580202,0.4041565107368148,0.028710234081684306,0.012802320758739766,0.02035779764750982,0.1701604839113898,0.8298395160886102,0.347812217262653,0.44591488604082846,0.9777227960954378,0.010098041051706573,0.9816968924980899,0.08405206988062329,0.9936109569764546,0.48829110990902336,0.9845045796965668,0.02915578159137823,0.9808248386305187,0.013054262827494433 +26165,0.5026849897069727,0.011666068243430774,0.09261664821978319,0.4116195853038409,0.033594913172122924,0.015023993296678901,0.02320751262183342,0.18424391043339425,0.8157560895666057,0.3627308245100901,0.44721036246480966,1.1564423685134366,0.010098041051706573,1.1011577899246625,0.08405206988062329,1.0292132378028571,0.48829110990902336,1.1516393931871431,0.02915578159137823,1.1525584966896583,0.013054262827494433 +27001,0.5560932835093693,0.01807563218761825,0.12724002469424395,0.43007285365579956,0.05149700085920819,0.023084321144639552,0.03250467632615042,0.22881057633219942,0.7711894236678005,0.40472328564030685,0.44826535059297223,1.79227079924717,0.010098041051706573,1.5123019469362302,0.08405206988062329,1.1385280102738151,0.48829110990902336,1.7651541276644807,0.02915578159137823,1.7722339631352308,0.013054262827494433 +27003,0.4791735809496326,0.007918207505563268,0.07457683157512421,0.4050571606748794,0.022227674869214856,0.010213970529150206,0.016524716345736046,0.15563635922357583,0.8443636407764241,0.2980506733760073,0.4595159227966066,0.7852885172598371,0.010098041051706573,0.8918380950778486,0.08405206988062329,0.9808859712591285,0.48829110990902336,0.7643111494265107,0.02915578159137823,0.7791781706171321,0.013054262827494433 +27005,0.5117020131366565,0.012960000353791988,0.0993345865425698,0.41433543100119696,0.037720222147651805,0.016780470047300024,0.025327241287070833,0.19412584666936072,0.8058741533306393,0.37972898927290366,0.44486668136827656,1.2846950916947626,0.010098041051706573,1.178992023995125,0.08405206988062329,1.0482250118502159,0.48829110990902336,1.2902635723804927,0.02915578159137823,1.2847114414659826,0.013054262827494433 +27007,0.48210226306373516,0.009921650477338843,0.08108760318987224,0.4026631401135786,0.028503457658145423,0.012773566278641773,0.020579970760326374,0.16819585677645377,0.8318041432235462,0.3515143688660103,0.4481409389639953,0.9826053049049783,0.010098041051706573,0.9667991663754348,0.08405206988062329,0.9876565205951475,0.48829110990902336,0.9771866627715327,0.02915578159137823,0.9778085725679876,0.013054262827494433 +27009,0.4757849203234146,0.009144402253680548,0.07770319192971083,0.4002568783294278,0.02726731445990059,0.012070727678764617,0.019219613449423,0.16331579377692787,0.8366842062230722,0.3509162723272193,0.4426812070736145,0.9058243076931305,0.010098041051706573,0.9243837684688924,0.08405206988062329,0.9745043125094174,0.48829110990902336,0.9329495420384796,0.02915578159137823,0.9196879577656594,0.013054262827494433 +27011,0.5414686308982933,0.01779376257033395,0.12257916017169607,0.4203887862366609,0.053031365176390455,0.023241941376800235,0.03286203771548908,0.2263827545620472,0.7736172454379528,0.43262953590242964,0.43826783073552744,1.765293191022659,0.010098041051706573,1.4526920485530634,0.08405206988062329,1.1082442665935885,0.48829110990902336,1.8041090547178236,0.02915578159137823,1.7735974717986691,0.013054262827494433 +27013,0.4674977515038955,0.009112345576609766,0.07565608629533215,0.393032906463866,0.02694708014295885,0.011942529673911458,0.019491742040033823,0.1618319789816181,0.838168021018382,0.3561786164535112,0.4431845532263349,0.9023099528242514,0.010098041051706573,0.9003037976878905,0.08405206988062329,0.9577842014508823,0.48829110990902336,0.9213701162063266,0.02915578159137823,0.9099059207187727,0.013054262827494433 +27015,0.5131203993660651,0.014040154845809517,0.10369824978983368,0.4117699265336898,0.042297257274405475,0.0185293340754696,0.027362301056741135,0.2020934071573606,0.7979065928426394,0.4078878607896446,0.4380741274844291,1.3906878601070392,0.010098041051706573,1.2274165176555425,0.08405206988062329,1.050719720355279,0.48829110990902336,1.4393729638067327,0.02915578159137823,1.4098847711269027,0.013054262827494433 +27017,0.5014784201310383,0.011429500665805718,0.09228599805297008,0.4108445358634829,0.03355455847021592,0.014907767846541539,0.02279161018099073,0.1840278551345348,0.8159721448654652,0.363593168824553,0.44428442888837716,1.1313019542296447,0.010098041051706573,1.0942478635934565,0.08405206988062329,1.026612801827466,0.48829110990902336,1.1475384441873229,0.02915578159137823,1.138828053700237,0.013054262827494433 +27019,0.4727065988621376,0.007271626969661707,0.07050794923198972,0.4025115910216709,0.020628346526013037,0.00942195612643522,0.015382960566163872,0.1491579542187711,0.8508420457812289,0.29256767145702034,0.45674800520506176,0.7207975122255879,0.010098041051706573,0.8423590525127722,0.08405206988062329,0.9677949853671702,0.48829110990902336,0.7087759002759986,0.02915578159137823,0.7191432390511617,0.013054262827494433 +27021,0.5278721965678708,0.014477300961471646,0.10807926366660447,0.4206354072780354,0.040830038656285775,0.0184690703289259,0.0274257690698628,0.20474513408608416,0.7952548659139158,0.37777865310255526,0.4523402606693979,1.4349121144111878,0.010098041051706573,1.287062683179312,0.08405206988062329,1.0814773171030687,0.48829110990902336,1.3988334152745643,0.02915578159137823,1.4108651745087144,0.013054262827494433 +27023,0.5137105671554676,0.014063293913314148,0.10385756329638263,0.4119739482580065,0.042158930572458585,0.018526071797490076,0.027375909339739317,0.2021713586143762,0.7978286413856238,0.4059302879285536,0.43943410200240496,1.3929707464109782,0.010098041051706573,1.2297106272856704,0.08405206988062329,1.0519917604858997,0.48829110990902336,1.4358950614502812,0.02915578159137823,1.408331182421711,0.013054262827494433 +27025,0.48547986797491144,0.008901144618168924,0.07936106694811383,0.4069467547104351,0.025398361048434775,0.011542431753989502,0.018334734775508583,0.1634693262959671,0.8365306737040329,0.32003552907170707,0.4544557710624728,0.8824582210492142,0.010098041051706573,0.946387623988266,0.08405206988062329,0.9936949475286849,0.48829110990902336,0.8720749500574254,0.02915578159137823,0.8806523072874459,0.013054262827494433 +27027,0.472951654259952,0.009418001183392793,0.0776928422351742,0.3974073253320449,0.027797315473244506,0.012322068569485261,0.01991324292570569,0.16427227082384047,0.8357277291761596,0.35778476721321073,0.44328268250743524,0.9326196234072117,0.010098041051706573,0.924580924158283,0.08405206988062329,0.9691880833569001,0.48829110990902336,0.9503032690443436,0.02915578159137823,0.9391438927093602,0.013054262827494433 +27029,0.5125009957755358,0.013552823552626431,0.10147656260799591,0.41295395860733924,0.04016779143560454,0.017702530291489375,0.026444482380210382,0.1980026642766572,0.8019973357233428,0.39583318948999846,0.44071455409415256,1.3431598734840466,0.010098041051706573,1.2029438389689942,0.08405206988062329,1.0493573464691655,0.48829110990902336,1.3680643441471307,0.02915578159137823,1.3504514523616085,0.013054262827494433 +27031,0.5455196009630037,0.015358537819956625,0.11721200417840638,0.4289619637073883,0.04354189583529096,0.019730091274489492,0.02815396145774461,0.2148630479482176,0.7851369520517824,0.37147983383183675,0.4531288979497796,1.5231933957014054,0.010098041051706573,1.395140203479897,0.08405206988062329,1.116690967211254,0.48829110990902336,1.4927736144149617,0.02915578159137823,1.506194493795764,0.013054262827494433 +27033,0.5187920913280741,0.01528751521344094,0.10886103544363517,0.4123794691797055,0.04670745632114337,0.02036730766183882,0.02946751785345434,0.20983557240619835,0.7901644275938017,0.4290557785969896,0.43606116166550946,1.5141168008086092,0.010098041051706573,1.2881533736471353,0.08405206988062329,1.061803734729633,0.48829110990902336,1.5892827596795305,0.02915578159137823,1.5439736563380113,0.013054262827494433 +27035,0.5121317552443554,0.013121669636469959,0.10001219501139513,0.41398670193197507,0.03804043393860867,0.016949559715109988,0.025621667670674253,0.19528606454734668,0.8047139354526534,0.3803579546901699,0.4455669391801349,1.301001109592287,0.010098041051706573,1.1871111141225184,0.08405206988062329,1.0489530853104068,0.48829110990902336,1.3024904678104168,0.02915578159137823,1.2985865623160047,0.013054262827494433 +27037,0.47865486467399077,0.008170872040923626,0.07507433538157615,0.4043531035750466,0.02320340068597337,0.010578955118448821,0.017070487827359204,0.15684440067836536,0.8431555993216346,0.3090723423396123,0.45592261503478143,0.8093310099873426,0.010098041051706573,0.8981086072338273,0.08405206988062329,0.9798470910534014,0.48829110990902336,0.7967343827432427,0.02915578159137823,0.806147236978662,0.013054262827494433 +27039,0.48196619135593877,0.0094543522456482,0.08006969832159219,0.4031585416549537,0.027707760734455463,0.01230666321703612,0.019616214612584785,0.16613135891612696,0.833868641083873,0.34604552427773516,0.4441594300954246,0.9363613112711009,0.010098041051706573,0.9514243646359808,0.08405206988062329,0.9866227826678254,0.48829110990902336,0.9498884332346932,0.02915578159137823,0.9429172044326574,0.013054262827494433 +27041,0.5157471168264713,0.013900700448474308,0.10349533496276675,0.4140423715783686,0.04102683562390579,0.018111119421027225,0.02695255095948767,0.20067070001205428,0.7993292999879458,0.39641241451767384,0.4414456817253075,1.3777617634248274,0.010098041051706573,1.2294072906706033,0.08405206988062329,1.0559627351935839,0.48829110990902336,1.3986588339406958,0.02915578159137823,1.3835401125295728,0.013054262827494433 +27043,0.5249921552228878,0.015666507259213296,0.11209971534322573,0.4152181847826806,0.047573721674853325,0.020778775968879157,0.02984141211131433,0.2135264579251347,0.7864735420748653,0.42438753327064754,0.43677003264309405,1.5519474956263717,0.010098041051706573,1.325837247934754,0.08405206988062329,1.0747871962217168,0.48829110990902336,1.6196063694068936,0.02915578159137823,1.5787148117735303,0.013054262827494433 +27045,0.5143274444684138,0.014113219325064635,0.10380987470096845,0.41271689891989827,0.04243070468661263,0.01860406313682746,0.027440144361052785,0.20183615674691782,0.7981638432530822,0.4087347644801347,0.4384575574276817,1.397684816441191,0.010098041051706573,1.2285675153884488,0.08405206988062329,1.052765635801248,0.48829110990902336,1.44535053978916,0.02915578159137823,1.415842727500512,0.013054262827494433 +27047,0.5204256878469007,0.014686306636054351,0.10754902203825163,0.41475070768244127,0.04394427902578461,0.019312838726956133,0.02821979579219922,0.20665586759024568,0.7933441324097543,0.40859766265615216,0.43948471007168394,1.4549741933655151,0.010098041051706573,1.274118249613998,0.08405206988062329,1.065457452315698,0.48829110990902336,1.498029596568887,0.02915578159137823,1.471008761395373,0.013054262827494433 +27049,0.5061055107250383,0.01220714800933029,0.09594460548538267,0.4118496924437556,0.036022362447225086,0.015954257895847247,0.02411976900200619,0.18957431494459334,0.8104256850554067,0.3754495864044504,0.44289871102210987,1.2085572789528132,0.010098041051706573,1.1376262503975478,0.08405206988062329,1.0360532677499723,0.48829110990902336,1.2306257125125337,0.02915578159137823,1.2181501060952145,0.013054262827494433 +27051,0.5282042356166408,0.015866727936696953,0.11336256557348995,0.4168461640460063,0.04779738552839042,0.02092003014229561,0.03003900170958243,0.2146188120607311,0.7853811879392689,0.4216328845998518,0.43768147380926614,1.572208347063012,0.010098041051706573,1.3424742223275823,0.08405206988062329,1.0814980425243934,0.48829110990902336,1.6266295594247664,0.02915578159137823,1.5923108273150293,0.013054262827494433 +27053,0.4828590119402564,0.009207201237686114,0.0800795250890369,0.40391600250203896,0.026820984118441922,0.011989606138851732,0.01906809443338154,0.16584452833810848,0.8341554716618915,0.3349293603904475,0.44702334880425815,0.9115380836912623,0.010098041051706573,0.9541083114799518,0.08405206988062329,0.9881657073922107,0.48829110990902336,0.9214403566203182,0.02915578159137823,0.9187423615888617,0.013054262827494433 +27055,0.5115763040791218,0.012854645405607563,0.09951833998566406,0.41365921841178865,0.03790092809639781,0.01678537101480347,0.02512752311455659,0.19453273967566778,0.8054672603243322,0.38084365255547425,0.4428749336193377,1.273519250094544,0.010098041051706573,1.181360418430235,0.08405206988062329,1.047715388823772,0.48829110990902336,1.29426598823094,0.02915578159137823,1.2814579186949846,0.013054262827494433 +27057,0.5296963376212194,0.014690573894397001,0.10929276563310265,0.42140619887554925,0.04192358108357048,0.018801136323040323,0.02773395406200087,0.20633098224525923,0.7936690177547407,0.3835897174046133,0.44846207878955124,1.4564803453479453,0.010098041051706573,1.3014744181584148,0.08405206988062329,1.0848793852167637,0.48829110990902336,1.4354451224039155,0.02915578159137823,1.441792576054711,0.013054262827494433 +27059,0.4837580896734434,0.009347174649713104,0.08048161148578967,0.40455940939544466,0.027215446352076504,0.012147009579768794,0.019322001738560756,0.16636747416486217,0.8336325258351378,0.3381573237618612,0.44632777367041027,0.9254638554686492,0.010098041051706573,0.9573268381309152,0.08405206988062329,0.9905833947249422,0.48829110990902336,0.934526752080377,0.02915578159137823,0.9320530894758653,0.013054262827494433 +27061,0.5208380069155507,0.013649070287981417,0.10435270443259095,0.41798627674433486,0.039433287248227214,0.01760405921808316,0.026205979799386058,0.20035539466594807,0.7996446053340519,0.377884669713568,0.4464263683437799,1.3535961023807188,0.010098041051706573,1.240330756856484,0.08405206988062329,1.0670155062152014,0.48829110990902336,1.3499560298967483,0.02915578159137823,1.3499141919708428,0.013054262827494433 +27063,0.5185404804374012,0.014573065413991965,0.10706987279491442,0.41351720870917275,0.04417424968759063,0.019295064234008983,0.028104007235267802,0.20648315191245714,0.7935168480875429,0.412574037256994,0.4367943852010536,1.443734704059168,0.010098041051706573,1.266842858196172,0.08405206988062329,1.0617034132276373,0.48829110990902336,1.5019469245417238,0.02915578159137823,1.467947775160132,0.013054262827494433 +27065,0.5077376876245436,0.011982205972568414,0.09501759844478593,0.4138768658571087,0.034188968775862486,0.015390333867161479,0.023599205386205024,0.18713914834513626,0.8128608516548638,0.35981722686592066,0.45015495986609283,1.1882516856349543,0.010098041051706573,1.130725067064676,0.08405206988062329,1.0395631822731146,0.48829110990902336,1.1721322391692488,0.02915578159137823,1.1781197537640562,0.013054262827494433 +27067,0.4993630079788807,0.011856150609962354,0.09289746960937909,0.4087151573499833,0.03503470690185144,0.015524671879650318,0.023742548848279487,0.18603194094286604,0.813968059057134,0.37713305915831186,0.44312264187458933,1.1730439293051451,0.010098041051706573,1.1013343163439924,0.08405206988062329,1.022432913906929,0.48829110990902336,1.1978911467888178,0.02915578159137823,1.1829541174747025,0.013054262827494433 +27069,0.5347729393209941,0.01667803690924282,0.11844384468760795,0.4186121653042551,0.05082075130514653,0.022219097053528515,0.03118713697521619,0.2214843646314586,0.7785156353685414,0.4290704294443052,0.437205206198485,1.6516134030039749,0.010098041051706573,1.399901440052158,0.08405206988062329,1.0947069625155148,0.48829110990902336,1.7323359584292168,0.02915578159137823,1.6849744832890627,0.013054262827494433 +27071,0.5248399238307064,0.014564466586215177,0.10838998030275414,0.41779373786037033,0.042375890160682855,0.018832504719951744,0.0277503023777458,0.2065200747527672,0.7934799252472328,0.39095763319006804,0.4444155544235598,1.444764456348405,0.010098041051706573,1.288687550367071,0.08405206988062329,1.075105088536073,0.48829110990902336,1.4488496825547639,0.02915578159137823,1.4415616616084046,0.013054262827494433 +27073,0.5373615917559154,0.017227975023071766,0.12041739719721689,0.4190755143565344,0.0522785210216864,0.022793974406229406,0.03206030220131027,0.22409007090315797,0.7759099290968421,0.43414425355885927,0.43601031476720453,1.707149912328478,0.010098041051706573,1.425613967241002,0.08405206988062329,1.0998561364150188,0.48829110990902336,1.776890860421483,0.02915578159137823,1.733297062310355,0.013054262827494433 +27075,0.5357943286185243,0.015559866279646771,0.11476004319469477,0.4227154535775359,0.04558163486778391,0.02022131708424164,0.029040744644994388,0.21418674492241932,0.7858132550775807,0.3971908130990587,0.4436286048733548,1.5429764073119867,0.010098041051706573,1.364942055056907,0.08405206988062329,1.0974762561881701,0.48829110990902336,1.556154010259339,0.02915578159137823,1.5453935197754012,0.013054262827494433 +27077,0.5324503870472614,0.013964320708819148,0.10913353644637634,0.42411035703741917,0.04054166986518393,0.018064108201020775,0.02622651996979325,0.20496470488374238,0.7950352951162576,0.37148681500946695,0.44556892355669186,1.38383231476854,0.010098041051706573,1.2956220579682403,0.08405206988062329,1.0901204419122892,0.48829110990902336,1.3879457582827568,0.02915578159137823,1.386016622791511,0.013054262827494433 +27079,0.4990246968614709,0.011138716887123848,0.08992340275862137,0.41084470117186034,0.03198073317325281,0.014318518878889894,0.022320973204690814,0.18019830145517646,0.8198016985448235,0.3556441614992897,0.4477232839322531,1.1034238948788677,0.010098041051706573,1.0692471420156453,0.08405206988062329,1.0217152142614423,0.48829110990902336,1.096633895199996,0.02915578159137823,1.0986774692225572,0.013054262827494433 +27081,0.5319910181486995,0.01698239900544349,0.1176597270222062,0.4165631416122394,0.05132171364936107,0.02240913373700891,0.031922341592422625,0.22116863444735552,0.7788313655526444,0.4361875974748352,0.43664040312667723,1.6819478440937223,0.010098041051706573,1.3922055911031967,0.08405206988062329,1.0892301377681988,0.48829110990902336,1.7459721743147765,0.02915578159137823,1.7050590650759947,0.013054262827494433 +27083,0.4857112310864231,0.01062585270721857,0.0849965205040615,0.40242384543647775,0.031550882214885986,0.013946846081598,0.021876893156147548,0.1749939368582111,0.8250060631417889,0.37120204483403935,0.4420429827162726,1.0517852860522687,0.010098041051706573,1.008037338966656,0.08405206988062329,0.9949789294439311,0.48829110990902336,1.078850887077949,0.02915578159137823,1.0629076279161942,0.013054262827494433 +27085,0.4965025718172899,0.011275818256525506,0.0900450073423116,0.40864491728853675,0.03341509984873779,0.014791826843743165,0.02271049315062751,0.18135859198620152,0.8186414080137985,0.3710933102788059,0.4426689404102411,1.116403057743521,0.010098041051706573,1.0666437129667696,0.08405206988062329,1.0164985863860934,0.48829110990902336,1.1408929555040919,0.02915578159137823,1.1267676840002634,0.013054262827494433 +27087,0.4967725732992781,0.01198158192779595,0.0913397752411032,0.4073909294089799,0.035142308152149505,0.015556759343280688,0.024118847480288946,0.18386638101712596,0.8161336189828741,0.3847426606797183,0.4426789292247768,1.187299958051648,0.010098041051706573,1.0824074509231978,0.08405206988062329,1.0163585243925954,0.48829110990902336,1.200456464021764,0.02915578159137823,1.1892596685489414,0.013054262827494433 +27089,0.5175779617900674,0.014171754349744964,0.10543269741587957,0.41388618727069865,0.042318760049230075,0.018616184605077274,0.027380907604201872,0.203703992826966,0.7962960071730341,0.40138174481397937,0.4399038294936046,1.4041534230788177,0.010098041051706573,1.2488845646869153,0.08405206988062329,1.059780749013498,0.48829110990902336,1.441736516792444,0.02915578159137823,1.4185271723003023,0.013054262827494433 +27091,0.5213774586165633,0.014741705799395457,0.10824819152005563,0.4151803599084296,0.044250083662420364,0.019439975545029936,0.02827453614606103,0.20761962323281916,0.7923803767671809,0.4087835837351791,0.43932065063053083,1.460469336499616,0.010098041051706573,1.2825577035134987,0.08405206988062329,1.0677489478758173,0.48829110990902336,1.506748441391383,0.02915578159137823,1.4780595064286577,0.013054262827494433 +27093,0.5053510714225242,0.012183115908809675,0.09507794190023933,0.4121052112610445,0.03580753213576057,0.0158847710414163,0.02410822218010767,0.18814235741620625,0.8118576425837938,0.37661240262574974,0.44361535392025414,1.2069359422087056,0.010098041051706573,1.1292686511229713,0.08405206988062329,1.034565737197728,0.48829110990902336,1.2223082642744294,0.02915578159137823,1.2113777043078886,0.013054262827494433 +27095,0.4988022402723168,0.011638489555266373,0.09160608823908373,0.40928773826443243,0.03413685970996863,0.01512151324035612,0.023332873462862638,0.18365211870153625,0.8163478812984637,0.3726483726810217,0.4429673194555837,1.1527583046495509,0.010098041051706573,1.0862571201232054,0.08405206988062329,1.0209816075573712,0.48829110990902336,1.166206991679182,0.02915578159137823,1.1576267899640413,0.013054262827494433 +27097,0.5028672132524818,0.01202671818334048,0.09399450943326448,0.4107737672465077,0.03533198164699636,0.015660894550731184,0.02391629015849568,0.18691715617194413,0.8130828438280558,0.375894101262179,0.4432498212865609,1.1914936622178756,0.010098041051706573,1.1157532757319242,0.08405206988062329,1.02945220234724,0.48829110990902336,1.2064792883908795,0.02915578159137823,1.1963803512748725,0.013054262827494433 +27099,0.5039307241900234,0.013178776293230172,0.09800082392896103,0.4085284325299313,0.039728148622958315,0.017382104669982357,0.02615196030052077,0.19447280990155832,0.8055271900984416,0.4053858634061741,0.437526169038179,1.3049472324990048,0.010098041051706573,1.160095096609599,0.08405206988062329,1.031496398660269,0.48829110990902336,1.3518845524345044,0.02915578159137823,1.3235609848388292,0.013054262827494433 +27101,0.5334690593518319,0.01648980055987517,0.11714076535501086,0.41894066670074126,0.050073315619502595,0.021898474462147002,0.030910509748982212,0.21958305416501117,0.7804169458349888,0.427462766422506,0.4373282294415904,1.6328590454778689,0.010098041051706573,1.385330746550745,0.08405206988062329,1.0924434379129007,0.48829110990902336,1.7067247196509592,0.02915578159137823,1.6623369551982012,0.013054262827494433 +27103,0.4792571839477677,0.00953809174680689,0.07982808863288504,0.40077760439937204,0.027557539599940752,0.012324332334757819,0.01990182320949081,0.16656628488136588,0.8334337151186342,0.3452110663287067,0.4472217953298093,0.9442315999620505,0.010098041051706573,0.9510118103019154,0.08405206988062329,0.9821066575912423,0.48829110990902336,0.9458740681869735,0.02915578159137823,0.9439867030198915,0.013054262827494433 +27105,0.4956156251941872,0.012053539046622999,0.0920629640151657,0.4059621969072613,0.03592222797920952,0.015814340164087278,0.024320337039213203,0.18575476505425853,0.8142452349457414,0.39019195572816867,0.44023828848366653,1.1934855623113707,0.010098041051706573,1.0907608262849107,0.08405206988062329,1.0146781315827504,0.48829110990902336,1.2255485089730274,0.02915578159137823,1.2051639107824301,0.013054262827494433 +27107,0.5240704520262598,0.015426129093476333,0.11045700275854609,0.4154283195769233,0.04632761031538992,0.020270078896662266,0.029435220081256118,0.21076746901390153,0.7892325309860985,0.4194175938003672,0.43753776114647974,1.5285837231588313,0.010098041051706573,1.3091743773999869,0.08405206988062329,1.0727212036735427,0.48829110990902336,1.576537396291589,0.02915578159137823,1.5446502956040233,0.013054262827494433 +27109,0.48517096978283863,0.009596012045477418,0.0815166753860665,0.40514595606711346,0.027688821120467635,0.012421880412626124,0.019778619585942188,0.16801639105190724,0.8319836089480928,0.3396706378091621,0.4486243873865704,0.9498145103811004,0.010098041051706573,0.9705050826755406,0.08405206988062329,0.9937528775809121,0.48829110990902336,0.9506504012506086,0.02915578159137823,0.9505520470827312,0.013054262827494433 +27111,0.5240950658293783,0.014820057404027445,0.10878414469908107,0.41679670334484586,0.043757000869711994,0.019305852188046247,0.028277422113438075,0.2075656723211668,0.7924343276788333,0.40223693435061425,0.44120601970711154,1.4692595919758191,0.010098041051706573,1.2925928903070845,0.08405206988062329,1.0731041236032486,0.48829110990902336,1.4911734288386729,0.02915578159137823,1.4743017057554295,0.013054262827494433 +27113,0.5009292053932005,0.011910320925709941,0.09345570655051952,0.40980748666001354,0.03533439699806412,0.01563364471086759,0.02377645543018604,0.18656469925158822,0.8134353007484117,0.378087099250203,0.4424483234204935,1.1786262643377357,0.010098041051706573,1.1070526158832916,0.08405206988062329,1.0254898850216847,0.48829110990902336,1.2080494156568191,0.02915578159137823,1.1907992966706646,0.013054262827494433 +27115,0.507041255863603,0.01175728170769261,0.09459079660546592,0.4134895030022834,0.033579727356749786,0.015137578507199746,0.02318801788163641,0.18655443814795097,0.8134455618520491,0.35499994250824807,0.45079515823278343,1.1656456003503308,0.010098041051706573,1.1250550164025204,0.08405206988062329,1.0381341589364315,0.48829110990902336,1.1521434366753467,0.02915578159137823,1.1584924884421857,0.013054262827494433 +27117,0.5141159513720184,0.014585948268866509,0.10532528327076297,0.41115007826691263,0.04423544486457941,0.019295531081938506,0.028370931168233682,0.20486678732624805,0.7951332126737519,0.4199888525422901,0.43620067891278275,1.4446986715183248,0.010098041051706573,1.2458525926112465,0.08405206988062329,1.0521137371581366,0.48829110990902336,1.5042764985228663,0.02915578159137823,1.4680542447122606,0.013054262827494433 +27119,0.5031653401457008,0.012536568358976381,0.09596237046598843,0.40913720831782774,0.03726401973250916,0.01643067022512338,0.02491540525296553,0.1907173702350022,0.8092826297649978,0.38831908331939863,0.44092586744712486,1.2418614765838774,0.010098041051706573,1.1381217466474058,0.08405206988062329,1.0302318639539312,0.48829110990902336,1.2704374186181884,0.02915578159137823,1.2525008335023036,0.013054262827494433 +27121,0.5263928495360087,0.015037199359403,0.11044930678665955,0.4178660323197013,0.04483637058307476,0.019719157092711895,0.02856649624450181,0.20982296185067023,0.7901770381493298,0.4059452420980722,0.4398027056221107,1.4893553198626428,0.010098041051706573,1.3093754404550246,0.08405206988062329,1.0779850129295658,0.48829110990902336,1.529187697710859,0.02915578159137823,1.5045207389325732,0.013054262827494433 +27123,0.48061426508693716,0.009557114785043098,0.08043814406548251,0.40134851786230424,0.027887806701924214,0.01243500142648557,0.019885208324630844,0.16736528627782665,0.8326347137221733,0.34669878359229056,0.4458938474221271,0.9464393687361574,0.010098041051706573,0.9583538373378648,0.08405206988062329,0.9845215684287514,0.48829110990902336,0.956734585355753,0.02915578159137823,0.9515618520131952,0.013054262827494433 +27125,0.5113099754374983,0.012815850862287623,0.09939899634297135,0.4133653845662867,0.037948890396031526,0.016791029746790254,0.02506473856943988,0.19440065932201184,0.8055993406779882,0.3817834363748578,0.442464313753589,1.268706409090059,0.010098041051706573,1.1776497371369428,0.08405206988062329,1.0467973072774748,0.48829110990902336,1.296475765064299,0.02915578159137823,1.2801923407624003,0.013054262827494433 +27127,0.5152139018386281,0.014509880490452981,0.10529108714483668,0.4122288704860122,0.04396498413871981,0.01919987742641111,0.02816282798013022,0.2043638317387935,0.7956361682612065,0.4175565599227056,0.4367083897001078,1.4370191173190854,0.010098041051706573,1.244998456731973,0.08405206988062329,1.0540241731043896,0.48829110990902336,1.4954017556561539,0.02915578159137823,1.4600517509233168,0.013054262827494433 +27129,0.5163667289212474,0.014215720768478015,0.10501407877573854,0.4131855196479645,0.042607089765672256,0.018717484231645272,0.02753028026839835,0.20337111764564242,0.7966288823543576,0.4057274059096521,0.4393044522539909,1.4084296531875466,0.010098041051706573,1.243105683132077,0.08405206988062329,1.0570765681982017,0.48829110990902336,1.4512632782650257,0.02915578159137823,1.4245796837130253,0.013054262827494433 +27131,0.478771319157661,0.009481473818979602,0.07931703212571631,0.4006556183769592,0.027298580000803915,0.012240636293622157,0.019803763173744583,0.1656678855894393,0.8343321144105607,0.3441704671644304,0.44839827907758145,0.9391649339311754,0.010098041051706573,0.9448511457576044,0.08405206988062329,0.980703416698111,0.48829110990902336,0.9370113088934264,0.02915578159137823,0.9369751598849487,0.013054262827494433 +27133,0.5088403833607305,0.013731793578284725,0.10112983126396712,0.41051731358045024,0.04170639139975886,0.018221090560593,0.026986446098461278,0.19874568640962895,0.801254313590371,0.41240443970382634,0.4368896456646775,1.3591491284225694,0.010098041051706573,1.1960836728139461,0.08405206988062329,1.0414697214406767,0.48829110990902336,1.420010061305645,0.02915578159137823,1.382671786964749,0.013054262827494433 +27135,0.49477538185896947,0.010563952801803623,0.08774374614821084,0.4086970629323097,0.031043939554949017,0.01380589327119311,0.021351007323995693,0.17734056577055257,0.8226594342294474,0.35380230406975877,0.4447210460114486,1.0458768452652136,0.010098041051706573,1.0404244506058262,0.08405206988062329,1.0128574534270136,0.48829110990902336,1.062970581296991,0.02915578159137823,1.0543674260744178,0.013054262827494433 +27137,0.5039255144150322,0.012146489616117355,0.09558049362069418,0.40997213575408575,0.035661543226126594,0.015856707438655415,0.02410374007400135,0.18967186793795532,0.8103281320620447,0.3731048237483207,0.44464445461906904,1.2036151166702138,0.010098041051706573,1.1349891997200507,0.08405206988062329,1.032005109344209,0.48829110990902336,1.2189871959993206,0.02915578159137823,1.209092543611924,0.013054262827494433 +27139,0.46548076628616286,0.006528704251546788,0.0658601348204047,0.3993491887805012,0.01852024660379118,0.008476461995938961,0.014025722917911387,0.14148841282072647,0.8585115871792736,0.2812057195797489,0.4576862380549398,0.6476903454087695,0.010098041051706573,0.7879901404701831,0.08405206988062329,0.9526342971435451,0.48829110990902336,0.6366813571671762,0.02915578159137823,0.6466532834434042,0.013054262827494433 +27141,0.465021343582097,0.0069647500282621145,0.06699322835103397,0.3985711739190183,0.01991826388182414,0.009026465302282629,0.01497726959070756,0.14406484621755147,0.8559351537824486,0.2973175703289827,0.4531753046267993,0.689670915591647,0.010098041051706573,0.802273407180385,0.08405206988062329,0.9518066299630086,0.48829110990902336,0.6841598282307413,0.02915578159137823,0.6900073021801282,0.013054262827494433 +27143,0.5016611927432526,0.011997810868228358,0.09368220979460481,0.410185422886489,0.035435268275698664,0.015661134368325585,0.023916163023534432,0.18674398408678752,0.8132560159132125,0.3782497056099481,0.44196460561485057,1.1887041718380877,0.010098041051706573,1.1113538134963,0.08405206988062329,1.0270263423075177,0.48829110990902336,1.2084195603279428,0.02915578159137823,1.196245075072793,0.013054262827494433 +27145,0.4755239996776556,0.009314648780980327,0.07804310063552759,0.3991288815805503,0.026974225229872233,0.012053295961233617,0.019588178067341432,0.1641202140973554,0.8358797859026446,0.3456324135024531,0.44684493654651336,0.9222123383503571,0.010098041051706573,0.9303499389384372,0.08405206988062329,0.9743599710447154,0.48829110990902336,0.9260555160993393,0.02915578159137823,0.9233300262281658,0.013054262827494433 +27147,0.49312863077797714,0.010774325701669514,0.0875103189542091,0.4075669881001586,0.031626002542388905,0.014028875140165105,0.021848915332033262,0.17745941625038023,0.8225405837496198,0.36139740913226037,0.4435867328272661,1.0666823709250082,0.010098041051706573,1.038162461253426,0.08405206988062329,1.0096970145932849,0.48829110990902336,1.0817181864957657,0.02915578159137823,1.072779719916833,0.013054262827494433 +27149,0.4900451517426797,0.012102830127977807,0.09163134785154234,0.40133408167341666,0.03717341842860263,0.016225606616685352,0.024697377547636557,0.18698552067230226,0.8130144793276978,0.40568450972509545,0.43648411425624384,1.1977669035440148,0.010098041051706573,1.0825371754200652,0.08405206988062329,1.0041031427387943,0.48829110990902336,1.266602981324399,0.02915578159137823,1.2267390726418803,0.013054262827494433 +27151,0.5193778058304774,0.014700538875281631,0.10807125296405252,0.41305645864179674,0.044659832301094174,0.01953565445975977,0.028304133735125026,0.20807830398383734,0.7919216960161627,0.41324432794305865,0.4374323290793267,1.4549711844340594,0.010098041051706573,1.277006902187288,0.08405206988062329,1.06313859797626,0.48829110990902336,1.5219172880742158,0.02915578159137823,1.4844350507010635,0.013054262827494433 +27153,0.5062666566993526,0.012372881076705717,0.09617514273936234,0.4118090200400189,0.036103326639752395,0.0160585993852445,0.024439454807021543,0.18996934020182993,0.8100306597981701,0.3753914536689958,0.44479555985189495,1.2257776030867698,0.010098041051706573,1.1420867730337578,0.08405206988062329,1.0367936207310464,0.48829110990902336,1.2346435896624917,0.02915578159137823,1.2279467718815653,0.013054262827494433 +27155,0.5368584517519739,0.018303549324060253,0.12309468416169494,0.4155666221961286,0.056250992746738206,0.024244519807564667,0.03409380864607568,0.2292870378774704,0.7707129621225296,0.4569733707821852,0.4310060787144156,1.8131823520650507,0.010098041051706573,1.4577917177543984,0.08405206988062329,1.0988762648189525,0.48829110990902336,1.9105342519241524,0.02915578159137823,1.8499749955338844,0.013054262827494433 +27157,0.5093706748239697,0.012364120389761653,0.09723998331947376,0.4133591777358813,0.03593419299317625,0.016008642500928726,0.024273325891865476,0.19090220172780525,0.8090977982721947,0.36954133234594966,0.44549887356503864,1.2262211909822474,0.010098041051706573,1.1562154726421405,0.08405206988062329,1.042993942234034,0.48829110990902336,1.2306367979322,0.02915578159137823,1.2267859012739004,0.013054262827494433 +27159,0.5196328338532847,0.014644223239651467,0.10668270281995582,0.41451887451440916,0.043681753431742534,0.01917232057054965,0.028181866667390337,0.20530400673271745,0.7946959932672826,0.40945488141093034,0.4389091340050823,1.4522551554619607,0.010098041051706573,1.2654098772756694,0.08405206988062329,1.0635076501988523,0.48829110990902336,1.4864334014260154,0.02915578159137823,1.4629446996823234,0.013054262827494433 +27161,0.5001908459216904,0.011311667774641218,0.09115268070861869,0.4105130901903454,0.032725887591949374,0.014622585353358027,0.022614703701339164,0.18223580349747046,0.8177641965025295,0.3590227663908415,0.44682013015760674,1.1212525540424534,0.010098041051706573,1.0833698858345624,0.08405206988062329,1.0240379076183113,0.48829110990902336,1.122579698190338,0.02915578159137823,1.1208075075679012,0.013054262827494433 +27163,0.48389273003435385,0.008601588196878167,0.07803121996739418,0.40658499440374063,0.024366660739974816,0.011138306047818767,0.017775816132363672,0.16125726865508885,0.8387427313449112,0.3122680992320327,0.45711253448634337,0.8526975506019059,0.010098041051706573,0.9321042634649973,0.08405206988062329,0.9907999600776805,0.48829110990902336,0.8369870837730593,0.02915578159137823,0.8480120088682775,0.013054262827494433 +27165,0.5113742168063743,0.013824981617916439,0.10234935373766674,0.41134336188474396,0.04140402372255754,0.018189028793012603,0.027034960237643544,0.20014570616574534,0.7998542938342547,0.4045362497225029,0.4393058248370905,1.368936040284726,0.010098041051706573,1.2122284741201208,0.08405206988062329,1.0472028041197468,0.48829110990902336,1.4115599184073346,0.02915578159137823,1.384884064543146,0.013054262827494433 +27167,0.5091773804165098,0.012971653678602136,0.09982818146159707,0.4110513400917104,0.03927342071469985,0.017203974845734875,0.02547570685090381,0.19605776945538522,0.8039422305446148,0.3934101587316599,0.43805643951191425,1.2843724163749477,0.010098041051706573,1.1826737892955081,0.08405206988062329,1.0425877100488425,0.48829110990902336,1.3357994532119721,0.02915578159137823,1.3062897217691138,0.013054262827494433 +27169,0.4797746789775215,0.010301549005518058,0.08263554041717659,0.3988937276922636,0.030295319317883027,0.013431508831016934,0.02147163961939873,0.17223822773074743,0.8277617722692525,0.3666136769353765,0.44335260804095394,1.0196970650467887,0.010098041051706573,0.9826711410838898,0.08405206988062329,0.9835484701021833,0.48829110990902336,1.0353534923830372,0.02915578159137823,1.024845299994019,0.013054262827494433 +27171,0.47195642027947154,0.0076708478001020364,0.0710256046128568,0.40140319468891084,0.021914555695442574,0.009937666309393516,0.01625329685219602,0.15049187077654036,0.8495081292234596,0.3085444441464942,0.4534733191720691,0.7601466174023697,0.010098041051706573,0.8489063433340234,0.08405206988062329,0.9659159311234118,0.48829110990902336,0.7521711460791276,0.02915578159137823,0.7588611727596253,0.013054262827494433 +27173,0.5149204321128307,0.014287863818925606,0.10482714668325308,0.4122418378439514,0.042930283994163564,0.018832223005973828,0.027747711933471718,0.20357931079395017,0.7964206892060498,0.4095340315222183,0.43866989113172644,1.4154011726311868,0.010098041051706573,1.241372665384654,0.08405206988062329,1.0544238260715098,0.48829110990902336,1.4614233999244983,0.02915578159137823,1.4322309926949717,0.013054262827494433 +28001,0.5013349594471372,0.012126623351495548,0.09396683408685741,0.4090642741808235,0.035120264958515446,0.015640007483929512,0.024188664929468633,0.18743323663381117,0.8125667633661888,0.37375171037530475,0.44532714950766206,1.2023237694305684,0.010098041051706573,1.1175247930189334,0.08405206988062329,1.0269259222384521,0.48829110990902336,1.2023824058985044,0.02915578159137823,1.1986314373365359,0.013054262827494433 +28003,0.503229615842292,0.011935640501504065,0.09370976811868534,0.41096582484088073,0.03408182819366347,0.01531957840847055,0.023718080426420284,0.186216719303844,0.813783280696156,0.3636955770768543,0.4494940330495176,1.1833218547591713,0.010098041051706573,1.1130187815684378,0.08405206988062329,1.0306093985365887,0.48829110990902336,1.168078895259118,0.02915578159137823,1.1728595353965854,0.013054262827494433 +28005,0.5131944331394331,0.012973639138234357,0.09952165745309205,0.41512174675296337,0.037130445526143925,0.016601824332339667,0.02528016342435551,0.1939258320560394,0.8060741679439606,0.3730890991606,0.4471216032312393,1.2857245931286219,0.010098041051706573,1.1826768912160064,0.08405206988062329,1.0509789054396514,0.48829110990902336,1.271873697520896,0.02915578159137823,1.275849598214386,0.013054262827494433 +28007,0.5021263173657894,0.012567645034914022,0.09535497039117334,0.40885118491605865,0.03747176454276964,0.01650147653178392,0.025028851506619466,0.18990235543003628,0.8100976445699637,0.39297127762768685,0.4403709495171868,1.2443085225680495,0.010098041051706573,1.1296418466484863,0.08405206988062329,1.027759098895907,0.48829110990902336,1.2783859133289324,0.02915578159137823,1.2568319621839408,0.013054262827494433 +28009,0.5018296705642049,0.011753675408084512,0.09258367005364034,0.41125830850088707,0.03417951854164689,0.015193267957233036,0.02342164303451788,0.1844922201382571,0.8155077798617429,0.36917437515540547,0.4445138084294668,1.1644690934974669,0.010098041051706573,1.0973324126675568,0.08405206988062329,1.0270331503876637,0.48829110990902336,1.1692205237112256,0.02915578159137823,1.1653918099677871,0.013054262827494433 +28011,0.4803088304304143,0.009537652316767307,0.07951879147832057,0.40234709381679057,0.027347752924182685,0.012294045113956962,0.019857332850242267,0.16555762967560309,0.8344423703243969,0.34391560052366466,0.44954498265507425,0.945334462405095,0.010098041051706573,0.9489243894686886,0.08405206988062329,0.9837443179511784,0.48829110990902336,0.940112409120979,0.02915578159137823,0.9427027270406672,0.013054262827494433 +28013,0.5015135507860697,0.012432802859161051,0.09491459529074911,0.40851212781000723,0.03661448319089121,0.01617972235913523,0.02479056216860729,0.18925629256075027,0.8107437074392497,0.38576241176323967,0.4418940525469536,1.2323155761553497,0.010098041051706573,1.1252730987966753,0.08405206988062329,1.0268698485706482,0.48829110990902336,1.2488756850876215,0.02915578159137823,1.2364642294509736,0.013054262827494433 +28015,0.511135540244189,0.01246969798790959,0.09760370934160165,0.4153374318281687,0.035210514052074156,0.016031189994452855,0.02439606915604487,0.19095465225324115,0.8090453477467588,0.3607497531558093,0.4552955395863782,1.2356200410871636,0.010098041051706573,1.1587375289415456,0.08405206988062329,1.047157899892524,0.48829110990902336,1.211423500920212,0.02915578159137823,1.2220556103473685,0.013054262827494433 +28017,0.49166173683851755,0.010693339501119253,0.08609839899591967,0.40775755959621873,0.030494673757606824,0.013705877520977728,0.02174938316306562,0.17511714364747896,0.824882856352521,0.35418398150530084,0.4494515215975652,1.059699999089617,0.010098041051706573,1.0243684073398747,0.08405206988062329,1.0065052194949144,0.48829110990902336,1.045875564130214,0.02915578159137823,1.0494172878386228,0.013054262827494433 +28019,0.5104587839707475,0.012787462441078364,0.0985193320985207,0.4136399283808813,0.03700576706171622,0.016497701665071272,0.025050920549564225,0.19300154134318215,0.8069984586568179,0.375619345700699,0.4458143412500354,1.2684193283510583,0.010098041051706573,1.1696261042165568,0.08405206988062329,1.045392236660843,0.48829110990902336,1.2669977844741176,0.02915578159137823,1.2658891348817904,0.013054262827494433 +28021,0.4783623218049538,0.009732205018233419,0.07992034797493959,0.400000196802043,0.02792092135300674,0.012524807159093262,0.020344840248939178,0.16707074184560486,0.8329292581543951,0.34935935666548684,0.4485814418779735,0.9636090727484372,0.010098041051706573,0.9524709086660688,0.08405206988062329,0.9803603637084253,0.48829110990902336,0.9578236313009931,0.02915578159137823,0.9588086528400928,0.013054262827494433 +28023,0.5028203781108411,0.012040884117955042,0.0938147547369524,0.41068195265523555,0.03493357014437289,0.015550069786392397,0.023946690790842936,0.1865770736846946,0.8134229263153054,0.3723675475390122,0.4451325679604839,1.1932998953002851,0.010098041051706573,1.1134190286510486,0.08405206988062329,1.0297528201287687,0.48829110990902336,1.1953401252445746,0.02915578159137823,1.191771600521367,0.013054262827494433 +28025,0.4935439623145357,0.01084424172122565,0.08769156498470308,0.40795141192936635,0.03159270734069255,0.01408469673577294,0.021972190016002285,0.17767731282429755,0.8223226871757024,0.3602707665920158,0.4458211378937867,1.0736077888821969,0.010098041051706573,1.0421876908275927,0.08405206988062329,1.0105830064011114,0.48829110990902336,1.0822655181215723,0.02915578159137823,1.076591617310228,0.013054262827494433 +28027,0.47646175180121464,0.009445675054055126,0.07778460718146632,0.400192014926373,0.027018736528605408,0.012127091005793341,0.019824623945881747,0.1632546723580846,0.8367453276419154,0.34735325545287504,0.4488400481996665,0.9353839822215088,0.010098041051706573,0.9272396396121063,0.08405206988062329,0.9755544091028756,0.48829110990902336,0.9272212080564399,0.02915578159137823,0.9287547445140782,0.013054262827494433 +28029,0.4886772769542068,0.010295734588933663,0.08436950247195898,0.4059957249693149,0.029420808378017672,0.013229331131767075,0.021068576491021212,0.17264871204532212,0.8273512879546778,0.34871378301414024,0.4496589951502361,1.0202696807343883,0.010098041051706573,1.0040344553655052,0.08405206988062329,1.0005761076395134,0.48829110990902336,1.0096923923991998,0.02915578159137823,1.0132108481243973,0.013054262827494433 +28031,0.4942983173026122,0.011245192629764656,0.08879580441424723,0.40758028495161797,0.032556962171097506,0.014506483427593763,0.022749809651648654,0.17964011064979196,0.820359889350208,0.3666497801992294,0.4455723894433835,1.1134656681149055,0.010098041051706573,1.054178755656873,0.08405206988062329,1.0118056508297375,0.48829110990902336,1.115098628852448,0.02915578159137823,1.1118559829760217,0.013054262827494433 +28033,0.47473364231956977,0.008029122364889136,0.07313820305725263,0.4026562213814189,0.022533783387201765,0.01031054939787351,0.016912899464336432,0.15406155481186484,0.8459384451881351,0.3080986740891392,0.4575596215116484,0.7972017894862857,0.010098041051706573,0.8747274590838879,0.08405206988062329,0.9717867851169015,0.48829110990902336,0.7737592579685142,0.02915578159137823,0.787589887422318,0.013054262827494433 +28035,0.47008161551489314,0.0088739564759396,0.07481582720889435,0.3970675751889403,0.025946665759617293,0.011544880990302018,0.01887748038437903,0.15915497381650748,0.8408450261834925,0.34680717606945966,0.44494661076145536,0.8782339612962394,0.010098041051706573,0.8928763951988689,0.08405206988062329,0.9630408485180328,0.48829110990902336,0.8897306376829246,0.02915578159137823,0.8834491947344183,0.013054262827494433 +28037,0.5029865867777095,0.012050325434273354,0.09447203794075501,0.4101798659647292,0.03535495834074954,0.015678539671069563,0.023957548274739362,0.1878221813944834,0.8121778186055166,0.3742372781554815,0.44346084416110704,1.1925559337383809,0.010098041051706573,1.1209396746480005,0.08405206988062329,1.0298959332145499,0.48829110990902336,1.2091397160901334,0.02915578159137823,1.198826428203049,0.013054262827494433 +28039,0.4838668039051425,0.009341342999953057,0.07968908530327043,0.4052229791961251,0.026198134801153114,0.01202970238455536,0.019305608329734353,0.16469219351301628,0.8353078064869837,0.32875436706860967,0.4591816354813882,0.9264579416492709,0.010098041051706573,0.9512846872917039,0.08405206988062329,0.9907858824608332,0.48829110990902336,0.9024940056989849,0.02915578159137823,0.9160157229716346,0.013054262827494433 +28041,0.48234271050022065,0.009035943935190346,0.07927426165845208,0.4039573717642998,0.02583335462581704,0.011694376226148499,0.018733451835147436,0.16435256495581646,0.8356474350441836,0.32587316596045185,0.4526851582202765,0.8949422546939984,0.010098041051706573,0.9454942344577031,0.08405206988062329,0.9870783862310717,0.48829110990902336,0.8868110110055272,0.02915578159137823,0.8933332447967339,0.013054262827494433 +28043,0.4955020138261438,0.011008272373363728,0.08889661018154361,0.4085560366641278,0.03169925776268812,0.014190181211380904,0.022216402892816876,0.17940716223352154,0.8205928377664784,0.35658567517875284,0.4476502673221445,1.0901492750974844,0.010098041051706573,1.0568993460565217,0.08405206988062329,1.0147332267553006,0.48829110990902336,1.0871270463867369,0.02915578159137823,1.0874537707422962,0.013054262827494433 +28045,0.504197204752291,0.011133196601998062,0.09149253104998555,0.41360018972062207,0.031383782439924034,0.01431449682106608,0.02208103594598017,0.18146179746263222,0.8185382025373678,0.3430201578178877,0.4561112685657761,1.1040532697814422,0.010098041051706573,1.0892826762712584,0.08405206988062329,1.032294679602217,0.48829110990902336,1.0776961901413937,0.02915578159137823,1.0911725480585446,0.013054262827494433 +28047,0.4832927424238005,0.0092473111240321,0.0798173756572486,0.4044479239318073,0.02636437616807272,0.01193018535623358,0.019133974736833752,0.1651532676798539,0.8348467323201461,0.33030873229015323,0.45251157395793207,0.9166433341990601,0.010098041051706573,0.9522075492752362,0.08405206988062329,0.9897731281382639,0.48829110990902336,0.9049714407172236,0.02915578159137823,0.9115165238596066,0.013054262827494433 +28049,0.47413331458711916,0.008678153527059463,0.07520930776060109,0.4004225906500015,0.024995978344953707,0.011214094834078151,0.01830319292078537,0.15862481172852033,0.8413751882714797,0.33235219269027794,0.44863596372662484,0.8593158552538966,0.010098041051706573,0.8977964910582783,0.08405206988062329,0.9714690166278286,0.48829110990902336,0.8585364894799925,0.02915578159137823,0.858752086676523,0.013054262827494433 +28051,0.47796516847488046,0.009656546481994113,0.07883289237589364,0.400554017624304,0.028113227861519506,0.012498397269491271,0.020203452299268572,0.1649343876405017,0.8350656123594983,0.35661799300054947,0.4445735413612423,0.9563962519881386,0.010098041051706573,0.9380564048490202,0.08405206988062329,0.9785413522318294,0.48829110990902336,0.9634693048779346,0.02915578159137823,0.9570517146279314,0.013054262827494433 +28053,0.4817313818084029,0.00940824233134259,0.07936031355842213,0.40414511193903224,0.02714554412745194,0.012150913130457155,0.019530059046650384,0.16473976277091656,0.8352602372290834,0.3420543960863813,0.44762090873577637,0.9317815365708134,0.010098041051706573,0.9461770585928009,0.08405206988062329,0.9862214544611714,0.48829110990902336,0.9328001466327835,0.02915578159137823,0.9321132131540313,0.013054262827494433 +28055,0.479043016451951,0.009074991600349518,0.07791162250573147,0.4024761396470833,0.0255052618720443,0.011597645727511,0.018944001454324004,0.16264013842177816,0.8373598615782218,0.327361452011451,0.4547158067105713,0.900655716057484,0.010098041051706573,0.9285366980033671,0.08405206988062329,0.9808630943504668,0.48829110990902336,0.8784784928851299,0.02915578159137823,0.8890297869243209,0.013054262827494433 +28057,0.4962358803627329,0.011336428297708295,0.08995525273026223,0.4084716355950169,0.032580433721446034,0.014556266032727312,0.022844838002084252,0.1812751884537405,0.8187248115462595,0.36218489451795527,0.44677938167365977,1.1237172355278395,0.010098041051706573,1.0687994630330597,0.08405206988062329,1.0164637005465036,0.48829110990902336,1.1165362372947754,0.02915578159137823,1.1184447464686107,0.013054262827494433 +28059,0.48802915822262816,0.009493243505798828,0.08180801259171187,0.4073964650758628,0.026626646796699197,0.01217801841075607,0.019452205561595194,0.16762935413460042,0.83237064586539955,0.32547724792665106,0.4573620743061696,0.9425555753108634,0.010098041051706573,0.976744769859138,0.08405206988062329,0.9995908272978749,0.48829110990902336,0.9146089423283119,0.02915578159137823,0.9301497059235098,0.013054262827494433 +28061,0.5007031440917409,0.011457833450740038,0.09123719826706382,0.4109345032417568,0.0327802617617134,0.014701613749597543,0.022883486125345135,0.18221814530956285,0.8177818546904372,0.35928615065273123,0.4484898216026052,1.1354794847776102,0.010098041051706573,1.0858967727746502,0.08405206988062329,1.0250598993537525,0.48829110990902336,1.123744028168542,0.02915578159137823,1.1271686847245843,0.013054262827494433 +28063,0.4988951920754771,0.0111662032201493,0.09085905285315823,0.40960301408374733,0.03245068971123189,0.014475600457052245,0.022381861756767502,0.18212052209838153,0.8178794779016185,0.35715417112785713,0.446079901101206,1.1055307173283677,0.010098041051706573,1.0778506759658248,0.08405206988062329,1.0212791680201034,0.48829110990902336,1.1111305045607573,0.02915578159137823,1.1088981067638448,0.013054262827494433 +28065,0.5037368829967085,0.012025586786789385,0.09435776878514693,0.41074190461149107,0.03441251585176503,0.015440408116671812,0.023872754195106184,0.18731558472315293,0.8126844152768471,0.36470251781941226,0.44868582649355665,1.1921470454614131,0.010098041051706573,1.1204658923982418,0.08405206988062329,1.0319849201930777,0.48829110990902336,1.1801466680291697,0.02915578159137823,1.184141333632075,0.013054262827494433 +28067,0.49206413907131386,0.010852270360815824,0.08690461972465804,0.40686368344382273,0.03119750046441482,0.0139676067585052,0.022054584959793275,0.17661238205384264,0.8233876179461573,0.3589855241672836,0.44771557177913146,1.0745722646202829,0.010098041051706573,1.0334399684573585,0.08405206988062329,1.0071372907149847,0.48829110990902336,1.0698677053395627,0.02915578159137823,1.0700476473665441,0.013054262827494433 +28069,0.4978363616711556,0.011354212236742416,0.09025827146396329,0.40956511953497965,0.032276328913125235,0.014604568180013464,0.022807117179283923,0.18130108287185165,0.8186989171281484,0.35759967911652235,0.45248541800782327,1.1251332982771924,0.010098041051706573,1.0713665816222595,0.08405206988062329,1.0194693030128044,0.48829110990902336,1.1096448611649006,0.02915578159137823,1.1159022629640711,0.013054262827494433 +28071,0.45808644734832105,0.007818148491262625,0.06855786187064354,0.3903132814786226,0.02245093861014333,0.010102631284636433,0.01706697182708363,0.1496614061985408,0.8503385938014592,0.32747431144372974,0.4499870343982887,0.7739339149958161,0.010098041051706573,0.8185086791475387,0.08405206988062329,0.9390279430511738,0.48829110990902336,0.7712960586057304,0.02915578159137823,0.7718581641899258,0.013054262827494433 +28073,0.47536534543108155,0.008503930984683383,0.07488677044287897,0.40153521336079273,0.024195383375032114,0.01099620690587787,0.017889253111144768,0.1575351909066246,0.8424648090933754,0.32309289387085416,0.4544754152242597,0.8435655805521571,0.010098041051706573,0.8946317149864533,0.08405206988062329,0.9731908299724402,0.48829110990902336,0.8308552713032148,0.02915578159137823,0.8383165355378536,0.013054262827494433 +28075,0.4901780751269487,0.010749694094320479,0.08636591290066191,0.4052867796451949,0.031447672230984096,0.013969728182045758,0.021930181376505816,0.17619293330958233,0.8238070666904177,0.36412134341884644,0.4442213744609676,1.0644955055370118,0.010098041051706573,1.0257778168351326,0.08405206988062329,1.0035052198278742,0.48829110990902336,1.0760568647831694,0.02915578159137823,1.0683480161345629,0.013054262827494433 +28077,0.4977839970359642,0.011301947663656352,0.08981791446584018,0.40968172220498045,0.031832552965219904,0.014459833830813788,0.022704521902980744,0.18043552022696094,0.819564479773039,0.35441206973611655,0.45424675320928654,1.120521956941425,0.010098041051706573,1.0685634003572693,0.08405206988062329,1.0193115135745496,0.48829110990902336,1.0924896686641339,0.02915578159137823,1.1040470351411982,0.013054262827494433 +28079,0.47953469540840954,0.010108738618263446,0.080567093995491,0.4008513994926568,0.029500967201817982,0.01308297214195062,0.021080307045674866,0.16801097974125462,0.8319890202587454,0.36616645504762807,0.44347604105482985,1.0009463701022503,0.010098041051706573,0.9567098833592431,0.08405206988062329,0.9817899776150587,0.48829110990902336,1.0090969059704076,0.02915578159137823,1.0014311989005837,0.013054262827494433 +28081,0.4850967948226114,0.009800501377402775,0.081776872800305,0.4048573307282656,0.028220495122648556,0.01266310043160138,0.02020318724428305,0.16857846449018263,0.8314215355098173,0.34509139511315845,0.4487199950449671,0.9704956293432419,0.010098041051706573,0.9732177253575233,0.08405206988062329,0.9932630198999917,0.48829110990902336,0.9680911984858849,0.02915578159137823,0.9690139667626079,0.013054262827494433 +28083,0.47480701389023394,0.00907475806849999,0.07631774679563838,0.3996894042770026,0.026259590911749404,0.01173984827177179,0.01911251898776267,0.16073424478367446,0.8392657552163255,0.34408236634745826,0.44706897038974797,0.8980003249791745,0.010098041051706573,0.9104261645527214,0.08405206988062329,0.9724032767733055,0.48829110990902336,0.9012800667560608,0.02915578159137823,0.8984146242253966,0.013054262827494433 +28085,0.49346866784521765,0.010846958140353212,0.08749507808888055,0.40790703943871237,0.031270217773294987,0.013988159933803972,0.021981047323060214,0.1773062481776947,0.8226937518223053,0.35739402097029516,0.4473317082476468,1.0744250738222907,0.010098041051706573,1.040173662275628,0.08405206988062329,1.0102842824539973,0.48829110990902336,1.0722682588412338,0.02915578159137823,1.0718426482175283,0.013054262827494433 +28087,0.4863576672904738,0.009995230092198654,0.08273010963429563,0.4050966743414267,0.02870484996337193,0.012888919358911417,0.020551192598407358,0.1701013784673937,0.8298986215326063,0.34696980446732517,0.4490153885269557,0.9901714992070935,0.010098041051706573,0.9850866991340965,0.08405206988062329,0.9962734670149005,0.48829110990902336,0.9848104625081472,0.02915578159137823,0.986800763718655,0.013054262827494433 +28089,0.4779849136045714,0.00858409614537498,0.07639973044713884,0.4027345853384893,0.024675908042759136,0.011105028220368556,0.017958926947381552,0.1598371167637793,0.8401628832362207,0.3229842291110236,0.4500352408967256,0.8503276015158897,0.010098041051706573,0.9108653625531377,0.08405206988062329,0.9786641160588748,0.48829110990902336,0.8476269528055602,0.02915578159137823,0.8507112336363039,0.013054262827494433 +28091,0.49581135020030853,0.011231361615512667,0.08882536940949318,0.40891823908147584,0.0320727315567317,0.014381605039254036,0.022652489925805815,0.17915154498501817,0.8208484550149818,0.36107625298886675,0.44840599291691763,1.1124328133174153,0.010098041051706573,1.0557442861756592,0.08405206988062329,1.0148833981431449,0.48829110990902336,1.0999835365550612,0.02915578159137823,1.1023379950306071,0.013054262827494433 +28093,0.49007430743975056,0.009792999168030753,0.08355211518814751,0.40787260529258407,0.02741762514640341,0.012534105498741444,0.01998268225729156,0.17048866655475375,0.8295113334452462,0.328149982614597,0.45715503920607226,0.9723342029402289,0.010098041051706573,0.9976799622275503,0.08405206988062329,1.0036608417549733,0.48829110990902336,0.9419333757409771,0.02915578159137823,0.9584561985052835,0.013054262827494433 +28095,0.4995363688589518,0.011634636482849733,0.09158970945305693,0.4099346085158791,0.03339132700100951,0.014950909692608268,0.023290869710699418,0.18334943191877595,0.816650568081224,0.3645750947394782,0.44774829380564185,1.153244841026811,0.010098041051706573,1.0883256422470429,0.08405206988062329,1.0227518804303328,0.48829110990902336,1.1449642830969318,0.02915578159137823,1.1464155954151467,0.013054262827494433 +28097,0.5044264450759297,0.012704668163548732,0.09620270671791387,0.409708193523498,0.036889278821990903,0.01639740831984469,0.025186364211409136,0.19071701663744609,0.8092829833625539,0.3834536478288273,0.44450335825133186,1.2603797691886618,0.010098041051706573,1.1431383535979913,0.08405206988062329,1.0327044871563427,0.48829110990902336,1.2631324873626366,0.02915578159137823,1.2562123256213478,0.013054262827494433 +28099,0.4872484084149724,0.010465381973354594,0.08409652456735979,0.40494714779315655,0.030453784620872122,0.013539910151649575,0.021478534957966644,0.17259476504177254,0.8274052349582275,0.36212893193320006,0.4446051720734152,1.0362475755266536,0.010098041051706573,0.99945589668896,0.08405206988062329,0.9975862442561486,0.48829110990902336,1.04278661230131,0.02915578159137823,1.0369572327756993,0.013054262827494433 +28101,0.49305373690760523,0.011481565686100056,0.08913008495534672,0.40600027212275885,0.03292862607359859,0.014722366637180608,0.02328664165109374,0.18077154330958667,0.8192284566904133,0.3694445718311107,0.4470993294489338,1.1372730805958082,0.010098041051706573,1.0587132169501567,0.08405206988062329,1.0096945658480294,0.48829110990902336,1.1283299834818914,0.02915578159137823,1.1292262355416551,0.013054262827494433 +28103,0.4871518704847746,0.010182064841641435,0.08394236577512512,0.40497287279902017,0.02982142814131112,0.013278478473978927,0.020901212657787924,0.17231251866403055,0.8276874813359695,0.3552607538033934,0.4452663504597379,1.007704459458401,0.010098041051706573,0.9969970312242153,0.08405206988062329,0.9976389694113896,0.48829110990902336,1.021489556471133,0.02915578159137823,1.0140295279412483,0.013054262827494433 +28105,0.45057360941983604,0.0073400156878648945,0.06520217698498192,0.3855393986348381,0.020974828174439332,0.009465123115743913,0.01629038082660009,0.1447092675244274,0.8552907324755726,0.32168907764031385,0.4512610562063363,0.7265440009939453,0.010098041051706573,0.7777744355167775,0.08405206988062329,0.9237592101682672,0.48829110990902336,0.7218958887285783,0.02915578159137823,0.7237427785549542,0.013054262827494433 +28107,0.48700303846985327,0.009910386836106289,0.08229275786060258,0.40603882760962806,0.028158976028546986,0.012748127222895504,0.020349743334752864,0.1689779146330659,0.8310220853669341,0.3421804878169968,0.45271984357569384,0.9823918616252092,0.010098041051706573,0.9806749471358589,0.08405206988062329,0.9970619484513317,0.48829110990902336,0.9684858377934182,0.02915578159137823,0.9750017992124591,0.013054262827494433 +28109,0.496485113899361,0.010904696983490014,0.0886110126930118,0.4099877504589955,0.030747675778722672,0.013983831585153789,0.021963794438558792,0.17847667575985676,0.8215233242401432,0.3469960995169571,0.4547931260167174,1.0811652286573037,0.010098041051706573,1.0548862204599254,0.08405206988062329,1.0170591057327578,0.48829110990902336,1.0553070580756565,0.02915578159137823,1.0673247493136955,0.013054262827494433 +28111,0.49325706062889063,0.010685728782690637,0.0867687807271508,0.4082720786380475,0.030197796903505405,0.013719229200574251,0.021663610388195143,0.1759098605026003,0.8240901394973997,0.3480260601847574,0.45431225477848364,1.0595196661988038,0.010098041051706573,1.031900928947258,0.08405206988062329,1.0101443063517563,0.48829110990902336,1.0367598172714694,0.02915578159137823,1.0470186878495298,0.013054262827494433 +28113,0.4924509559477768,0.010823358618150185,0.08670133051723278,0.4075732344369684,0.03103779562162829,0.01390355514168777,0.02197855134085266,0.17606084315618067,0.8239391568438194,0.3579852285595457,0.44795562517330506,1.0719822464222548,0.010098041051706573,1.0316608573268782,0.08405206988062329,1.0080021984864964,0.48829110990902336,1.0644257220736026,0.02915578159137823,1.0653471039544309,0.013054262827494433 +28115,0.48569831469474717,0.009917124529107467,0.08245434512730536,0.4047302572236422,0.02855509213228937,0.012792737357724512,0.020418280708550954,0.16976452796449676,0.8302354720355032,0.34631397639750516,0.4480019640090326,0.9819081048650593,0.010098041051706573,0.9807668857282072,0.08405206988062329,0.9949329030353353,0.48829110990902336,0.9793380997170791,0.02915578159137823,0.9799372951627413,0.013054262827494433 +28117,0.49466474970029356,0.011219786470237483,0.08898577148676265,0.40769967806009455,0.03190987564159298,0.014394991737345297,0.022681596934156525,0.17989107075181152,0.8201089292481885,0.35859525751642024,0.4511140030449421,1.112138990188555,0.010098041051706573,1.057855468096399,0.08405206988062329,1.0133419705955287,0.48829110990902336,1.0942035262156553,0.02915578159137823,1.1001692435385033,0.013054262827494433 +28119,0.49125960452598266,0.010699385479162316,0.08604825191143592,0.407035303019464,0.030389809901709138,0.013738431614060536,0.02177949373526483,0.17515841139526228,0.8248415886047378,0.35317172896187904,0.45207362791986005,1.0608970834875933,0.010098041051706573,1.0245452839393572,0.08405206988062329,1.005689452234991,0.48829110990902336,1.0425338612625026,0.02915578159137823,1.0491139460615768,0.013054262827494433 +28121,0.48209877846096433,0.008886177521719024,0.07832115846234353,0.4049357543909066,0.025211653708835775,0.011512398070761702,0.018432275539230682,0.16245873659413393,0.8375412634058661,0.3219009295037104,0.45663002529370067,0.8815497681745081,0.010098041051706573,0.9352082598541069,0.08405206988062329,0.9869676599667707,0.48829110990902336,0.86670013727207,0.02915578159137823,0.8762757989754846,0.013054262827494433 +28123,0.4823772285828847,0.009717144969363984,0.08086539338165674,0.402947049501315,0.028086455935712698,0.01254326528297902,0.020144286242347632,0.1676393258015537,0.8323606741984463,0.34732355537002485,0.44659480397560286,0.9619534140394452,0.010098041051706573,0.9619820215247543,0.08405206988062329,0.9879838194603301,0.48829110990902336,0.9639042382955516,0.02915578159137823,0.9617401786204585,0.013054262827494433 +28125,0.49701925969342187,0.011608747214368345,0.0913755841915462,0.4078442998791568,0.03414305659317954,0.01513645434676697,0.023356735152535155,0.1838471697211688,0.8161528302788312,0.3736562331750143,0.4433245250160364,1.1486407171891622,0.010098041051706573,1.0828364700712656,0.08405206988062329,1.018066041060969,0.48829110990902336,1.1671714629923602,0.02915578159137823,1.1565052853279232,0.013054262827494433 +28127,0.49264469719667436,0.010583020530176412,0.08623978710266234,0.40817923746307216,0.029969204573537807,0.013589291114160231,0.021482055100557475,0.1750547353770329,0.8249452646229671,0.347510187355421,0.4534418349614556,1.049465098850368,0.010098041051706573,1.0268803343407402,0.08405206988062329,1.0086318703567498,0.48829110990902336,1.0287550936116028,0.02915578159137823,1.037371613135988,0.013054262827494433 +28129,0.4984962719537205,0.011430353558527997,0.09023049377325759,0.4099093667038522,0.03253549670890615,0.014650154730406567,0.022929667084028205,0.18100535319877864,0.8189946468012214,0.36058205323208575,0.45028219060188146,1.13293376597293,0.010098041051706573,1.0724835159295867,0.08405206988062329,1.0204286497443795,0.48829110990902336,1.1158751542904333,0.02915578159137823,1.1210748990826778,0.013054262827494433 +28131,0.48792076515018906,0.009864784086492183,0.08300892169445553,0.40610256239439646,0.02799592990283358,0.01273498391101884,0.020218004215204203,0.1701278724403217,0.8298721275596783,0.3372641076567982,0.4548869766147643,0.9781515538082102,0.010098041051706573,0.9899071024115862,0.08405206988062329,0.9993293194576228,0.48829110990902336,0.9621103686062783,0.02915578159137823,0.970985630222098,0.013054262827494433 +28133,0.4720917988305002,0.00850772754754622,0.07421170999164756,0.398946080020794,0.024460224812305052,0.010991722271221516,0.018021341545483686,0.1571976259182857,0.8428023740817143,0.32960060905560623,0.4493712692980638,0.8423119255177689,0.010098041051706573,0.8847950348191223,0.08405206988062329,0.9662678623959237,0.48829110990902336,0.839870231027139,0.02915578159137823,0.8410698960651307,0.013054262827494433 +28135,0.4804131607486791,0.008954035590011102,0.07849113081337172,0.4030298495768544,0.025932414591642024,0.011612664041463862,0.018638197954562844,0.1633825574034038,0.8366174425965962,0.3303865586202535,0.4478049662682242,0.8866607482192267,0.010098041051706573,0.9349558709539333,0.08405206988062329,0.9829785731509704,0.48829110990902336,0.8911158714019065,0.02915578159137823,0.8907535155914916,0.013054262827494433 +28137,0.48412420142564216,0.0094131801126478391,0.08013598677725126,0.40540076573411665,0.026596287732418296,0.012134669589994384,0.019443729697726408,0.16552774379233248,0.8344722562076675,0.3318894394642728,0.45625426044716,0.9339000805767141,0.010098041051706573,0.9566578455149937,0.08405206988062329,0.9914237489320366,0.48829110990902336,0.9139998648915554,0.02915578159137823,0.9241444747402355,0.013054262827494433 +28139,0.4936852206625194,0.010959788557610168,0.08810682406967935,0.40736658394424907,0.03137963679215451,0.014073524798541646,0.022199952720687623,0.17846761535911707,0.821532384640883,0.3561544423317075,0.4484922783446712,1.0857459362871975,0.010098041051706573,1.0474312500771248,0.08405206988062329,1.0108607137304984,0.48829110990902336,1.0763376094121682,0.02915578159137823,1.079110032475255,0.013054262827494433 +28141,0.5124172039661083,0.013065399806622639,0.1000513877834442,0.41390122295300485,0.03784702422569837,0.016877059606638392,0.02549758225425779,0.1952537639428314,0.8047462360571687,0.37827585467995906,0.4459283114570144,1.295694324435471,0.010098041051706573,1.1871074972869637,0.08405206988062329,1.0492794829904732,0.48829110990902336,1.2965568779276304,0.02915578159137823,1.2937966244114678,0.013054262827494433 +28143,0.4661391378301345,0.007548998992098129,0.06861072679130598,0.3979749325061325,0.021281330856803112,0.009701524043083637,0.01619473324475289,0.14718937163415866,0.8528106283658413,0.310174980678091,0.45587017599429414,0.747943156617501,0.010098041051706573,0.8222065200849074,0.08405206988062329,0.9542228353821249,0.48829110990902336,0.7307998046426458,0.02915578159137823,0.739842961379693,0.013054262827494433 +28145,0.49409108587740336,0.010830488040920266,0.0874098735236232,0.4082800879402458,0.030861567205240553,0.01390920312526582,0.021920023150564565,0.1769104442926781,0.8230895557073219,0.35306729046919366,0.4506965907714473,1.0736161897428065,0.010098041051706573,1.0396032214553976,0.08405206988062329,1.0115930689828834,0.48829110990902336,1.0590915081892636,0.02915578159137823,1.064483001464589,0.013054262827494433 +28147,0.4970249400250184,0.011818536305497422,0.09123730426447182,0.40807026871546204,0.03419099018978116,0.01523665501273807,0.023778557882633656,0.1835668533250651,0.8164331466749349,0.37474792208536645,0.4456336282794152,1.171365710710341,0.010098041051706573,1.0832932585156203,0.08405206988062329,1.0176521335094746,0.48829110990902336,1.1712178421958053,0.02915578159137823,1.1667400587188295,0.013054262827494433 +28149,0.48938074064924075,0.00990104918017035,0.08353336164265798,0.407493837255692,0.028250105928197,0.012765595046761809,0.02023179164557037,0.17069196783640853,0.8293080321635915,0.3381895014478924,0.4518777762889806,0.9811240007390254,0.010098041051706573,0.9961141083700584,0.08405206988062329,1.0024786055659336,0.48829110990902336,0.9703664465592707,0.02915578159137823,0.9766475308376948,0.013054262827494433 +28151,0.4818559804546202,0.009622569220191408,0.08013425940492458,0.40311173710631465,0.027519740502538685,0.012370754897245428,0.019969803448558907,0.16630334094706,0.83369665905294,0.34342041352724456,0.44952294866676634,0.9531268307858393,0.010098041051706573,0.9554440440915402,0.08405206988062329,0.9868223926514315,0.48829110990902336,0.9446646953419335,0.02915578159137823,0.9476178439051327,0.013054262827494433 +28153,0.4911329217614735,0.010272141172507427,0.0849263663030233,0.4077255995765864,0.02932941926062273,0.013229456101864094,0.02091519569827627,0.17291931072026392,0.8270806892797361,0.34535116168721125,0.4510643727482793,1.018306097746441,0.010098041051706573,1.0112740514731664,0.08405206988062329,1.0057389648016208,0.48829110990902336,1.007591140704032,0.02915578159137823,1.0129843815947908,0.013054262827494433 +28155,0.5001034151381804,0.011918764342786036,0.09275273706154016,0.4096153782671016,0.03508271109084377,0.015510455703361493,0.023832599382455404,0.18546711390865478,0.8145328860913452,0.3782390924762347,0.4421110917910094,1.1812655282827866,0.010098041051706573,1.099430408750873,0.08405206988062329,1.0236981622343446,0.48829110990902336,1.1968299776417273,0.02915578159137823,1.1858174222940794,0.013054262827494433 +28157,0.49206877332266125,0.010529013164251401,0.08684267823038441,0.40677083548659687,0.03098646211818465,0.013763723235627008,0.021397442258233434,0.176484838987008,0.823515161012992,0.3568114520372213,0.4441850503336313,1.0424673337782098,0.010098041051706573,1.030836161668288,0.08405206988062329,1.0077862280787655,0.48829110990902336,1.0605389016984952,0.02915578159137823,1.0519639415233728,0.013054262827494433 +28159,0.504342741779245,0.012447045027035614,0.09532053120775126,0.4109383613506313,0.036202537592653794,0.01609195380693737,0.024679734624759978,0.18899951027643389,0.8110004897235661,0.37979790013706805,0.44449795171824485,1.2342520657986955,0.010098041051706573,1.1313147115148514,0.08405206988062329,1.0323208213529682,0.48829110990902336,1.23893639456043,0.02915578159137823,1.2326053756124207,0.013054262827494433 +28161,0.5034603994811697,0.0120556798094348,0.09415166308050726,0.41058826637290624,0.03476629641863683,0.015523710724589638,0.0239456366813726,0.18700907395603156,0.8129909260439685,0.3692584419768437,0.4465160895386025,1.1952898337783915,0.010098041051706573,1.1202628931044978,0.08405206988062329,1.0308449642488822,0.48829110990902336,1.1909368027755227,0.02915578159137823,1.1901857754956655,0.013054262827494433 +28163,0.48014104427469223,0.00947224413759486,0.07959861537703378,0.40160659130077414,0.027307474556208716,0.012248355933935732,0.01972804502040388,0.16578173502595797,0.8342182649740421,0.34306469310881527,0.44853492067617456,0.938362666771368,0.010098041051706573,0.9477753687772053,0.08405206988062329,0.9831732409442118,0.48829110990902336,0.936942975349932,0.02915578159137823,0.9374077535143861,0.013054262827494433 +29001,0.4690594593503795,0.009540834452266316,0.07711851286776487,0.39345382282437014,0.028228482915253796,0.0124795475553676,0.020340351872404034,0.16441095330338204,0.8355890466966179,0.3660402913066695,0.44209062147736033,0.9446579831710671,0.010098041051706573,0.9170939320525064,0.08405206988062329,0.9611927604972434,0.48829110990902336,0.9638193903661317,0.02915578159137823,0.9508527519699645,0.013054262827494433 +29003,0.5051882403759846,0.011753290021077091,0.09372229344495517,0.4126488008917417,0.03368497683310093,0.015107720601280628,0.02326516945907083,0.1855195468825693,0.8144804531174307,0.35941263913782406,0.448500252089675,1.1653826775079927,0.010098041051706573,1.1155622979440272,0.08405206988062329,1.034340506383129,0.48829110990902336,1.1549540662962259,0.02915578159137823,1.158202317275811,0.013054262827494433 +29005,0.528969762221623,0.015634774945641715,0.11311365313550986,0.4180565579922898,0.04699120753290992,0.020628489334970808,0.02955702964943996,0.21383765427430715,0.7861623457256929,0.41543355934773474,0.4389861511969832,1.549087585907737,0.010098041051706573,1.338211764267932,0.08405206988062329,1.0829767459567137,0.48829110990902336,1.6029862805030315,0.02915578159137823,1.5704645200715008,0.013054262827494433 +29007,0.49903336012279764,0.012013169154600059,0.09307802055543775,0.4080012550901075,0.035699820950332015,0.01574200901301924,0.024072877916706745,0.1865166299353894,0.8134833700646106,0.38354727289316404,0.4409548449814518,1.1899008594957219,0.010098041051706573,1.1024577878972817,0.08405206988062329,1.0216481908165003,0.48829110990902336,1.2169495131132477,0.02915578159137823,1.2007351452679071,0.013054262827494433 +29009,0.5067846349265301,0.012331724962478103,0.09538782997304338,0.4128390512006013,0.03510552758583587,0.015782482164044823,0.024333265281939465,0.1882216298583559,0.8117783701416441,0.3680294183834217,0.44957256732448675,1.2220122666924338,0.010098041051706573,1.1351199835827583,0.08405206988062329,1.0379698682806802,0.48829110990902336,1.2032512426576871,0.02915578159137823,1.2083341087033732,0.013054262827494433 +29011,0.5035755753931119,0.012699855629208577,0.09611060713712695,0.40976235963045043,0.037794061275723115,0.01661728233309155,0.025219363785256153,0.19085637158255547,0.8091436284174445,0.39323506948405795,0.43967972142135475,1.2569837103179586,0.010098041051706573,1.1381070923271452,0.08405206988062329,1.0305629383048374,0.48829110990902336,1.288847041627736,0.02915578159137823,1.268418675477442,0.013054262827494433 +29013,0.5063960765669222,0.012678619995469981,0.09704046155158716,0.41122767990638887,0.037107819398807244,0.01645510096518532,0.025036963322116995,0.1916295683202492,0.8083704316797509,0.3823953308288889,0.4434402568455488,1.25718527693442,0.010098041051706573,1.1523660399134794,0.08405206988062329,1.0369665554978966,0.48829110990902336,1.2669983203768198,0.02915578159137823,1.2580878762935588,0.013054262827494433 +29015,0.550945861635586,0.01723789905039179,0.12347835476992389,0.42816455218891436,0.048365180149301704,0.021908129190745126,0.031287827445001325,0.224120668414416,0.775879331585584,0.3916895413728188,0.45297317456722913,1.7093240659924032,0.010098041051706573,1.4685421602474134,0.08405206988062329,1.1282939018520648,0.48829110990902336,1.6574914626236188,0.02915578159137823,1.6743030191617276,0.013054262827494433 +29017,0.5094121282239247,0.01245646175108174,0.09692705179906545,0.41378412326220987,0.035934966858483124,0.016047041492623444,0.024452621091907326,0.19027236775261616,0.8097276322473839,0.3707423901944122,0.44655784867755455,1.23554799240538,0.010098041051706573,1.1529452564517162,0.08405206988062329,1.0430308660770118,0.48829110990902336,1.2318012500442777,0.02915578159137823,1.2321977303632856,0.013054262827494433 +29019,0.4604916744645976,0.007668463097485051,0.06891175399500389,0.39228667554707153,0.02207354892210072,0.00992736980617618,0.01665277250973318,0.1496482082442118,0.8503517917557882,0.32031616730726453,0.4497405397387907,0.7591396337999525,0.010098041051706573,0.823447232061784,0.08405206988062329,0.9434406248586109,0.48829110990902336,0.7575615318741145,0.02915578159137823,0.7589413724971128,0.013054262827494433 +29021,0.49036717551562675,0.010852284086512613,0.0872356775296263,0.40475359498437363,0.03196126133864277,0.014159078667636644,0.02213093499804776,0.17789868874868506,0.8221013112513149,0.3663783241413851,0.44300750579319614,1.0744658209794076,0.010098041051706573,1.0353241366613428,0.08405206988062329,1.0043713932297553,0.48829110990902336,1.0918876832633977,0.02915578159137823,1.08134272595434,0.013054262827494433 +29023,0.5053243770877911,0.012204886110127168,0.09537217042532678,0.41157354340313757,0.03556865236675078,0.015816380208221674,0.02415257736122789,0.18873455299140965,0.8112654470085904,0.3729458206532046,0.44467189943374597,1.2096802644027538,0.010098041051706573,1.1320497240176068,0.08405206988062329,1.0345952926061504,0.48829110990902336,1.2168038532820593,0.02915578159137823,1.21117700879382,0.013054262827494433 +29025,0.5080391600662659,0.012581299511714529,0.0972185624176643,0.4129151258976734,0.037046678597880855,0.016411554725423723,0.024764428612301246,0.19136037152132845,0.8086396284786715,0.3810658960242925,0.44299665574777053,1.2455041371501752,0.010098041051706573,1.151885762802398,0.08405206988062329,1.040316309201157,0.48829110990902336,1.2663469730567198,0.02915578159137823,1.2533720666410102,0.013054262827494433 +29027,0.48693262397329784,0.009417883033416962,0.08180536805327195,0.40659459560186595,0.026977847731131162,0.012159923435770298,0.019341244701512165,0.16800141133644383,0.8319985886635561,0.3297808979181304,0.45073734409651667,0.9329408901676802,0.010098041051706573,0.9749691936165408,0.08405206988062329,0.9971106878013152,0.48829110990902336,0.9262979572663963,0.02915578159137823,0.9311211349870185,0.013054262827494433 +29029,0.5360330392067164,0.01499950614306887,0.11250708215367462,0.4244644040330473,0.04214671824053458,0.01913602340976961,0.027982428406403588,0.20988833509250773,0.7901116649074923,0.3746139125976614,0.4540335335377441,1.4871191665250607,0.010098041051706573,1.3395839564623626,0.08405206988062329,1.0978978294344501,0.48829110990902336,1.4460230098273559,0.02915578159137823,1.4622884566820331,0.013054262827494433 +29031,0.48909816751365653,0.010777113598530081,0.08673900962987068,0.40410298606039813,0.03166850877521861,0.014053108764075764,0.02203466362042578,0.17734478554849373,0.8226552144515062,0.3651011109113793,0.44375656788338164,1.066967097681562,0.010098041051706573,1.0305439097788467,0.08405206988062329,1.002344279230138,0.48829110990902336,1.0830042153390376,0.02915578159137823,1.0736917075996353,0.013054262827494433 +29033,0.5139765663191059,0.014069510455273729,0.10364227175612822,0.41226525248051754,0.04187288085099941,0.01839540169069325,0.027373836430002872,0.2016478542949392,0.7983521457050609,0.4040135375411966,0.43931540693728494,1.3942841911032489,0.010098041051706573,1.2290076621087747,0.08405206988062329,1.0522340546543654,0.48829110990902336,1.4267876622635924,0.02915578159137823,1.4055466919199375,0.013054262827494433 +29035,0.5066601388488841,0.012313502476135225,0.09538380047137,0.41282086269033397,0.03479845101041273,0.015674933480558175,0.02430327853324147,0.18825992644315578,0.8117400735568442,0.364825587137909,0.45044917303554033,1.2208844199344782,0.010098041051706573,1.1356521037783716,0.08405206988062329,1.0377049328962122,0.48829110990902336,1.1919146052111405,0.02915578159137823,1.2005185250897394,0.013054262827494433 +29037,0.4898996560576489,0.010114255030980176,0.08421678123590795,0.4073974544270774,0.02886534454280225,0.013032753413878988,0.020645564670063746,0.1719061856740674,0.8280938143259327,0.34275050790583744,0.45150174440335183,1.0025385193257499,0.010098041051706573,1.0019371277595543,0.08405206988062329,1.003244621427677,0.48829110990902336,0.9909181464333736,0.02915578159137823,0.9963101815701356,0.013054262827494433 +29039,0.52540316294143,0.015416805650987282,0.11041798867426549,0.4158202978463088,0.04467137620867473,0.019852290986304283,0.029342810889598493,0.21015859146355098,0.789841408536449,0.4045661105135312,0.4444074186021869,1.5289868446293062,0.010098041051706573,1.3111711216745288,0.08405206988062329,1.0756343921839386,0.48829110990902336,1.5285047029214227,0.02915578159137823,1.5217813395737043,0.013054262827494433 +29041,0.5242844054900022,0.015454826234451182,0.11094991017986455,0.4151720812917167,0.04644265073342601,0.02031969411825375,0.029477943788938227,0.2116216103665519,0.7883783896334481,0.41859115215268133,0.4375222731123985,1.5317092528170022,0.010098041051706573,1.3150473752718965,0.08405206988062329,1.07349494215544,0.48829110990902336,1.5797999372624565,0.02915578159137823,1.54799683438815,0.013054262827494433 +29043,0.48373195708412253,0.009188376455382806,0.0793187933922027,0.4054734728894079,0.0259518130458598,0.01183312673557798,0.018994768323286358,0.16397261382176764,0.8360273861782324,0.32718365895378015,0.45596531982823324,0.9122333676306988,0.010098041051706573,0.9464775537555865,0.08405206988062329,0.9902978728431846,0.48829110990902336,0.890683953803299,0.02915578159137823,0.9023025756164509,0.013054262827494433 +29045,0.5122361772849962,0.012865841847220824,0.09918926526334157,0.4147182786508318,0.03734552863381698,0.01664284334428597,0.02511701128845215,0.19363971086359838,0.8063602891364017,0.3765077655799429,0.44564487244171996,1.275578410794607,0.010098041051706573,1.1769655675839445,0.08405206988062329,1.0488925499487634,0.48829110990902336,1.2776697745313843,0.02915578159137823,1.2748569371856757,0.013054262827494433 +29047,0.4828881333816052,0.009066315682017866,0.0790734350631716,0.4052465854780244,0.026002255463718368,0.011712445735282597,0.018775188403425017,0.1637510421087183,0.8362489578912817,0.3288368014231988,0.45043960711890096,0.8980894611194381,0.010098041051706573,0.9424202474053553,0.08405206988062329,0.98873992920391,0.48829110990902336,0.8926535121033911,0.02915578159137823,0.896959189241876,0.013054262827494433 +29049,0.5035998874981997,0.011610330096719277,0.09283752229151748,0.4123331544205924,0.03340864127687588,0.014938999097432354,0.023054671744264003,0.18434778203132415,0.8156522179686758,0.35986140573603403,0.44715973252622304,1.1502361002619965,0.010098041051706573,1.1030182779066737,0.08405206988062329,1.0310290218130238,0.48829110990902336,1.1442820365342672,0.02915578159137823,1.1466494316784086,0.013054262827494433 +29051,0.48621986025839853,0.009733788266542032,0.08250923599209103,0.4051571834862863,0.028141347971921048,0.012612688967315308,0.020019314433945726,0.16969532249925376,0.8303046775007462,0.3410690649785989,0.44819064743806986,0.9641613678718284,0.010098041051706573,0.9825496864888471,0.08405206988062329,0.9956658297470888,0.48829110990902336,0.9666012359197613,0.02915578159137823,0.9662011777812264,0.013054262827494433 +29053,0.4952139711703004,0.011497858764575129,0.09069345412973201,0.40654024233266095,0.033631117367554024,0.014929189356636924,0.02321796119241777,0.18313993427003536,0.8168600657299646,0.370821882243525,0.44391000136795983,1.1401060812684651,0.010098041051706573,1.076777893019128,0.08405206988062329,1.014567391405011,0.48829110990902336,1.1503429470076632,0.02915578159137823,1.1429092645023156,0.013054262827494433 +29055,0.5035355554757928,0.011994029728212563,0.0937728520058626,0.4110526346463271,0.034134273273348836,0.0153848766259827,0.023819628222438743,0.18622885908673573,0.8137711409132643,0.36401018571147636,0.45071639588691104,1.1889533094746891,0.010098041051706573,1.1140895631506262,0.08405206988062329,1.0309723907386625,0.48829110990902336,1.1701312841451899,0.02915578159137823,1.1760180706375583,0.013054262827494433 +29057,0.527004905110032,0.015315634993056278,0.11077639390699963,0.4170035686836396,0.04442014637713733,0.019776161690776867,0.029061655488497904,0.21019992951274508,0.789800070487255,0.4009892794888185,0.4452070356291192,1.5194052731274499,0.010098041051706573,1.3161177938714643,0.08405206988062329,1.0791161125342268,0.48829110990902336,1.5201888897498974,0.02915578159137823,1.5146727022381699,0.013054262827494433 +29059,0.5078710882818973,0.012291526623666563,0.09612864786048712,0.41386428427533417,0.03560210769178827,0.015877490697347986,0.02420206014334895,0.18927765348030653,0.8107223465196934,0.37035897710179094,0.44597052609360466,1.2177452717716482,0.010098041051706573,1.1397159293679286,0.08405206988062329,1.0399993176607254,0.48829110990902336,1.2184899557898028,0.02915578159137823,1.216971410819606,0.013054262827494433 +29061,0.5077318416587377,0.012963702994842886,0.09726921646142352,0.4119666770080848,0.03704651068207633,0.016553081197114017,0.025532578284810807,0.19157596290130088,0.8084240370986991,0.38086572535277685,0.4468189012230685,1.2848547788426226,0.010098041051706573,1.155914107735701,0.08405206988062329,1.0395540711194349,0.48829110990902336,1.268715280794937,0.02915578159137823,1.2711378712428973,0.013054262827494433 +29063,0.4961468590533099,0.010276026431565253,0.08826386358604142,0.4089952618511479,0.030231837806222156,0.01343966100045833,0.020711662774954936,0.17789866442862567,0.8221013355713743,0.3425165926115566,0.4445532251993046,1.0185396686519672,0.010098041051706573,1.0487846141708528,0.08405206988062329,1.0155497030166565,0.48829110990902336,1.0371339007005487,0.02915578159137823,1.0315557534707134,0.013054262827494433 +29065,0.5132590119979926,0.01341247646997812,0.10155957237476762,0.4134454702275653,0.03925107009558281,0.017410881481047004,0.026131984351851142,0.19787197107250173,0.8021280289274982,0.3864832154938721,0.4435772435923057,1.3301616806105547,0.010098041051706573,1.2048712566344697,0.08405206988062329,1.0513026055502381,0.48829110990902336,1.3412789639573353,0.02915578159137823,1.3328833679984586,0.013054262827494433 +29067,0.5190771898902864,0.013680892369928532,0.10328387605753692,0.4169692332070984,0.03917341024702333,0.017496823459863604,0.026356181000402202,0.19897594821950718,0.8010240517804929,0.3792790486019404,0.4466505047564281,1.3558523860906218,0.010098041051706573,1.228228226292181,0.08405206988062329,1.0632472660625305,0.48829110990902336,1.3412722726904074,0.02915578159137823,1.3452141671589974,0.013054262827494433 +29069,0.5031090840324218,0.012290563757777812,0.09437143150007607,0.4107678032303852,0.03548531496935067,0.015842454245514608,0.024429222504330238,0.18757648091679954,0.8124235190832004,0.3760175553692016,0.4464509969602364,1.2183880129157405,0.010098041051706573,1.1203693185582897,0.08405206988062329,1.0298332655347275,0.48829110990902336,1.2165051795279584,0.02915578159137823,1.213611642051376,0.013054262827494433 +29071,0.493530609345224,0.010377474094139234,0.08634751666314806,0.40889926576085234,0.029766579235851902,0.01339303073757037,0.021027012099426246,0.1749587868069761,0.8250412131930239,0.34472999787561776,0.44993516491943214,1.0281203593539008,0.010098041051706573,1.0266691917330024,0.08405206988062329,1.010700176611861,0.48829110990902336,1.021771785860326,0.02915578159137823,1.0254363284459425,0.013054262827494433 +29073,0.5206323374285894,0.014059049716530065,0.10548328279099875,0.4165834155039254,0.04091375848275686,0.018184170211601847,0.027003796548573825,0.2026060911083284,0.7973939088916716,0.38786959791365316,0.44445122828951494,1.394324997470438,0.010098041051706573,1.253242988674533,0.08405206988062329,1.0664826368862852,0.48829110990902336,1.3996034242920115,0.02915578159137823,1.3936999821163898,0.013054262827494433 +29075,0.5145919362087537,0.014634231143138249,0.10542596345366853,0.4112271574775239,0.04410689830437543,0.01929482252273003,0.028438516256114835,0.2048729411315543,0.7951270588684457,0.41836846313250964,0.4374558915836521,1.4491363048666597,0.010098041051706573,1.2476661048912985,0.08405206988062329,1.0531918032643781,0.48829110990902336,1.5017982067171882,0.02915578159137823,1.4687843380420116,0.013054262827494433 +29077,0.4859479900671818,0.01051799656124086,0.08518697462157762,0.4024809855968495,0.030767530684775155,0.013671465593129591,0.02164428452474257,0.17530060081079996,0.8246993991892,0.3611764688375472,0.4443471831782298,1.0416052495495702,0.010098041051706573,1.0120244441220902,0.08405206988062329,0.9954813281294836,0.48829110990902336,1.0534436046336264,0.02915578159137823,1.0466559468708363,0.013054262827494433 +29079,0.515823300823719,0.014293465354237103,0.10454517306747377,0.4132401660123125,0.04239483602111491,0.018644343869266417,0.027710003273236878,0.20267632908502858,0.7973236709149714,0.40551691462362544,0.43977865275809847,1.4159493888723151,0.010098041051706573,1.24029086402131,0.08405206988062329,1.0561012001089796,0.48829110990902336,1.4487270651137651,0.02915578159137823,1.4275909335536285,0.013054262827494433 +29081,0.5196795173182555,0.014735785354662401,0.10653567826389927,0.41506629374518456,0.043310760926820346,0.019123357734819237,0.028355524633152128,0.20500265012110544,0.7949973498788946,0.4065376185012439,0.44153825344077546,1.461075805315553,0.010098041051706573,1.2643939230600738,0.08405206988062329,1.064127372788239,0.48829110990902336,1.4769548600737104,0.02915578159137823,1.4623338487958506,0.013054262827494433 +29083,0.5178308166991201,0.014025504796546392,0.10441675069894221,0.4151629356940138,0.041267999324296145,0.018237067814176732,0.027085110318368244,0.20164259702529913,0.7983574029747009,0.39522393723284294,0.4419179052239596,1.3901632113663362,0.010098041051706573,1.2400949044351466,0.08405206988062329,1.0602660418501109,0.48829110990902336,1.407754917478555,0.02915578159137823,1.3943224759616784,0.013054262827494433 +29085,0.5659857466386962,0.019393976170293984,0.13387206930419798,0.4322837638893595,0.05514559648674808,0.024774880131116908,0.03426583846938174,0.2365290470638951,0.7634709529361049,0.41192757214681236,0.4492630728379284,1.9228263386543278,0.010098041051706573,1.5908380472827606,0.08405206988062329,1.159016429855995,0.48829110990902336,1.8928903534814807,0.02915578159137823,1.9022412986423225,0.013054262827494433 +29087,0.5288620493835833,0.015645462724092694,0.11291778257038985,0.41835766827617304,0.04665659900106639,0.02049370736067041,0.02958325851198495,0.21351084408874016,0.7864891559112599,0.4131908893267714,0.4392456329747053,1.551556027335198,0.010098041051706573,1.3379179216145256,0.08405206988062329,1.0829808969757906,0.48829110990902336,1.5891896757607331,0.02915578159137823,1.5633956044638302,0.013054262827494433 +29089,0.49952826466114464,0.01217770307421161,0.09377269528339113,0.4078470804992803,0.03592295321502684,0.015891084924340763,0.024378406460087626,0.18772250124225084,0.8122774987577491,0.3830854291482592,0.44236577180111697,1.2065368135249437,0.010098041051706573,1.112962919105199,0.08405206988062329,1.0231995598500943,0.48829110990902336,1.2250815953749505,0.02915578159137823,1.2118829366180814,0.013054262827494433 +29091,0.5033407124609961,0.012524815546592863,0.09549731766132744,0.4098046624117616,0.03660212840111968,0.016234792719814685,0.024883374693366198,0.1897269886920334,0.8102730113079666,0.38327912550304083,0.44354777792971334,1.2419751316296797,0.010098041051706573,1.1330008111939678,0.08405206988062329,1.0306227606135727,0.48829110990902336,1.2503837934961948,0.02915578159137823,1.2419576837558846,0.013054262827494433 +29093,0.5106852311108308,0.012594995748931016,0.09803281727243857,0.4139706363294636,0.03626704115520711,0.016213135416666462,0.02466293321530891,0.1919632903015422,0.8080367096984578,0.3699479640008612,0.44704875005604444,1.24909701117122,0.010098041051706573,1.1663556006592777,0.08405206988062329,1.0457873384767362,0.48829110990902336,1.2432316873591511,0.02915578159137823,1.2441483718878563,0.013054262827494433 +29095,0.48640770433044345,0.00987471004113178,0.08271961429745553,0.4051390303290381,0.028663682116311567,0.012799349489534002,0.020301302699809516,0.17006230279868173,0.8299376972013183,0.3465161480714649,0.4465354254766281,0.9779191120179386,0.010098041051706573,0.9843392857429583,0.08405206988062329,0.9962418968054196,0.48829110990902336,0.9829801170450647,0.02915578159137823,0.9805269192324351,0.013054262827494433 +29097,0.4846826858395893,0.010163863754617895,0.08287497557822185,0.4032306948770771,0.029359965547964648,0.013120129828638229,0.020970139952516748,0.1709881083015418,0.8290118916984582,0.3542681653070671,0.4468714313442977,1.0066467634278053,0.010098041051706573,0.9857532551495234,0.08405206988062329,0.9929595221214891,0.48829110990902336,1.0068383096726448,0.02915578159137823,1.005150245413849,0.013054262827494433 +29099,0.4849105844641285,0.008822430643836535,0.07902169800357904,0.4068919956497843,0.024818496282698756,0.011352322791631366,0.018193932915665567,0.1629613799643194,0.8370386200356806,0.3140719183429174,0.4574138038953308,0.8758435518810166,0.010098041051706573,0.9437168337346908,0.08405206988062329,0.9929199847090107,0.48829110990902336,0.8518562808612096,0.02915578159137823,0.8658953560588762,0.013054262827494433 +29101,0.4661473450276479,0.008418008113325624,0.07238979923741026,0.39481423540470184,0.024047333546617533,0.010842686196962378,0.018058685098434574,0.15529381430482397,0.8447061856951761,0.33219229504631825,0.45088933356968786,0.8339484355424813,0.010098041051706573,0.8633520184468366,0.08405206988062329,0.9550973307396016,0.48829110990902336,0.8265840617080563,0.02915578159137823,0.8298423989239239,0.013054262827494433 +29103,0.5186178442938832,0.01417012293679998,0.10503689236894215,0.41512586454428413,0.041842836132447665,0.01846887699181223,0.027322860354126666,0.20253235310858544,0.7974676468914146,0.398363233990917,0.4413868346149285,1.4050687809945455,0.010098041051706573,1.2471115462443896,0.08405206988062329,1.061764510493582,0.48829110990902336,1.425682271459185,0.02915578159137823,1.4099188974000083,0.013054262827494433 +29105,0.4976441704075105,0.011274033293855476,0.09018674331167409,0.4094641930155034,0.032447481829171385,0.014502848107721554,0.022654808323431988,0.18122736821737914,0.8187726317826208,0.3597810569235985,0.4469637484990593,1.116850849244286,0.010098041051706573,1.0711838805152842,0.08405206988062329,1.018812522630774,0.48829110990902336,1.111357480963843,0.02915578159137823,1.113164653798524,0.013054262827494433 +29107,0.503187224085473,0.012168434049513604,0.09458551101656562,0.41025819923203244,0.03553203273534225,0.015768123232538084,0.02418271662526677,0.1879727991672917,0.8120272008327083,0.37566041937563993,0.4437720563297292,1.2065937481514406,0.010098041051706573,1.1232193669819202,0.08405206988062329,1.030166505525832,0.48829110990902336,1.2148221635917698,0.02915578159137823,1.2078583665553184,0.013054262827494433 +29109,0.49909525169101543,0.011838647443813983,0.09181723320798602,0.40924665930777926,0.03412981665348151,0.015247997900855424,0.023720216539233206,0.1839673547221585,0.8160326452778415,0.37171471477658286,0.44676471765634307,1.172859050978622,0.010098041051706573,1.0902677212748109,0.08405206988062329,1.0214831896051693,0.48829110990902336,1.170261439227746,0.02915578159137823,1.1681185879546834,0.013054262827494433 +29111,0.497973362217745,0.01177078500356631,0.09189003080324454,0.4079784849523144,0.03437368598638675,0.015258602830262959,0.02363737881710104,0.18452800445792616,0.8154719955420738,0.3740741589257695,0.44390359638200944,1.1658738510028053,0.010098041051706573,1.090159699672935,0.08405206988062329,1.0198813338584003,0.48829110990902336,1.1753990392951743,0.02915578159137823,1.1685853253017933,0.013054262827494433 +29113,0.47885112000654384,0.008554080468815286,0.07598472442851237,0.4039007694849278,0.024381906006209375,0.011070205675576213,0.01786375788094301,0.15868131294644144,0.8413186870535585,0.3208790475926284,0.4540336458009865,0.8478968654923829,0.010098041051706573,0.9066069337004456,0.08405206988062329,0.9801595058866418,0.48829110990902336,0.8370981359633276,0.02915578159137823,0.8444208161906122,0.013054262827494433 +29115,0.5136733329822296,0.013741143896992446,0.1023467872896149,0.41319987493503796,0.040580340574013524,0.017915569981121163,0.0267507441299621,0.19924489109726776,0.8007551089027323,0.39649843095887,0.4414839729707388,1.3622589645600423,0.010098041051706573,1.214337771335127,0.08405206988062329,1.0519126635360123,0.48829110990902336,1.3826687993810023,0.02915578159137823,1.366835356570813,0.013054262827494433 +29117,0.5096012018692884,0.013500232604182049,0.10158138687760682,0.4104925382696639,0.04119212738577332,0.01800175918712366,0.026491759742051844,0.19933506142644897,0.800664938573551,0.4055086138507324,0.43701940952292245,1.3359057679602824,0.010098041051706573,1.1998800715988693,0.08405206988062329,1.0434903950206929,0.48829110990902336,1.404108255108485,0.02915578159137823,1.3659688333743998,0.013054262827494433 +29119,0.48442107040690685,0.009399663836487814,0.08002383426392425,0.4059182432835209,0.026402845827006492,0.012088933901386378,0.019403912031721142,0.1651947843571407,0.8348052156428594,0.32993727518639065,0.45786480671795826,0.932885550253873,0.010098041051706573,0.9554277515894163,0.08405206988062329,0.9920830468610622,0.48829110990902336,0.9078521029626081,0.02915578159137823,0.9207170494951694,0.013054262827494433 +29121,0.5166301040403674,0.014353169659980715,0.10498423753183198,0.4134938613067741,0.04259311989199042,0.01872107468611594,0.027782294426379802,0.20320967886073657,0.7967903211392634,0.40570966550169857,0.43953283379075536,1.4228002985764405,0.010098041051706573,1.2456501542684346,0.08405206988062329,1.057749853824733,0.48829110990902336,1.4516536487138074,0.02915578159137823,1.4304308988442387,0.013054262827494433 +29123,0.5055375210835534,0.012557008058676959,0.09705679043323401,0.41081599514715716,0.03741789764216506,0.0165219801442793,0.024838923986814386,0.19198731327638252,0.8080126867236175,0.3855258089118976,0.44155287136338717,1.2431571727214252,0.010098041051706573,1.1478417144644601,0.08405206988062329,1.0354103905611898,0.48829110990902336,1.2785260476110374,0.02915578159137823,1.2586612324961899,0.013054262827494433 +29125,0.5087582486104458,0.013054784280226136,0.09875605257125379,0.41162893810187495,0.03767957318899616,0.016827958281524634,0.025660093602181834,0.19411194381807637,0.8058880561819236,0.3815419127026149,0.4466069240518633,1.2950821728408193,0.010098041051706573,1.1729714010567074,0.08405206988062329,1.0418976240777873,0.48829110990902336,1.291661148185002,0.02915578159137823,1.2893544625879234,0.013054262827494433 +29127,0.5005555606994252,0.012249422673909407,0.0941947492650041,0.40866535825498174,0.03640499706269476,0.016048494563506672,0.024471654368984165,0.18818040725266538,0.8118195927473346,0.3864864798384277,0.4408321894895034,1.2129058031375786,0.010098041051706573,1.1157418714194507,0.08405206988062329,1.0250417702696955,0.48829110990902336,1.2417233572381998,0.02915578159137823,1.2241640809023833,0.013054262827494433 +29129,0.5207628924082416,0.01480841302458242,0.10689486562797668,0.4153357161423846,0.04293559170389101,0.01903945217614164,0.02843599887868674,0.2052659035163715,0.7947340964836285,0.40166187077046894,0.44344217514105444,1.4688802657041888,0.010098041051706573,1.2699915536209843,0.08405206988062329,1.0664202699158825,0.48829110990902336,1.469112481596616,0.02915578159137823,1.4617249900749882,0.013054262827494433 +29131,0.5033929221938371,0.011736941095763329,0.09316348881859518,0.4117863470374855,0.034016897005775634,0.015164763980043024,0.023315665712208576,0.18507111385789712,0.8149288861421029,0.365131205766802,0.44580091998009813,1.1633426215017235,0.010098041051706573,1.1069307888564834,0.08405206988062329,1.0306994418189461,0.48829110990902336,1.165497318289059,0.02915578159137823,1.1627988444375301,0.013054262827494433 +29133,0.49642481927680726,0.011222618650895765,0.09018322280952593,0.4083801419279191,0.032902491654576274,0.014617260890292569,0.022606884698563017,0.18166541902740688,0.8183345809725932,0.36484049504494787,0.4442599984144214,1.1109614473689728,0.010098041051706573,1.0699854363369345,0.08405206988062329,1.0167413816253066,0.48829110990902336,1.1254527600017838,0.02915578159137823,1.11706420598151,0.013054262827494433 +29135,0.4912092807177729,0.010699712125553765,0.08651512790862556,0.40621251717738505,0.030891560593477065,0.013808579106934159,0.021782390002727463,0.1761268186590581,0.8238731813409419,0.35706542127642366,0.44700166782282674,1.0591925321161868,0.010098041051706573,1.0275333401569977,0.08405206988062329,1.0057863240263867,0.48829110990902336,1.0593833132437007,0.02915578159137823,1.0579222439568436,0.013054262827494433 +29137,0.5128042527828311,0.013031797367761928,0.09999298728982323,0.4138452713158628,0.037838640969142495,0.016859635889927536,0.025412810632989814,0.19499250785692981,0.8050074921430702,0.37841294669464803,0.4455666339516953,1.2926153556868174,0.010098041051706573,1.1896415352310283,0.08405206988062329,1.0502905002440748,0.48829110990902336,1.295019709141851,0.02915578159137823,1.2903456701042932,0.013054262827494433 +29139,0.5111410976742582,0.013100240287411226,0.0998682613673991,0.4131499849372913,0.03842436118927074,0.01701983213393122,0.025629401249515245,0.1953829614206516,0.8046170385793484,0.384750476909914,0.44294378897009945,1.2990596481356134,0.010098041051706573,1.1853108824937928,0.08405206988062329,1.0468736552479028,0.48829110990902336,1.3120457414025752,0.02915578159137823,1.3018386804368633,0.013054262827494433 +29141,0.5295450068000878,0.015134946008480834,0.11083954654509773,0.4202013565052638,0.043820923642830745,0.01951545631335839,0.028581038087655,0.20931090865132365,0.7906890913486764,0.39535459146795726,0.4453456178245386,1.5013188163875657,0.010098041051706573,1.3177351951771283,0.08405206988062329,1.0845358036053203,0.48829110990902336,1.5006329280835766,0.02915578159137823,1.496803768874639,0.013054262827494433 +29143,0.5050431893173883,0.012136793818737621,0.09485078006028709,0.4115725496894569,0.03488905365958974,0.015579597138251217,0.024031199856672847,0.1878072649360672,0.8121927350639329,0.3678309618267165,0.446546853642416,1.2037646148075143,0.010098041051706573,1.1259034137962574,0.08405206988062329,1.0342973906688258,0.48829110990902336,1.1954369322513831,0.02915578159137823,1.1981373370873127,0.013054262827494433 +29145,0.4967514964167861,0.011138152767773581,0.08921012695518674,0.4092323340703926,0.03194312803852546,0.014299503872168391,0.02242198130879592,0.17958703214521846,0.8204129678547816,0.35806616500581345,0.44765509047586927,1.1030494093060805,0.010098041051706573,1.0608959588746756,0.08405206988062329,1.0167374580457076,0.48829110990902336,1.0951506926140477,0.02915578159137823,1.0971117824894894,0.013054262827494433 +29147,0.467853090981432,0.009668586589900316,0.07781373608044334,0.39153313675899837,0.02905886114321419,0.01280618913387658,0.020665860237490747,0.16632087631869805,0.8336791236813019,0.3734412792257311,0.44069824590724116,0.956718931146729,0.010098041051706573,0.9239109133719622,0.08405206988062329,0.9592549091768883,0.48829110990902336,0.9923487727900999,0.02915578159137823,0.9716514381825403,0.013054262827494433 +29149,0.5236592510439998,0.013975127102297188,0.10534960335186916,0.419460547967188,0.03948486443302744,0.017844180029564956,0.026687444315049342,0.20117968534278274,0.7988203146572173,0.37479841572015643,0.4519245611145886,1.385084260238779,0.010098041051706573,1.2542285584215676,0.08405206988062329,1.0727782636319891,0.48829110990902336,1.3526321243841877,0.02915578159137823,1.363360762335847,0.013054262827494433 +29151,0.4976865850660971,0.01138462951440565,0.09038933664930446,0.40911982734977037,0.03340613865578847,0.014792741966340636,0.022875098216468246,0.18161899348221325,0.8183810065177868,0.36958052679818537,0.4428150801492712,1.1279559617299402,0.010098041051706573,1.0735974698261832,0.08405206988062329,1.0186476820230794,0.48829110990902336,1.1414877909929178,0.02915578159137823,1.1329014513543143,0.013054262827494433 +29153,0.539228145352704,0.01594621416159272,0.11600847372927717,0.42359534936997956,0.04478826465904482,0.020237425876923933,0.029572295695289515,0.21513801668011437,0.7848619833198857,0.38607752709138143,0.4518466172106327,1.5811882340883474,0.010098041051706573,1.38012987291842,0.08405206988062329,1.1043814190116974,0.48829110990902336,1.5345484200412538,0.02915578159137823,1.549562632804875,0.013054262827494433 +29155,0.490001102820137,0.010925327460721538,0.08628279229806546,0.4058888058393386,0.03147857141869512,0.014055209698586722,0.02229653647275945,0.17608693490989344,0.8239130650901065,0.3648302353260871,0.4465008755206514,1.0820502798184495,0.010098041051706573,1.0250410073049459,0.08405206988062329,1.0032346888415455,0.48829110990902336,1.078527233256954,0.02915578159137823,1.0758504301417045,0.013054262827494433 +29157,0.4988449678183178,0.011593354071223316,0.0915066624911921,0.4092694540366877,0.03378772979289557,0.015018533497403456,0.023240394950612555,0.1834370764355778,0.8165629235644222,0.36923792074864253,0.44449667348060035,1.14879903028242,0.010098041051706573,1.0872782298567176,0.08405206988062329,1.0210727050525916,0.48829110990902336,1.1563783980692424,0.02915578159137823,1.1499419989356077,0.013054262827494433 +29159,0.4919833591292706,0.011011961166799217,0.08750666814581859,0.4062432789702252,0.031926105583886415,0.01421547129396862,0.0223827919429807,0.17786509751201943,0.8221349024879806,0.36484197445028616,0.44526167642392883,1.0909225561598859,0.010098041051706573,1.0398193663019644,0.08405206988062329,1.0071810286178393,0.48829110990902336,1.0933754715827773,0.02915578159137823,1.0889744786881113,0.013054262827494433 +29161,0.4828375407864349,0.010647643616212295,0.08448139893874176,0.4000629192166415,0.0312804464357996,0.013844994470522357,0.022052228165336217,0.17496858011732136,0.8250314198826787,0.37026430467233784,0.4426085957225069,1.0541497106150417,0.010098041051706573,1.0029514140076872,0.08405206988062329,0.9896792281339599,0.48829110990902336,1.0684238821419787,0.02915578159137823,1.0586907518721689,0.013054262827494433 +29163,0.5015163816271666,0.01127367395353382,0.09186576270329985,0.4113538303368692,0.03280958294711974,0.014629375110891144,0.022479173894492655,0.183175995976925,0.816824004023075,0.3571470151843763,0.4458872620986916,1.1164396146193845,0.010098041051706573,1.090162045274985,0.08405206988062329,1.0271921974522793,0.48829110990902336,1.123632428088856,0.02915578159137823,1.120762909588671,0.013054262827494433 +29165,0.48909894518120445,0.0092602274229376,0.08175950216564987,0.40847467778311497,0.026497989664720053,0.011974131224224367,0.018933239407226306,0.1671635217601197,0.8328364782398803,0.32409675894348605,0.451888289479068,0.9168413379098739,0.010098041051706573,0.9744949730227462,0.08405206988062329,1.0013291634002397,0.48829110990902336,0.9102878249984354,0.02915578159137823,0.9161618370014131,0.013054262827494433 +29167,0.4954767163417756,0.011887982750973865,0.09135658936044883,0.4063989895340273,0.03485474529094487,0.015426900720255682,0.023993019972251603,0.1843811956189518,0.8156188043810482,0.38152415206116047,0.44260546423397706,1.17823581197829,0.010098041051706573,1.0840218642615351,0.08405206988062329,1.0145981389580623,0.48829110990902336,1.1899469888633574,0.02915578159137823,1.1806957960315354,0.013054262827494433 +29169,0.4438757247692172,0.006337905846310166,0.05933964227644967,0.3851128965902071,0.018210644516999743,0.008204474621643488,0.014278559273781893,0.13368526135846226,0.8663147386415377,0.30688834341401255,0.45053180923852326,0.6267471042713799,0.010098041051706573,0.7101605475224941,0.08405206988062329,0.909846513803832,0.48829110990902336,0.6250592375339591,0.02915578159137823,0.6257462206021207,0.013054262827494433 +29171,0.5115008416980994,0.013212741963162213,0.0994918884578432,0.4141692609030899,0.03778995454455908,0.016898373230616312,0.02583132008013528,0.19450972578568268,0.8054902742143173,0.37982950299080387,0.4471657464073162,1.3097851197571067,0.010098041051706573,1.1815382628636057,0.08405206988062329,1.047852853556357,0.48829110990902336,1.2947430901448551,0.02915578159137823,1.298853496044446,0.013054262827494433 +29173,0.5124333009953806,0.012230455800431049,0.09756095598434933,0.41547244147942,0.034743584501649584,0.01572988571288235,0.023867410210604758,0.19038761882735017,0.8096123811726499,0.35612181277952143,0.452742166316648,1.212687399152062,0.010098041051706573,1.1630236392282522,0.08405206988062329,1.0494509348299739,0.48829110990902336,1.1926378987582655,0.02915578159137823,1.201032196926624,0.013054262827494433 +29175,0.49378302510133465,0.010646029516392484,0.08760250758268168,0.4077669202084836,0.031271974259839574,0.013885737042347477,0.021560136690012166,0.17741093380985262,0.8225890661901474,0.35697578896727605,0.4440313530246143,1.0542874566835065,0.010098041051706573,1.0392221107014414,0.08405206988062329,1.011070935522757,0.48829110990902336,1.0700641519077743,0.02915578159137823,1.062813383632118,0.013054262827494433 +29177,0.4978048431775247,0.010684096624946283,0.0883247955861092,0.4109860226491874,0.03016331658865914,0.013766778002537079,0.021462420005295475,0.17742855819225375,0.8225714418077462,0.34150451624031736,0.4564079670109333,1.0591561137254646,0.010098041051706573,1.0506265480033925,0.08405206988062329,1.0191435456467857,0.48829110990902336,1.0375882784248582,0.02915578159137823,1.049331107190199,0.013054262827494433 +29179,0.5197823909300655,0.01420993118335424,0.10540706367759842,0.4156954939991605,0.04082365856189865,0.01821852895921143,0.027338231212350027,0.20279075535627464,0.7972092446437253,0.38729528304443867,0.44627379321203375,1.410131586769004,0.010098041051706573,1.2532421960325288,0.08405206988062329,1.064867600978964,0.48829110990902336,1.3982361825305527,0.02915578159137823,1.4000816055717893,0.013054262827494433 +29181,0.5103179875316745,0.013035096925874044,0.09925326281367619,0.4129847077103815,0.0375112109480084,0.016725650045481186,0.025543087338392084,0.1944929734766908,0.8055070265233092,0.377934285328499,0.4458840336736506,1.2918761702550206,0.010098041051706573,1.1786151118385497,0.08405206988062329,1.0454647843014637,0.48829110990902336,1.284199091233047,0.02915578159137823,1.285547230808516,0.013054262827494433 +29183,0.4821665598971976,0.008850929210721113,0.07835461751597114,0.40485819194187356,0.025162648437014767,0.011460662890009209,0.018356580374649403,0.16250529180762158,0.8374947081923785,0.32113804182485894,0.4554632998468611,0.8777355203961726,0.010098041051706573,0.9343008171137378,0.08405206988062329,0.9870052916950871,0.48829110990902336,0.863904599712824,0.02915578159137823,0.8729897518798575,0.013054262827494433 +29185,0.5368596620744124,0.015966196300017325,0.11605988770915121,0.4230026260467634,0.04697344501144799,0.02074923632982838,0.029739981279882977,0.21618291689246813,0.7838170831075318,0.4047345378203755,0.44172268661094677,1.5823242967707505,0.010098041051706573,1.378161941883311,0.08405206988062329,1.1000716641039288,0.48829110990902336,1.6033169637051965,0.02915578159137823,1.5879752716918916,0.013054262827494433 +29186,0.5083046733574315,0.011914096943731554,0.09530592330697266,0.4136918820558868,0.03406854390895012,0.015327526472442912,0.023438889249310042,0.1874976334123828,0.8125023665876172,0.3574651262673161,0.44990259969450086,1.1812514666554077,0.010098041051706573,1.135709277697959,0.08405206988062329,1.040370743269816,0.48829110990902336,1.1691911120147789,0.02915578159137823,1.1734104321071608,0.013054262827494433 +29187,0.4946916369544503,0.010823986293173505,0.08838972918532295,0.40765775853428865,0.03132298368541764,0.014005097154225366,0.021880269413509703,0.17867641694832534,0.8213235830516746,0.3543735677676315,0.4471188726744897,1.0727996292952513,0.010098041051706573,1.0501860463020853,0.08405206988062329,1.0128644745567716,0.48829110990902336,1.0739128043489816,0.02915578159137823,1.0732414650945206,0.013054262827494433 +29189,0.49864217080463424,0.011420689984829438,0.09142958430154885,0.4091607857952503,0.03353019304484363,0.014890951645196153,0.02290357826414969,0.18335710386069723,0.8166428961393027,0.3667324236568318,0.444105753440812,1.1308561900251901,0.010098041051706573,1.0850083366282197,0.08405206988062329,1.0209625344566398,0.48829110990902336,1.146395007261332,0.02915578159137823,1.1372416752036538,0.013054262827494433 +29195,0.4977403680833508,0.011894648166980493,0.09247046245491963,0.4075452440498255,0.0351995594949589,0.015569422433632839,0.02389729451276621,0.1857805160770779,0.8142194839229221,0.38065733165462506,0.44231867264880437,1.1767725834015623,0.010098041051706573,1.0953288685949956,0.08405206988062329,1.0194148928091469,0.48829110990902336,1.2033984884351554,0.02915578159137823,1.187403073415474,0.013054262827494433 +29197,0.5181498711201479,0.015306078884304387,0.10800800892779008,0.41165988787922936,0.04516079534708503,0.019859320994766505,0.029539868168287617,0.20844935982382082,0.7915506401761792,0.418124505723254,0.43974692744308264,1.5182179304682286,0.010098041051706573,1.2798033885629858,0.08405206988062329,1.0606031365852302,0.48829110990902336,1.5407399351848898,0.02915578159137823,1.5218303562695499,0.013054262827494433 +29199,0.5077593811039596,0.01313040348543823,0.0991457997940137,0.4110531519485421,0.04010623160366969,0.017509858286965767,0.02585949954659703,0.19526138459215273,0.8047386154078473,0.40451770712420293,0.4365869738149028,1.2995838104768254,0.010098041051706573,1.1702861721427396,0.08405206988062329,1.0389162717510252,0.48829110990902336,1.366401951222041,0.02915578159137823,1.328283497421468,0.013054262827494433 +29201,0.4972980117991854,0.011140325681220972,0.08936725876724319,0.4097958286781549,0.03190835393103095,0.014300906382569544,0.022401709672870283,0.17970564258626215,0.8202943574137378,0.3570474732153996,0.44818690470466044,1.1036556768926478,0.010098041051706573,1.0631367326258898,0.08405206988062329,1.0180539883203226,0.48829110990902336,1.094071744323448,0.02915578159137823,1.0965390074870363,0.013054262827494433 +29203,0.5100286279946854,0.012244438523587389,0.0965143764488791,0.4151903094223296,0.03444235766528719,0.015731697610299848,0.02400735537479472,0.18923325309865704,0.810766746901343,0.35686245855331533,0.45675437678167646,1.2139243259769912,0.010098041051706573,1.1471414409399578,0.08405206988062329,1.044716643832623,0.48829110990902336,1.1852660871500298,0.02915578159137823,1.197770912599077,0.013054262827494433 +29205,0.5142915706444336,0.013997525959854616,0.10329881615566965,0.41301022604081933,0.04159347557792516,0.018282804625974133,0.027217101657557793,0.20085652196521703,0.799143478034783,0.4026520063428845,0.43955943503017425,1.387176186178539,0.010098041051706573,1.2247145679553586,0.08405206988062329,1.0531604447225185,0.48829110990902336,1.4172398608338603,0.02915578159137823,1.3964046258529081,0.013054262827494433 +29207,0.5068055999778525,0.012758228920642649,0.0976253994836086,0.4110919461698766,0.037576340265420866,0.01662036266745681,0.0251738120518009,0.19262888864660307,0.8073711113533969,0.3849033188512583,0.44230924432924307,1.2648417648590886,0.010098041051706573,1.1575582211580744,0.08405206988062329,1.0375698112816183,0.48829110990902336,1.2818320184857608,0.02915578159137823,1.2693357782397374,0.013054262827494433 +29209,0.543420362364287,0.016389617520264424,0.11848932135906659,0.4255173822098648,0.046177771039074327,0.020853891713389215,0.030160109291741052,0.21804358019185918,0.7819564198081408,0.3897209513010759,0.45160022331401056,1.624990075701491,0.010098041051706573,1.4085094795238153,0.08405206988062329,1.1126546381785434,0.48829110990902336,1.58210566947796,0.02915578159137823,1.5961592089037313,0.013054262827494433 +29211,0.5099267932236989,0.013030819535472825,0.09895454179714017,0.41326592333604595,0.03828459565028523,0.01693271428218377,0.025554294672561668,0.19405636870257564,0.8059436312974244,0.3868907374536666,0.44228531069930777,1.291650098141976,0.010098041051706573,1.172150781350929,0.08405206988062329,1.044015104987765,0.48829110990902336,1.3070580028137018,0.02915578159137823,1.2962554538218298,0.013054262827494433 +29213,0.5086236744494677,0.012886170579807274,0.09811028197441224,0.4121234456242219,0.036726388018728386,0.016502439116105636,0.0253353731395913,0.1928936596995931,0.8071063403004068,0.37433780924518034,0.4493346611621683,1.2778935044486799,0.010098041051706573,1.1661802215655586,0.08405206988062329,1.0417106134880587,0.48829110990902336,1.2584942671105996,0.02915578159137823,1.263167701482357,0.013054262827494433 +29215,0.5125834889137577,0.012993430412689366,0.09970966223218669,0.4145191877936775,0.037539426354026524,0.016744106589725333,0.02534890548313294,0.19452374957197044,0.8054762504280295,0.3764873485040113,0.4460405556498159,1.2884692489513072,0.010098041051706573,1.183907599375285,0.08405206988062329,1.0496975956233192,0.48829110990902336,1.2862064744509605,0.02915578159137823,1.2849048119452542,0.013054262827494433 +29217,0.503071100678525,0.012268929475001264,0.09485802644909214,0.4100163265755934,0.035936149149030996,0.015938312294201874,0.02438806255905647,0.18855789235587353,0.8114421076441265,0.3788414169497507,0.4435175351733992,1.2153273152882313,0.010098041051706573,1.1249964580675473,0.08405206988062329,1.0303048124425902,0.48829110990902336,1.2281755468939421,0.02915578159137823,1.2191516168209091,0.013054262827494433 +29219,0.49986512027294816,0.011137167583496789,0.08985138075937549,0.41166357742425136,0.031538040969721945,0.014321738376077413,0.022280345500833125,0.17975125111812706,0.8202487488818729,0.3510022962716811,0.45410995533384524,1.1036980657921613,0.010098041051706573,1.0686077149812254,0.08405206988062329,1.0232047525395414,0.48829110990902336,1.0832311593410315,0.02915578159137823,1.092124659608443,0.013054262827494433 +29221,0.49685461341750464,0.010240892850093431,0.08653688973780974,0.4116606803527859,0.028512538835297162,0.01305816043790975,0.020611447641904163,0.1741694399143944,0.8258305600856056,0.32948421097273906,0.45797957569966974,1.0168843804312466,0.010098041051706573,1.0332217505600059,0.08405206988062329,1.0176154934675004,0.48829110990902336,0.9798465521407033,0.02915578159137823,0.9995608971210185,0.013054262827494433 +29223,0.5288291151278219,0.015266469894885703,0.11103917980330817,0.41901332958013904,0.04383646646589232,0.019545040060401316,0.02886843681289311,0.20997175954744696,0.790028240452553,0.39478377401150716,0.4458625805437273,1.513587501311176,0.010098041051706573,1.319917526231288,0.08405206988062329,1.0836122337787935,0.48829110990902336,1.5007324452749975,0.02915578159137823,1.5033932671445527,0.013054262827494433 +29225,0.4886572869369644,0.009928662788752363,0.08284720696845463,0.40742411223492003,0.02800227982433543,0.012736444576786013,0.02031825382363148,0.16954051271344636,0.8304594872865536,0.33799908106736465,0.4548359868083806,0.98559461923919,0.010098041051706573,0.9875958889721344,0.08405206988062329,1.0005139226018909,0.48829110990902336,0.9612050513821409,0.02915578159137823,0.972872154988806,0.013054262827494433 +29227,0.5254859494760056,0.01542075505655716,0.11117378599091127,0.41563664933513367,0.04553043230531255,0.019990447479504115,0.02934570386122435,0.21156376512401426,0.7884362348759857,0.40954287829178343,0.43905683445864413,1.5283196087938964,0.010098041051706573,1.3207956994631838,0.08405206988062329,1.0759273260350453,0.48829110990902336,1.550831074104898,0.02915578159137823,1.530944378312018,0.013054262827494433 +29229,0.506820431181101,0.01244420348661818,0.09560791970025337,0.4125657189071831,0.035266276838965785,0.015931964631916266,0.024553476381404052,0.18864259177051607,0.8113574082294839,0.36886355178034824,0.45176202479965233,1.233517421878571,0.010098041051706573,1.1376669548577614,0.08405206988062329,1.037924795591078,0.48829110990902336,1.2088481913073341,0.02915578159137823,1.2161003934677357,0.013054262827494433 +29510,0.4775734625439888,0.009208551361739606,0.07867150930174147,0.4002713039901825,0.026883904235316287,0.011987416768564095,0.01928195782212546,0.16473174385081146,0.8352682561491885,0.3417235092338719,0.4458956803162807,0.9115586118875101,0.010098041051706573,0.9376031543977826,0.08405206988062329,0.978074656136448,0.48829110990902336,0.9230121047722137,0.02915578159137823,0.9179839517578745,0.013054262827494433 +30001,0.5098130343043292,0.012480656623473148,0.09730762612831413,0.4133279973699495,0.03515094876660678,0.01600155065552076,0.024480850397447684,0.19086923946755555,0.8091307605324445,0.36123529229101925,0.45522386214286625,1.2374964900695393,0.010098041051706573,1.158421964347939,0.08405206988062329,1.0438546561106703,0.48829110990902336,1.207837183848516,0.02915578159137823,1.2203021756811516,0.013054262827494433 +30003,0.4720498971913888,0.008529716349841662,0.07273702631537535,0.40086118113779057,0.023782505534864613,0.010917247043126011,0.018069522736032625,0.15408758003793127,0.8459124199620687,0.3269656011471754,0.4590452854986862,0.8461819934640462,0.010098041051706573,0.87039700626663,0.08405206988062329,0.9667033659416497,0.48829110990902336,0.81917487182359,0.02915578159137823,0.8314534591418422,0.013054262827494433 +30005,0.48741240100187677,0.010381319780584946,0.08412674051930508,0.4054490963973263,0.030771871805961453,0.013626139481925011,0.021298842128854602,0.17259868716180068,0.8274013128381993,0.3657799127365459,0.4428115250137371,1.028083019868924,0.010098041051706573,0.997935988510107,0.08405206988062329,0.9976461248528797,0.48829110990902336,1.0512258016797453,0.02915578159137823,1.036424677883419,0.013054262827494433 +30007,0.5095580470063428,0.012093671281887888,0.09570791803767309,0.41429533600690044,0.033941970705927006,0.015530042885588749,0.023733647918894218,0.1878253490450358,0.8121746509549642,0.3546411979473483,0.457546882593852,1.1986455867387416,0.010098041051706573,1.1381419480707768,0.08405206988062329,1.043394563638889,0.48829110990902336,1.1680399344879908,0.02915578159137823,1.182116208817078,0.013054262827494433 +30009,0.5285660022042344,0.013830548098149216,0.10729301922764517,0.4222517503131695,0.039618143075249704,0.017768203975785365,0.026166170431834137,0.202988877037513,0.797011122962487,0.36925182421413,0.44848654168462376,1.3713658556192616,0.010098041051706573,1.2774387833624594,0.08405206988062329,1.082916178751982,0.48829110990902336,1.3572620031990223,0.02915578159137823,1.3630071440276508,0.013054262827494433 +30011,0.5560793283691456,0.017816004562477145,0.12758283566982215,0.42949437623899356,0.051450360558374,0.02292936728637332,0.03203860250429995,0.2294327970147598,0.7705672029852402,0.4032702384161213,0.4456599922241237,1.7681436905110748,0.010098041051706573,1.5164634427304073,0.08405206988062329,1.138449228231353,0.48829110990902336,1.761591715598624,0.02915578159137823,1.7593776870358582,0.013054262827494433 +30013,0.4990269056416572,0.011553565167053456,0.09160435088092435,0.4094142483670713,0.03341023302238989,0.01492939937646924,0.023152188862838343,0.18356595575370416,0.8164340442462958,0.36472321130051505,0.44685109997479794,1.1456090726926516,0.010098041051706573,1.0890595435524668,0.08405206988062329,1.0222068697342492,0.48829110990902336,1.1456336058020535,0.02915578159137823,1.143640908729608,0.013054262827494433 +30015,0.506851803622623,0.012748209318529265,0.09728017877078901,0.4113646303605262,0.03764412561009171,0.016667445899939355,0.025151748947944863,0.19193022117214179,0.8080697788278582,0.38696604062363593,0.4427635289653564,1.2628652438791739,0.010098041051706573,1.1536553311758064,0.08405206988062329,1.0374340104734239,0.48829110990902336,1.2851032749069122,0.02915578159137823,1.2685493203453113,0.013054262827494433 +30017,0.5127902134405589,0.0138656570865483,0.10265869108414585,0.4122800671236745,0.04126073474987809,0.0181285569729748,0.027039628922550733,0.20019627596899478,0.7998037240310052,0.40192149650591263,0.43936583007718644,1.3737385746850534,0.010098041051706573,1.2175437831341838,0.08405206988062329,1.0500343097707154,0.48829110990902336,1.40730709115409,0.02915578159137823,1.3852018701586126,0.013054262827494433 +30019,0.5428592671128425,0.017119512146160382,0.12077931095245376,0.4238131697184062,0.049986515810702604,0.022112627165830165,0.03153582002423807,0.22248733377033375,0.7775126662296663,0.41386654234499154,0.4423718438302442,1.697932635166386,0.010098041051706573,1.4335542895721742,0.08405206988062329,1.11212469159577,0.48829110990902336,1.7080850141093054,0.02915578159137823,1.6951091574515105,0.013054262827494433 +30021,0.5145374731339846,0.013473914955691071,0.10228545658368329,0.4140194472855407,0.039729064968872074,0.017582028648328706,0.02618645999410521,0.1987910733900004,0.8012089266099995,0.3884136249259282,0.4425482618859597,1.3355437847776392,0.010098041051706573,1.213689467133828,0.08405206988062329,1.0538962760120003,0.48829110990902336,1.3561634361518982,0.02915578159137823,1.342136962482217,0.013054262827494433 +30023,0.524265023625597,0.013891274128620823,0.10662370927127682,0.41821255030533133,0.04016246203211811,0.017934370909221842,0.026496663905889804,0.2033774989105929,0.7966225010894071,0.37667477812026756,0.44654560506972013,1.3782067876027977,0.010098041051706573,1.2684707124127348,0.08405206988062329,1.073306137062692,0.48829110990902336,1.3755332955836574,0.02915578159137823,1.3749240715356104,0.013054262827494433 +30025,0.5158051985291181,0.01366704851833589,0.1030886265817289,0.41429062151454354,0.040186606891955454,0.01778844036593314,0.026496531165853227,0.1998596114884045,0.8001403885115955,0.3898258054693882,0.4426459893406434,1.355535987650799,0.010098041051706573,1.2250086452207252,0.08405206988062329,1.0562501097873533,0.48829110990902336,1.370032838522019,0.02915578159137823,1.3578383985179883,0.013054262827494433 +30027,0.532444372132596,0.01570866128380188,0.11413922987803668,0.41982692997003435,0.04657319796938056,0.020500509362761706,0.02950291543299459,0.21436836569588588,0.7856316343041141,0.40803848088992967,0.44017826253287823,1.557543779235584,0.010098041051706573,1.3561449617636083,0.08405206988062329,1.0905134163968957,0.48829110990902336,1.5854614133082705,0.02915578159137823,1.5638850629223633,0.013054262827494433 +30029,0.5025956656785411,0.010960083053366442,0.09075301805855097,0.4131493513145148,0.03141109620600356,0.014115994945975933,0.02180695895689734,0.18056864445105736,0.8194313555489426,0.34611627114966154,0.44939517084659913,1.085188642117625,0.010098041051706573,1.0792693570393201,0.08405206988062329,1.029215391181624,0.48829110990902336,1.0780365003357961,0.02915578159137823,1.0821827970699358,0.013054262827494433 +30031,0.466837187956416,0.007718610670415484,0.07092371936262329,0.3969994369769919,0.022080335339129457,0.00999135961575109,0.01653383849775073,0.15192388522665154,0.8480761147733484,0.3113251185578088,0.4525003566429083,0.764260818046021,0.010098041051706573,0.8480429089802946,0.08405206988062329,0.9560558896614664,0.48829110990902336,0.7579811234573961,0.02915578159137823,0.7629625892441623,0.013054262827494433 +30033,0.5284026410823404,0.015143665626527011,0.11115786510693645,0.41851217000146335,0.044823559387902764,0.019781686102180812,0.028659329929744223,0.21036583935169026,0.7896341606483097,0.4032423557683611,0.4413234105527016,1.5006765077858677,0.010098041051706573,1.3184871006471468,0.08405206988062329,1.0815212654883757,0.48829110990902336,1.5314531749323224,0.02915578159137823,1.5113523696034865,0.013054262827494433 +30035,0.47182841559947986,0.008504177603121343,0.07318199789890428,0.3998162685208446,0.0238389149971462,0.01083485676276669,0.018023877583371893,0.15510298972969477,0.8448970102703053,0.3257483490690971,0.45450293203628395,0.8431113274243656,0.010098041051706573,0.8728772784464316,0.08405206988062329,0.9658666356712193,0.48829110990902336,0.8203999103646054,0.02915578159137823,0.8296861437736966,0.013054262827494433 +30037,0.5400759984984966,0.015628225036727915,0.11536499678445858,0.4257003954329953,0.044379987922276015,0.01994830341565587,0.028937084929115616,0.21360882006457044,0.7863911799354295,0.38469197034862374,0.44948870762632753,1.5502113826451462,0.010098041051706573,1.3720723771326289,0.08405206988062329,1.1066206079394423,0.48829110990902336,1.5215802307718813,0.02915578159137823,1.5288046695352486,0.013054262827494433 +30039,0.5512575281261504,0.015958684848650852,0.11966436919663635,0.43229971696608616,0.044211437038040674,0.0202885629130783,0.028949599841108835,0.21707525628430463,0.7829247437156954,0.36946199887947445,0.45889851749495253,1.5825576084992292,0.010098041051706573,1.4239582328281752,0.08405206988062329,1.1286527795521497,0.48829110990902336,1.519374745173641,0.02915578159137823,1.5477081181524364,0.013054262827494433 +30041,0.4857075768414155,0.009902907254229501,0.0822818915099184,0.4047726295309134,0.028093634166001025,0.012712279910085774,0.02038862008006686,0.1694062341893085,0.8305937658106914,0.3414315549930518,0.4524968124440875,0.9819181053050248,0.010098041051706573,0.9801478670492855,0.08405206988062329,0.9943969432656423,0.48829110990902336,0.9658540406439549,0.02915578159137823,0.9716512737941934,0.013054262827494433 +30043,0.5189700952437075,0.011147821388387682,0.09626570051153788,0.42239357442702513,0.03061043004211758,0.014165546641722124,0.02148066235522238,0.18549373344206213,0.8145062665579379,0.3179785726324069,0.4627686256688138,1.10637658098713,0.010098041051706573,1.1495216545962699,0.08405206988062329,1.063258169923733,0.48829110990902336,1.0557070749018904,0.02915578159137823,1.0836022880156229,0.013054262827494433 +30045,0.5641089144148266,0.01954930409190506,0.13553324265418726,0.4304036768811117,0.0579975032559195,0.025510092348076923,0.03465519440015295,0.24026077090942885,0.7597392290905711,0.42792087107293664,0.4398481126939416,1.939469962748443,0.010098041051706573,1.6072879671171143,0.08405206988062329,1.1550173174023715,0.48829110990902336,1.9784416770661042,0.02915578159137823,1.9490987387096994,0.013054262827494433 +30047,0.5089482095858485,0.012346543312912036,0.09598011484404269,0.41426994532078243,0.03470797074569584,0.01577125658855428,0.024258938493877228,0.18858522937362437,0.8114147706263757,0.36161626605774067,0.45439869429733465,1.2243864199983798,0.010098041051706573,1.1434404979835393,0.08405206988062329,1.042347029391531,0.48829110990902336,1.1913380830057498,0.02915578159137823,1.204461057732959,0.013054262827494433 +30049,0.503442623300528,0.011109485602495384,0.09148420701716085,0.41318517455740994,0.031482673953279694,0.014304517445104952,0.022067034232545746,0.18171724598405672,0.8182827540159433,0.34413233693301937,0.45436157889043555,1.1009449270904237,0.010098041051706573,1.0885707582213295,0.08405206988062329,1.0311460179321692,0.48829110990902336,1.0821337766119075,0.02915578159137823,1.0922643974304254,0.013054262827494433 +30051,0.518610875548605,0.01369421603536479,0.1039495252823243,0.4143813340117942,0.0390949009819508,0.017562236750403748,0.026405570498070567,0.20043838296364844,0.7995616170363515,0.37609504108623903,0.44922064794362365,1.3591407235185695,0.010098041051706573,1.2387980595114283,0.08405206988062329,1.0614420029878846,0.48829110990902336,1.337735792457746,0.02915578159137823,1.3431546868052358,0.013054262827494433 +30053,0.5401471618143038,0.014800788959084342,0.11300910933194921,0.4281691614142017,0.041328307049212934,0.01887457821845989,0.0274014009614896,0.20921911160721865,0.7907808883927814,0.3657077495214703,0.4566985576250296,1.467215065467164,0.010098041051706573,1.3453037536696009,0.08405206988062329,1.1059906201003027,0.48829110990902336,1.4208246241198106,0.02915578159137823,1.441557958614326,0.013054262827494433 +30055,0.5280716512603248,0.0150434907208042,0.10989228397707584,0.41971162162104136,0.04410612190924365,0.01952013720218578,0.02848759384242759,0.20810108574243832,0.7918989142575616,0.40135776883520263,0.4425720593243723,1.4920508329870965,0.010098041051706573,1.306982871519945,0.08405206988062329,1.08121908618565,0.48829110990902336,1.5048699447351663,0.02915578159137823,1.4923950568638764,0.013054262827494433 +30057,0.5411861751296225,0.014943136172203657,0.11454979750808954,0.4279581541639124,0.04285718142572641,0.01922407645711937,0.02761182169634053,0.21166430846215367,0.7883356915378463,0.37413581130686696,0.4485613803239869,1.4821961256700709,0.010098041051706573,1.3632006687371105,0.08405206988062329,1.1083802159140634,0.48829110990902336,1.4676806765611943,0.02915578159137823,1.4738362101593427,0.013054262827494433 +30059,0.5115341925609127,0.013252168653760926,0.10068264131850022,0.4128398766702378,0.03912502856580575,0.01730780591580617,0.025906711313697525,0.196824851168695,0.803175148831305,0.38859755816335156,0.44237171320387836,1.3135250961543523,0.010098041051706573,1.1943891914245057,0.08405206988062329,1.0476046334798537,0.48829110990902336,1.3345421924450442,0.02915578159137823,1.3189996341012253,0.013054262827494433 +30061,0.5328818800301088,0.014286108818376131,0.10957759890964502,0.42440468256803643,0.04044324907451974,0.01831497055207303,0.02680914730590753,0.20563206034225387,0.7943679396577461,0.36908318376156646,0.4528560630310961,1.4155938926492404,0.010098041051706573,1.3041441567658965,0.08405206988062329,1.0913414597446538,0.48829110990902336,1.3882889586009661,0.02915578159137823,1.3996262210657426,0.013054262827494433 +30063,0.48010367717296876,0.009102716417399966,0.07904545225037203,0.402097236188945,0.026025829740823965,0.011771641777437222,0.018959897310098076,0.1646424637191313,0.8353575362808687,0.3292514496392355,0.45230610876441313,0.9018488655595225,0.010098041051706573,0.9446433193781819,0.08405206988062329,0.9834857722321156,0.48829110990902336,0.8944173461593847,0.02915578159137823,0.900007589824724,0.013054262827494433 +30065,0.5415898909716774,0.014251976661245433,0.1125353281230754,0.42997997099752727,0.03987625028386205,0.01833255932758733,0.026315071419955184,0.20778698051614938,0.7922130194838506,0.35434428413672,0.459736289071456,1.4129133471095294,0.010098041051706573,1.3385045648595408,0.08405206988062329,1.1091553694390304,0.48829110990902336,1.372481978254131,0.02915578159137823,1.3935345256183531,0.013054262827494433 +30067,0.5198262945826801,0.012471123106166292,0.10134700039323097,0.4190579410714279,0.036346562139248625,0.016243772335084908,0.023990943198012305,0.19496320491942984,0.8050367950805701,0.3586348091035977,0.4469135835420364,1.2356745546727008,0.010098041051706573,1.2033633892587154,0.08405206988062329,1.0644339394821583,0.48829110990902336,1.2456601943635555,0.02915578159137823,1.2420973529017094,0.013054262827494433 +30069,0.5225071320648942,0.01391962019589784,0.10543441387774002,0.4185794242215738,0.039757220327311965,0.017798646235048787,0.02664005779383133,0.20178559756892525,0.7982144024310748,0.3770801094736845,0.4476833664053137,1.3789040911278283,0.010098041051706573,1.2542485978454505,0.08405206988062329,1.0701078442160976,0.48829110990902336,1.3570589041910912,0.02915578159137823,1.3607225926484243,0.013054262827494433 +30071,0.5336097063511602,0.015686590676760488,0.11394205498033269,0.4203922052040815,0.04609401776918526,0.02036831096431948,0.029397123946687333,0.21353070160487148,0.7864692983951285,0.40453911224561867,0.4418862132243132,1.5561124304243763,0.010098041051706573,1.3547952854277674,0.08405206988062329,1.0919850814538852,0.48829110990902336,1.5718189232968995,0.02915578159137823,1.5581745263137732,0.013054262827494433 +30073,0.5119150786052673,0.01331013018953504,0.10050367415769174,0.41289585767072723,0.03938653451853487,0.017380684962000827,0.0260006605505722,0.1963288020964687,0.8036711979035314,0.3918914890289167,0.4412849511759322,1.319610748839612,0.010098041051706573,1.193320848210961,0.08405206988062329,1.047971269743099,0.48829110990902336,1.3417743047254131,0.02915578159137823,1.3258548701132815,0.013054262827494433 +30075,0.5263417337266518,0.015372093289392397,0.1107194562365122,0.4164020236644216,0.04514637109856166,0.01990883202086967,0.029205537589720516,0.21035659751429248,0.7896434024857075,0.40775463168932763,0.4409841042905872,1.5240063407073539,0.010098041051706573,1.3154462062610333,0.08405206988062329,1.0772479016535446,0.48829110990902336,1.5401712511802266,0.02915578159137823,1.526606892508236,0.013054262827494433 +30077,0.5158880167417867,0.01152348182557105,0.09761904982723826,0.41853034870809736,0.032848241909692315,0.01493304599664649,0.02233717677404165,0.18922527110393947,0.8107747288960605,0.33649417780469726,0.45460716094642173,1.142281249408,0.010098041051706573,1.1620244970699245,0.08405206988062329,1.056388422902423,0.48829110990902336,1.1277434797826316,0.02915578159137823,1.1392182997662434,0.013054262827494433 +30079,0.5753273079476457,0.021068060068480977,0.1433569255126852,0.43326221411642574,0.062123640477478384,0.02735127656158879,0.03661925964132777,0.2491745542621289,0.7508254457378711,0.4333494196761444,0.4402716317229416,2.0893817670164516,0.010098041051706573,1.6980952563820075,0.08405206988062329,1.1775756897060141,0.48829110990902336,2.1220006635758137,0.02915578159137823,2.0955613705100484,0.013054262827494433 +30081,0.525019182641548,0.013892347779381524,0.10589800948601744,0.4204213793066236,0.03951917613309168,0.017809156070502694,0.02646064798905909,0.20170312435673102,0.798296875643269,0.37318148211567387,0.45064593478683534,1.3767483855499538,0.010098041051706573,1.2591776769924325,0.08405206988062329,1.0754146153159772,0.48829110990902336,1.3550020491881847,0.02915578159137823,1.362369303639909,0.013054262827494433 +30083,0.5059832497934238,0.011625503019798332,0.09442104348070068,0.4130698103723062,0.03434239857010432,0.015250125893442072,0.022976062991303843,0.18660903008004645,0.8133909699199535,0.36371551620401,0.44406117593421623,1.1508917894994912,0.010098041051706573,1.1199267351614948,0.08405206988062329,1.0362453480911982,0.48829110990902336,1.1740379450162037,0.02915578159137823,1.162109661781817,0.013054262827494433 +30085,0.47536329352425377,0.00925870990247557,0.07689416745587144,0.4000786296190211,0.026416123576114933,0.011886572970131315,0.01947712418818298,0.16175874011178396,0.8382412598882161,0.3435387162657662,0.4499741582401961,0.9171053916662294,0.010098041051706573,0.916803650879283,0.08405206988062329,0.9733579488456564,0.48829110990902336,0.9068465218028828,0.02915578159137823,0.909637425668649,0.013054262827494433 +30087,0.48572859470859453,0.009262897875731504,0.08023975220942672,0.40680965334943586,0.026133803160567293,0.011909653397424409,0.01907011029747721,0.1651946232598584,0.8348053767401415,0.32569645893668453,0.4557183401225971,0.9184513724665567,0.010098041051706573,0.9567352003308982,0.08405206988062329,0.9949156949430257,0.48829110990902336,0.8988687102232085,0.02915578159137823,0.909009211182285,0.013054262827494433 +30089,0.5411754102967261,0.01533012065564112,0.11489576321481204,0.4268730323971472,0.043100845408378274,0.019566208866662348,0.028327452363801277,0.21230780450984418,0.7876921954901558,0.375129980448416,0.4539634589826147,1.5197346399746638,0.010098041051706573,1.3678774516003798,0.08405206988062329,1.1079961445549906,0.48829110990902336,1.4785948402478633,0.02915578159137823,1.4947375782657994,0.013054262827494433 +30091,0.5491076211978494,0.017618419326329158,0.12521007013767582,0.4258373952459883,0.052813228087614725,0.023169746171103747,0.03208554870882233,0.22802464453969268,0.7719753554603073,0.42179696912192033,0.4387110390727528,1.7478681156743563,0.010098041051706573,1.486034817321475,0.08405206988062329,1.1242365900761755,0.48829110990902336,1.7969928485042983,0.02915578159137823,1.7638181229116272,0.013054262827494433 +30093,0.5068178623128663,0.012154363822154197,0.09617030545420266,0.41212952948680387,0.03574779319662272,0.015878275850758496,0.023981719520870252,0.1897531886807006,0.8102468113192994,0.3717134205593867,0.4441749946192091,1.2037486292706063,0.010098041051706573,1.1406913391699804,0.08405206988062329,1.0377433272905758,0.48829110990902336,1.2226813533736536,0.02915578159137823,1.2115945659492149,0.013054262827494433 +30095,0.5209493584370248,0.012853421166052228,0.10178951096780207,0.4200319534071212,0.0361445270358117,0.01652668043607325,0.0246730722629463,0.1953923338598505,0.8046076661401496,0.3550908801128329,0.4572388074050257,1.2736615550697974,0.010098041051706573,1.2108168734141964,0.08405206988062329,1.0676385220764921,0.48829110990902336,1.2436777296976929,0.02915578159137823,1.2581538370440315,0.013054262827494433 +30097,0.5261542959922583,0.013892164017285193,0.10660515043106962,0.4205299692468074,0.04048366472981463,0.017981559442590993,0.026403213131779884,0.202611954787951,0.797388045212049,0.37975336619398303,0.44416827287249716,1.3774561780423737,0.010098041051706573,1.2655542050226125,0.08405206988062329,1.0769169172386104,0.48829110990902336,1.38281972694211,0.02915578159137823,1.3769239504543955,0.013054262827494433 +30099,0.5229848614638244,0.014342147667168207,0.10699631605398802,0.41758920914797704,0.04253655514975835,0.01877275998067106,0.02742363828089558,0.2045877881713582,0.7954122118286417,0.39755158605923707,0.44133240020443243,1.4213791387004304,0.010098041051706573,1.2709956189037275,0.08405206988062329,1.0707002134799253,0.48829110990902336,1.449382137786762,0.02915578159137823,1.4306873185198172,0.013054262827494433 +30101,0.5037286103179017,0.011234619474994146,0.09360079647943911,0.4113028544430242,0.03349869833963036,0.014885378883893987,0.022302921146178312,0.1858159226262092,0.8141840773737908,0.35788903085871576,0.4443569339016365,1.1126066739471145,0.010098041051706573,1.1088340910367682,0.08405206988062329,1.0310499235823967,0.48829110990902336,1.145706128838832,0.02915578159137823,1.1306152820689461,0.013054262827494433 +30103,0.5237251699520142,0.01567186768781692,0.11141345132419747,0.41461588917159936,0.04776490089620095,0.020824815639066414,0.029923839041863957,0.2127326653679937,0.7872673346320063,0.42871754109126203,0.43598573949355235,1.5527687408739346,0.010098041051706573,1.3178325706609315,0.08405206988062329,1.0719419925727203,0.48829110990902336,1.6247307075400295,0.02915578159137823,1.581374742877172,0.013054262827494433 +30105,0.5241972943895394,0.014708370860366561,0.10779686562200524,0.41807919474163013,0.042575835765700815,0.018964344022747538,0.028058845434323312,0.20564178177901785,0.7943582182209822,0.3949635782082475,0.445425055825334,1.4591190129058704,0.010098041051706573,1.2808659025563671,0.08405206988062329,1.073848822556557,0.48829110990902336,1.4578895488324906,0.02915578159137823,1.453882067171424,0.013054262827494433 +30107,0.5472500607998414,0.018643799654987837,0.12776411942696753,0.4215256076958893,0.05663740100574148,0.02467689019294044,0.034068154561259834,0.23346570165790753,0.7665342983420924,0.4432966098757995,0.43569955108707903,1.8467582201403374,0.010098041051706573,1.5118105832639084,0.08405206988062329,1.1204115063938582,0.48829110990902336,1.922737061405698,0.02915578159137823,1.8730563535236457,0.013054262827494433 +30109,0.5380395101311319,0.015913641245088782,0.11673150936662102,0.42260010430503225,0.046960230000615874,0.02077995071558441,0.029577086710993176,0.216957132642863,0.783042867357137,0.40229266506892264,0.4425010421650806,1.5769905126336194,0.010098041051706573,1.3851492037801125,0.08405206988062329,1.1013413720388574,0.48829110990902336,1.605176312976377,0.02915578159137823,1.588159190862826,0.013054262827494433 +30111,0.49503600403387327,0.010884425040360995,0.08853714084010406,0.4085755060010639,0.031604127270436974,0.01409939398763068,0.021987138211499096,0.17884990206499368,0.8211500979350064,0.3569589775607648,0.44612508572003784,1.0782233882687955,0.010098041051706573,1.0524655597780868,0.08405206988062329,1.0140384388601724,0.48829110990902336,1.0837572604037051,0.02915578159137823,1.0797903231767814,0.013054262827494433 +31001,0.495079755021513,0.011701114401909268,0.09081196302389874,0.4066898990368042,0.03464844917984111,0.015305807428790747,0.023634806883591538,0.18342895685555274,0.8165710431444473,0.3815405815060156,0.4417458152122968,1.158776849032964,0.010098041051706573,1.0769090299234527,0.08405206988062329,1.0137382953351854,0.48829110990902336,1.1818598162124985,0.02915578159137823,1.1665914665009627,0.013054262827494433 +31003,0.5220389507648443,0.015005744722986925,0.10869590928334777,0.415418965268312,0.04489585630571549,0.01971979977152955,0.02874449253451656,0.2082141746781468,0.7917858253218533,0.4130409010028268,0.4392342945248404,1.4866115750325068,0.010098041051706573,1.2885256104044491,0.08405206988062329,1.0688506479827635,0.48829110990902336,1.528251110562273,0.02915578159137823,1.5000522502787037,0.013054262827494433 +31005,0.5037421865739578,0.01137789513058882,0.09097610761059784,0.4144214423825898,0.032209736139497645,0.014635202544104414,0.022586742650981755,0.18060053343823135,0.8193994665617687,0.35404610051425767,0.45437200977743464,1.1282673311827618,0.010098041051706573,1.0766165659125866,0.08405206988062329,1.031698420427915,0.48829110990902336,1.109382542238349,0.02915578159137823,1.1191009352299364,0.013054262827494433 +31007,0.520082459064235,0.0136224430512508,0.10491230726913606,0.4167984751646818,0.040718817301648995,0.0179720908690212,0.026192852332995724,0.201722448893779,0.798277551106221,0.38812240776662416,0.441370650229897,1.3482662414834354,0.010098041051706573,1.240235362804773,0.08405206988062329,1.064189010178225,0.48829110990902336,1.3906903254971104,0.02915578159137823,1.3659578518752888,0.013054262827494433 +31009,0.5474852060983655,0.015885192621797828,0.1175937158093528,0.42999080654508626,0.0428933128723442,0.020035353248533734,0.029014834455533708,0.21478884634596865,0.7852111536540314,0.36475854663768253,0.46709736103064414,1.5766407947070133,0.010098041051706573,1.4017588410702988,0.08405206988062329,1.1206434028083176,0.48829110990902336,1.4822038322561952,0.02915578159137823,1.522059385562741,0.013054262827494433 +31011,0.5232561131217511,0.015249688602786898,0.11005633793850328,0.41500494079965056,0.04580273580506475,0.020099495348649084,0.02914383266696514,0.21032977002773284,0.7896702299722671,0.4161753576668903,0.438827397433027,1.5104792840451204,0.010098041051706573,1.3027491224842924,0.08405206988062329,1.0712599418810735,0.48829110990902336,1.5615970755353463,0.02915578159137823,1.5298512059414886,0.013054262827494433 +31013,0.503319063569085,0.011809865625372779,0.09399551339717335,0.41097817766541933,0.035080927532512074,0.015544215692269143,0.02346397440547525,0.1867513476057154,0.8132486523942846,0.37321917041167024,0.44309591523380265,1.1678668429746093,0.010098041051706573,1.1136784455814834,0.08405206988062329,1.030318825185855,0.48829110990902336,1.198051799852379,0.02915578159137823,1.1807660484662985,0.013054262827494433 +31015,0.531766494441122,0.01588178563390536,0.11393715501818553,0.41926351134103934,0.04686114581558294,0.02063936734850258,0.029866089345468937,0.21426162838245694,0.785738371617543,0.41128941483665643,0.4404366771082939,1.575044828872824,0.010098041051706573,1.3531988640616373,0.08405206988062329,1.0888631002632538,0.48829110990902336,1.5965053526963444,0.02915578159137823,1.5789850537722083,0.013054262827494433 +31017,0.5434993129930643,0.018784565557660633,0.12632524001057338,0.4196070017360033,0.057610606466376724,0.024929847071046642,0.034562261825527546,0.23242943825429535,0.7675705617457047,0.45604984769120355,0.43273016203355624,1.8595562458135255,0.010098041051706573,1.4936148897407908,0.08405206988062329,1.112172916743874,0.48829110990902336,1.9586951147836036,0.02915578159137823,1.8974641606583633,0.013054262827494433 +31019,0.4747668514683687,0.009584361819368658,0.07861699735727293,0.3982383561723333,0.028562900712828285,0.012627227125359373,0.020187512649052785,0.16559074651931713,0.8344092534806828,0.36331711554722596,0.44208490070086554,0.9488450781036937,0.010098041051706573,0.9351775648032506,0.08405206988062329,0.9726712114569322,0.48829110990902336,0.9763655484451703,0.02915578159137823,0.9599363123672735,0.013054262827494433 +31021,0.5313149225032339,0.016197090599391284,0.114982574576105,0.41815865888061,0.048507334644490224,0.02127150512848429,0.030484915656199547,0.2164113404426452,0.7835886595573548,0.42186683350340226,0.4385214171090401,1.606038616231219,0.010098041051706573,1.3640747001805542,0.08405206988062329,1.0876772395921281,0.48829110990902336,1.651054469746823,0.02915578159137823,1.619967677909732,0.013054262827494433 +31023,0.517304032251244,0.013798279912944316,0.10345578891355928,0.4153763964294575,0.04077685791195089,0.01799504799345262,0.026673443570304073,0.19999030060394526,0.8000096993960547,0.3941476677155427,0.44130540985549127,1.3685785725438793,0.010098041051706573,1.2288689857302106,0.08405206988062329,1.059054140188184,0.48829110990902336,1.389390134018655,0.02915578159137823,1.3740326063906494,0.013054262827494433 +31025,0.5002804061815377,0.010965762579674295,0.09019591687365397,0.41147239344851194,0.03138433241281838,0.014151663832135416,0.021919232582727072,0.1802907244800717,0.8197092755199283,0.3479573521801592,0.45091492296186036,1.0864123511915245,0.010098041051706573,1.0723054926714173,0.08405206988062329,1.0242355073626923,0.48829110990902336,1.0768293128436803,0.02915578159137823,1.0816659846024148,0.013054262827494433 +31027,0.5158447725330342,0.014810001530822426,0.10626292930627745,0.41188248041536035,0.04495650529579373,0.019591342114123222,0.028710190195586422,0.2059978795258073,0.7940021204741927,0.42306856764899986,0.4357843650261723,1.4665894516704165,0.010098041051706573,1.2583952788746462,0.08405206988062329,1.0558978864991744,0.48829110990902336,1.528042036170969,0.02915578159137823,1.4902420042696816,0.013054262827494433 +31029,0.5232023996410408,0.015300355423047154,0.11077329088594956,0.41471995315374355,0.046909317865177075,0.020457128133404084,0.029243664466264755,0.21172167972079067,0.7882783202792093,0.42347137554552,0.43609945879409906,1.5139179151797444,0.010098041051706573,1.3096035391088137,0.08405206988062329,1.070746725363749,0.48829110990902336,1.5933195520789143,0.02915578159137823,1.5467074500557934,0.013054262827494433 +31031,0.5222348139383994,0.014618816960912221,0.10768837000008183,0.41656167637337543,0.043462934724367186,0.019114320659294647,0.02799280433003954,0.20620680032408617,0.7937931996759138,0.4035991511834951,0.4397843997538054,1.449259428769289,0.010098041051706573,1.277359768337112,0.08405206988062329,1.0693381309841157,0.48829110990902336,1.4796930061451987,0.02915578159137823,1.45862130641882,0.013054262827494433 +31033,0.506187187092138,0.012307940984896147,0.0957620406493731,0.4118220984755385,0.03587318494838214,0.015931687490128046,0.024314999072973006,0.18918305933323074,0.8108169406667692,0.37460756584886934,0.4441113191664504,1.2203364098068106,0.010098041051706573,1.1388684905781434,0.08405206988062329,1.0359385939571681,0.48829110990902336,1.2269066476812607,0.02915578159137823,1.2202361752395374,0.013054262827494433 +31035,0.5139151289653416,0.013563754955024532,0.10220960379747257,0.4133109619475219,0.04024074671867678,0.01774980592607559,0.02639298629392806,0.19888420876662996,0.8011157912333701,0.3937080785325561,0.4410903716614544,1.3433038742602736,0.010098041051706573,1.2115286145490762,0.08405206988062329,1.0525675528244256,0.48829110990902336,1.3744723483180832,0.02915578159137823,1.3549567984809774,0.013054262827494433 +31037,0.4862188956731843,0.011082891792150407,0.08593411291193892,0.4025471502033775,0.032981593963814865,0.014484127155886452,0.022794037604823684,0.17673955841012848,0.82326044158987155,0.3838009475656401,0.43915788823843505,1.0980127784050127,0.010098041051706573,1.018311343410862,0.08405206988062329,0.9957945728155739,0.48829110990902336,1.122752595689359,0.02915578159137823,1.1046631682289636,0.013054262827494433 +31039,0.5175298360768941,0.014698479663664278,0.10644762191507061,0.4124681469983704,0.0440631742712041,0.019321970569970377,0.028401221802177204,0.20568402919914888,0.7943159708008511,0.41394230776108804,0.43850609697444237,1.455977636662812,0.010098041051706573,1.261566233573959,0.08405206988062329,1.0590510253302758,0.48829110990902336,1.4997216287603263,0.02915578159137823,1.4710629357188387,0.013054262827494433 +31041,0.5242555061827532,0.015239324484938175,0.1100060462036208,0.4165638608001536,0.045956329072732574,0.020114087680861942,0.02906850630124963,0.20983288664835342,0.7901671133516466,0.41776184726853627,0.43767829343001863,1.5090035306486103,0.010098041051706573,1.3018239384121522,0.08405206988062329,1.0731270147374758,0.48829110990902336,1.5648978238259752,0.02915578159137823,1.5302139481103825,0.013054262827494433 +31043,0.4766772596872502,0.009001892801119866,0.0766441934806624,0.4014265536727689,0.02588416052478886,0.011613100499864012,0.018884670116267016,0.16078844107425838,0.8392115589257416,0.3377184800218366,0.44865664037055886,0.8911082245896776,0.010098041051706573,0.9137853128432406,0.08405206988062329,0.976324786061739,0.48829110990902336,0.8889373394693081,0.02915578159137823,0.8898710275991475,0.013054262827494433 +31045,0.4839123763649626,0.011308932908709502,0.08665261894061574,0.39830052999433885,0.03304948313192732,0.014647810091057622,0.023369794741890215,0.1790667550012465,0.8209332449987535,0.3814020111103231,0.4432084469395881,1.1208139021695187,0.010098041051706573,1.030629898662776,0.08405206988062329,0.9910742950806366,0.48829110990902336,1.1293820504804697,0.02915578159137823,1.120121599926914,0.013054262827494433 +31047,0.48841205165717294,0.010833333735371695,0.08564159012697038,0.404610972982531,0.031363003599876406,0.013963873125659367,0.022180725677456967,0.17534700430996752,0.8246529956900325,0.3662122988769626,0.4452339228668263,1.0727844826418464,0.010098041051706573,1.0167289615403408,0.08405206988062329,1.0000192799911383,0.48829110990902336,1.0746158670823933,0.02915578159137823,1.07006163882116,0.013054262827494433 +31049,0.5447668680974949,0.016940668643284827,0.12123485395300523,0.4256122252829261,0.04984522928029289,0.02198682280481847,0.031097097924562146,0.2225444700343052,0.7774555299656948,0.41114603313346343,0.44110184910938527,1.6802765676764395,0.010098041051706573,1.4399675521471176,0.08405206988062329,1.1156285283560683,0.48829110990902336,1.7000788305979482,0.02915578159137823,1.6845703138628652,0.013054262827494433 +31051,0.5058887439841082,0.013114316177720183,0.09847668988899137,0.4100814323069528,0.039461545633442625,0.017305358623401823,0.025923320757127086,0.19466076496077342,0.8053392350392266,0.40071965942321947,0.4385372733280874,1.2979171163706171,0.010098041051706573,1.1644795003517132,0.08405206988062329,1.035693261853778,0.48829110990902336,1.3459498365248117,0.02915578159137823,1.3166849543683163,0.013054262827494433 +31053,0.5064223792890326,0.013312721572284504,0.09898532224069916,0.4096769254529865,0.03956055554314683,0.017387406009712794,0.026287782919416518,0.1954600078686587,0.8045399921313413,0.39966082493471916,0.4395136966858105,1.3195246102791165,0.010098041051706573,1.1745400326893103,0.08405206988062329,1.0368223828043455,0.48829110990902336,1.3462526601048665,0.02915578159137823,1.3271491700629463,0.013054262827494433 +31055,0.4754462516331561,0.008694025374499249,0.07572794896736793,0.40111604452507554,0.02514367278637167,0.011258495511372668,0.018286032006005523,0.15927762330072578,0.8407223766992742,0.3320263275215123,0.44776654576394975,0.8605883261863531,0.010098041051706573,0.9033449129567601,0.08405206988062329,0.9734253400666225,0.48829110990902336,0.8638532414810229,0.02915578159137823,0.862641046391588,0.013054262827494433 +31057,0.5417850013933938,0.017253383218296017,0.12178035798474042,0.42183181616535725,0.05171599252458164,0.022627725138823752,0.03184544270129807,0.22477617075322998,0.77522382924677,0.42466612334200776,0.4375382552711977,1.7109024655083886,0.010098041051706573,1.4454116274482944,0.08405206988062329,1.1096030142690716,0.48829110990902336,1.7577456686195554,0.02915578159137823,1.7243361306557707,0.013054262827494433 +31059,0.5258434923945727,0.01596953818800257,0.1134750976240051,0.41444610177288144,0.0489071747207829,0.021325453856565216,0.03036937495466739,0.21579633344374974,0.7842036665562503,0.43099477986645796,0.4360393741473488,1.5810524472321998,0.010098041051706573,1.341383137024509,0.08405206988062329,1.076062333810571,0.48829110990902336,1.6653529044642006,0.02915578159137823,1.6156120764686106,0.013054262827494433 +31061,0.5371023303862454,0.01716859238881275,0.11984194473010987,0.4195255301836637,0.052055455095000855,0.022692746929449448,0.03196521671478567,0.22312683812771422,0.7768731618722857,0.43436757649612895,0.4359340800697129,1.701248867695573,0.010098041051706573,1.4182590665559986,0.08405206988062329,1.099338529620117,0.48829110990902336,1.7695449982641969,0.02915578159137823,1.7254425392016182,0.013054262827494433 +31063,0.5167651526363999,0.01395530851400676,0.10347201157399376,0.41451838607847813,0.03987120334452249,0.01783352225662657,0.027005126879803033,0.20023024200859282,0.7997697579914071,0.38533321946689164,0.44727825499845475,1.3834146168074395,0.010098041051706573,1.2309304929165494,0.08405206988062329,1.0580362214181367,0.48829110990902336,1.3653268271230752,0.02915578159137823,1.3693566431602324,0.013054262827494433 +31065,0.5336733992697427,0.016741649448421488,0.11714843095285282,0.41852594943311394,0.05004838558180261,0.021972810545805077,0.031370590086240185,0.21951334114301752,0.7804866588569825,0.42722198816256374,0.43903135516511654,1.659681499976573,0.010098041051706573,1.3885752490379561,0.08405206988062329,1.092292761616282,0.48829110990902336,1.7056147021121646,0.02915578159137823,1.6725170622086156,0.013054262827494433 +31067,0.5143106324003213,0.014080082272069559,0.10403098043718856,0.4122770761689043,0.04227596080497592,0.01855106158001152,0.02737661130270027,0.20227266146855488,0.7977273385314452,0.40637856749318196,0.43880875151696236,1.39482546096127,0.010098041051706573,1.2315526013717037,0.08405206988062329,1.0528913563554898,0.48829110990902336,1.439416109350991,0.02915578159137823,1.411637817663192,0.013054262827494433 +31069,0.5585548843240793,0.019780559688639985,0.1349781167064143,0.42555966727449535,0.06027945204648496,0.02624190140450891,0.03541381562275105,0.2416559598610521,0.7583440401389479,0.4465868506492536,0.4353374245053234,1.9603626824109772,0.010098041051706573,1.5977982744850405,0.08405206988062329,1.1437957419421783,0.48829110990902336,2.0463565210802406,0.02915578159137823,1.9925842027732825,0.013054262827494433 +31071,0.5361678261308291,0.01626165629935377,0.1163590005358087,0.4210129447242378,0.04810931037968211,0.021144768768663787,0.030329414610166854,0.21701973685272227,0.7829802631472778,0.41345585780342614,0.4395151084434128,1.6120216022829204,0.010098041051706573,1.3833206670976321,0.08405206988062329,1.096941060974435,0.48829110990902336,1.6366635682506545,0.02915578159137823,1.61670014327269,0.013054262827494433 +31073,0.5345246887239172,0.016205996097270324,0.11619418028363013,0.42045358829889967,0.048492478879774675,0.021290211520782407,0.03031851744015653,0.21737850979535314,0.7826214902046469,0.41733999724774923,0.43904151762516236,1.6058764233427039,0.010098041051706573,1.3761499587718609,0.08405206988062329,1.094332191193258,0.48829110990902336,1.6548093249731681,0.02915578159137823,1.6239541737982037,0.013054262827494433 +31075,0.5148329252536177,0.0121358265100904,0.09891708301808497,0.4159476455168858,0.03523986474742502,0.01573348325618528,0.023572358943655423,0.19213433750251366,0.8078656624974864,0.3562566108119275,0.44646832128761016,1.2041369321518038,0.010098041051706573,1.1761999301970016,0.08405206988062329,1.0537585236034963,0.48829110990902336,1.208592202815737,0.02915578159137823,1.208133585108557,0.013054262827494433 +31077,0.5269957379003538,0.017192532326923735,0.11636875419841024,0.4127667729370742,0.052300064889660595,0.022766607048465705,0.03262366484294899,0.22081536116789932,0.7791846388321007,0.4494339159160225,0.43530743406336625,1.702495319711605,0.010098041051706573,1.3760345544892019,0.08405206988062329,1.078414252465324,0.48829110990902336,1.7768164362359973,0.02915578159137823,1.7265343679878784,0.013054262827494433 +31079,0.48771050581122954,0.010562682892848934,0.08485260658502991,0.405024644828588,0.031057635359100468,0.013759046555884485,0.02165768989388403,0.17398150249786187,0.8260184975021381,0.3660186364219458,0.4430165528314385,1.0460293530752955,0.010098041051706573,1.0076016083668333,0.08405206988062329,0.9988903164877332,0.48829110990902336,1.0612546878358802,0.02915578159137823,1.0508636771014577,0.013054262827494433 +31081,0.5085408121202615,0.012736876337979878,0.09805037080627595,0.41213635527957015,0.0376031066451262,0.016619591410143457,0.025045927552748346,0.19280728010299528,0.8071927198970047,0.38350805138127353,0.44197389239640256,1.2618452252955432,0.010098041051706573,1.1641379569913561,0.08405206988062329,1.0413865991721585,0.48829110990902336,1.2824208602633136,0.02915578159137823,1.2690478642460288,0.013054262827494433 +31083,0.5358693443423801,0.016598964791936045,0.11777664109368532,0.4193478706473337,0.04829591764650962,0.02134796325536442,0.03097576856594834,0.21978611453920927,0.7802138854607907,0.4100636356923498,0.44202417710779857,1.6468313076937482,0.010098041051706573,1.398015039008258,0.08405206988062329,1.0973080863002376,0.48829110990902336,1.6483464893854383,0.02915578159137823,1.6381231415058242,0.013054262827494433 +31085,0.5267418801075742,0.014703258759710588,0.10862245800648339,0.4190888665088633,0.04264702601299627,0.018958523742275746,0.027913593573967967,0.20621572369430716,0.7937842763056928,0.39261702225934514,0.44454503665738193,1.4582844452829598,0.010098041051706573,1.292283158689008,0.08405206988062329,1.0781695302835528,0.48829110990902336,1.4599369030263707,0.02915578159137823,1.4544029608055404,0.013054262827494433 +31087,0.5367912410520181,0.016648176412572976,0.11803539674961211,0.4203103927544025,0.04929773411737301,0.02167626839245389,0.031014247512581288,0.21989069068691044,0.7801093093130895,0.41765212364175847,0.4397011096056636,1.65120140425553,0.010098041051706573,1.401695456319602,0.08405206988062329,1.0992268549903508,0.48829110990902336,1.6777521407191327,0.02915578159137823,1.6567604177877566,0.013054262827494433 +31089,0.5233557161962588,0.014723335126170611,0.10881956088048164,0.41651708319609126,0.04427565000099644,0.01944425608674969,0.02813255816365126,0.20792657367226353,0.7920734263277365,0.40687216197853554,0.4391636505915123,1.4584261675504528,0.010098041051706573,1.2887041499686966,0.08405206988062329,1.0711373656886023,0.48829110990902336,1.5097926040756415,0.02915578159137823,1.4793666529524523,0.013054262827494433 +31091,0.5483150917672778,0.019379107159059515,0.1301300720964435,0.42063581979306813,0.0601584506264662,0.026001054955758832,0.035343012530621026,0.23732717565190567,0.7626728243480944,0.4622947613667721,0.43220951811414987,1.9173681882568352,0.010098041051706573,1.540828240653493,0.08405206988062329,1.1223966565986285,0.48829110990902336,2.0467988870849263,0.02915578159137823,1.9707029555375415,0.013054262827494433 +31093,0.5144083987860831,0.014037342611753613,0.10361124298618068,0.4126196490202898,0.04187485034388988,0.018390172103123027,0.027288323139512047,0.2014182568377299,0.7985817431622702,0.4041535371742911,0.43916985856897295,1.3915179509182711,0.010098041051706573,1.2276356955850196,0.08405206988062329,1.0531272687690298,0.48829110990902336,1.4251514522508772,0.02915578159137823,1.4026467850355464,0.013054262827494433 +31095,0.5284942150956593,0.01590644309334642,0.11329042160800563,0.4170555802250465,0.0474387970158229,0.020827829765525295,0.030097667370809912,0.21436454434510635,0.7856354556548937,0.41873616800513924,0.4390463307612608,1.5775352725613356,0.010098041051706573,1.3440885971956251,0.08405206988062329,1.0817380029202077,0.48829110990902336,1.6146026104137157,0.02915578159137823,1.5865965098239485,0.013054262827494433 +31097,0.5193541608894823,0.013736371434036783,0.10525269032733799,0.41562241064764743,0.041061768295676815,0.018047885426898565,0.0264489484603549,0.20266072413297867,0.7973392758670214,0.390125593635411,0.4395301560551335,1.3624126998684996,0.010098041051706573,1.2469346044484038,0.08405206988062329,1.0637414082231067,0.48829110990902336,1.3968329737689165,0.02915578159137823,1.377501675291044,0.013054262827494433 +31099,0.5121924443441468,0.0129853374429292,0.09982357678877773,0.41371460580769237,0.037997655108490846,0.016887850536982635,0.025352458019088295,0.19489466877357012,0.8051053312264299,0.3806481026911328,0.4444445450321729,1.287819342026208,0.010098041051706573,1.1863899970991567,0.08405206988062329,1.048909974738653,0.48829110990902336,1.2983675723464456,0.02915578159137823,1.2893697384014855,0.013054262827494433 +31101,0.5315295446814816,0.01530511056848832,0.11247637297788284,0.4205164866149764,0.04492038244733583,0.019870305003545786,0.02879446819397384,0.2116088825227658,0.7883911174772342,0.3993761645938645,0.4423449650465803,1.5175451599970589,0.010098041051706573,1.3363378637621315,0.08405206988062329,1.0887029440974976,0.48829110990902336,1.5336555233244116,0.02915578159137823,1.5213025677350687,0.013054262827494433 +31103,0.5760953233341086,0.022245114640828248,0.14495403538461887,0.4318174079090076,0.06411346347763502,0.0285147934131327,0.038613600457796306,0.2516146712417456,0.7483853287582545,0.4423020256560455,0.4447551554141142,2.2067721290875073,0.010098041051706573,1.7148358219597708,0.08405206988062329,1.1788818216446892,0.48829110990902336,2.195447441710198,0.02915578159137823,2.185538174233895,0.013054262827494433 +31105,0.5292736785782919,0.015077255145216802,0.11075528940584436,0.41994915731879495,0.04404743371044269,0.01951771420609496,0.028486689883609098,0.20925901643805453,0.7907409835619454,0.3977004976172125,0.44310672749744634,1.4946376316111407,0.010098041051706573,1.3164821387256116,0.08405206988062329,1.0838783702527799,0.48829110990902336,1.5052034820224311,0.02915578159137823,1.4951477525608672,0.013054262827494433 +31107,0.5296677694301781,0.016412080732745606,0.11523274730644897,0.41689455042809054,0.04962250501244143,0.021673423937289674,0.03098561339762449,0.2175566533535116,0.7824433466464884,0.430628499036613,0.43676601839942747,1.625402882114833,0.010098041051706573,1.3630126125668691,0.08405206988062329,1.0842150197814566,0.48829110990902336,1.689154567666292,0.02915578159137823,1.6488985354714059,0.013054262827494433 +31109,0.4731762085117559,0.008755197481756856,0.07562561779079827,0.3988841798647343,0.025394839867075802,0.011367344172389758,0.018503038242970612,0.15982548663775298,0.840174513362247,0.33579679226323905,0.4476241721503204,0.8669946589345594,0.010098041051706573,0.9030651826473411,0.08405206988062329,0.9690603836225871,0.48829110990902336,0.8723673827637084,0.02915578159137823,0.8702319108191954,0.013054262827494433 +31111,0.5006365164870749,0.011797629041567274,0.0928318502088123,0.40958583284621525,0.034698982520144306,0.015395399964692844,0.023565258731724693,0.18542764491133354,0.8145723550886664,0.3737831621592566,0.44368447852196036,1.168165851768135,0.010098041051706573,1.1018865662995563,0.08405206988062329,1.0248738823125167,0.48829110990902336,1.1848686612712687,0.02915578159137823,1.1740838486219398,0.013054262827494433 +31113,0.5178538744915465,0.01240823545638711,0.10080686877867198,0.41897402968854525,0.03743336873615816,0.016518978712017303,0.02396088176142373,0.19466276829085993,0.8053372317091401,0.3713374811625738,0.44129019828399957,1.228455577862802,0.010098041051706573,1.192961610305392,0.08405206988062329,1.0605200238480061,0.48829110990902336,1.27718313387189,0.02915578159137823,1.2534766933355366,0.013054262827494433 +31115,0.5268150506976084,0.015836344854207172,0.11412995325875462,0.41425431972808374,0.0493309769113055,0.02139046919091389,0.03006053990529824,0.216641405950008,0.783358594049992,0.4322351451372512,0.4336113032866312,1.5674012124806005,0.010098041051706573,1.347412168772098,0.08405206988062329,1.077877053975038,0.48829110990902336,1.6823476358662612,0.02915578159137823,1.615222303353562,0.013054262827494433 +31117,0.48738258392351086,0.011394753839950946,0.08848393020644349,0.4013643235468676,0.03494856801972447,0.01523501433572308,0.023379485061245486,0.1815492246237712,0.8184507753762288,0.3949707923030241,0.43592671170746267,1.1272853907376699,0.010098041051706573,1.0460863184468638,0.08405206988062329,0.9981284604551817,0.48829110990902336,1.1878531711199454,0.02915578159137823,1.1532809065178693,0.013054262827494433 +31119,0.49220705452999225,0.011232887453361233,0.08854143034818962,0.4058077694147679,0.033161768901883694,0.014681355152234853,0.02282146781518095,0.17988655289131866,0.8201134471086813,0.3745339189967326,0.44271930112271257,1.112426193845467,0.010098041051706573,1.0502393372859975,0.08405206988062329,1.0077108296444028,0.48829110990902336,1.1315464392170336,0.02915578159137823,1.1187164738611868,0.013054262827494433 +31121,0.5136223998073207,0.013568864523923248,0.10181968250166767,0.413696516319745,0.0399658707876686,0.01766492011285055,0.026417976569973283,0.19823839953215458,0.8017616004678454,0.3925161599970026,0.44200013072906774,1.345343133724677,0.010098041051706573,1.2083456602695213,0.08405206988062329,1.052001740184111,0.48829110990902336,1.363134064435611,0.02915578159137823,1.3493138121505879,0.013054262827494433 +31123,0.5173009102627838,0.013916282112864147,0.1032628415476989,0.41554485376653105,0.04002577835223897,0.017866372902505256,0.026901715880984653,0.19961851892980892,0.800381481070191,0.38761066180568327,0.4463716544192036,1.3803392593342532,0.010098041051706573,1.22793657507501,0.08405206988062329,1.0596652505844255,0.48829110990902336,1.371162475316078,0.02915578159137823,1.3706317660073863,0.013054262827494433 +31125,0.5207475068493039,0.014649946262166392,0.10743487981320946,0.41511204835036414,0.043709674556546396,0.01922499811053936,0.028132532694786102,0.20630896624589967,0.7936910337541003,0.40684807980929255,0.43983393391932796,1.4513858033340212,0.010098041051706573,1.273772360491223,0.08405206988062329,1.0662706928488577,0.48829110990902336,1.490383385731902,0.02915578159137823,1.4654068400292342,0.013054262827494433 +31127,0.5094488235130318,0.013522423151943071,0.10100715431280638,0.4106915596630145,0.04052195623905638,0.01777719130898255,0.02654324149518262,0.19826751903417164,0.8017324809658284,0.4011790700841349,0.438705160335974,1.33819048652189,0.010098041051706573,1.1956150629903486,0.08405206988062329,1.0433174729589119,0.48829110990902336,1.3849836237925874,0.02915578159137823,1.3579307315775295,0.013054262827494433 +31129,0.5387381043029102,0.017585406204898846,0.12158543208482792,0.41939543654650246,0.0535219411676319,0.02333623534648657,0.03264184594414969,0.22568559957746265,0.7743144004225373,0.44020027934177697,0.4360124994980463,1.7414315423277382,0.010098041051706573,1.4386806218967392,0.08405206988062329,1.1028144687606405,0.48829110990902336,1.82143049529832,0.02915578159137823,1.772370321020125,0.013054262827494433 +31131,0.5133461461443345,0.013794182855945449,0.10287290160381696,0.4126247891750858,0.04163295679095816,0.018212821636691724,0.02687111408072599,0.2003967544637859,0.7996032455362141,0.4047028531507215,0.43746164194245224,1.365754203429074,0.010098041051706573,1.2179444799725543,0.08405206988062329,1.0508048694655299,0.48829110990902336,1.4156110588282091,0.02915578159137823,1.3859807824352068,0.013054262827494433 +31133,0.5461307979257677,0.01861784419049579,0.12714055052510098,0.42076173990776256,0.056911963131350225,0.02472373246138209,0.034090449140036234,0.23280238178836865,0.7671976182116313,0.4476303028129036,0.4344206578205858,1.8440438972683975,0.010098041051706573,1.5036929364710336,0.08405206988062329,1.1180308205595044,0.48829110990902336,1.9353814396097713,0.02915578159137823,1.8805488263786452,0.013054262827494433 +31135,0.516420789802246,0.0142307843020501,0.10507918274908373,0.4136789635694719,0.04316753513597823,0.01885157215956993,0.027556567402136387,0.2034758956728328,0.7965241043271671,0.41080958194219147,0.43670717126162667,1.4091104308734757,0.010098041051706573,1.2428159313546603,0.08405206988062329,1.0570486760957274,0.48829110990902336,1.4684960828945688,0.02915578159137823,1.4328480693056709,0.013054262827494433 +31137,0.512888058579172,0.013705039329366406,0.10250103943975918,0.4121190377314259,0.040920498319225326,0.017992332765482302,0.026721307115889555,0.19985070372609698,0.800149296273903,0.3992203254024042,0.4396899721289347,1.3581774854239397,0.010098041051706573,1.2153251759222772,0.08405206988062329,1.0499708917683248,0.48829110990902336,1.3928104058761615,0.02915578159137823,1.369937979645138,0.013054262827494433 +31139,0.5050233037721789,0.012607580640602753,0.09708400917053309,0.40998563680090916,0.03793913649583437,0.016644189921321332,0.02496435421184081,0.19223669174349362,0.8077633082565063,0.390786668370816,0.4387076633425441,1.247693887286336,0.010098041051706573,1.1484560265892436,0.08405206988062329,1.0338218346205008,0.48829110990902336,1.294270534390685,0.02915578159137823,1.2675971593094948,0.013054262827494433 +31141,0.4948531075555913,0.01111865389404185,0.08879959107665317,0.4080055572570067,0.03252511426803091,0.014456547419974724,0.022468594668353763,0.1794463644278065,0.8205536355721935,0.36627549602063747,0.44447337835132933,1.101686751464225,0.010098041051706573,1.0552205300598094,0.08405206988062329,1.012814699944765,0.48829110990902336,1.112678058037722,0.02915578159137823,1.1044209382899481,0.013054262827494433 +31143,0.5232859691927926,0.0149728907409886,0.1091022855936313,0.41587390559601445,0.0446993394692433,0.01964628874662237,0.028613208880959286,0.20849457470057847,0.7915054252994216,0.40970121960352923,0.43952078442099973,1.483359613063225,0.010098041051706573,1.2941486816945436,0.08405206988062329,1.071253739371055,0.48829110990902336,1.5227366292902462,0.02915578159137823,1.4965567023647164,0.013054262827494433 +31145,0.5103790857523667,0.01357836698502361,0.1017648499153021,0.41100774230765,0.04108621160260325,0.01799628807592682,0.026604473741331486,0.19939071320935334,0.8006092867906467,0.4037367680176299,0.43801283627684384,1.343769157468738,0.010098041051706573,1.203830151783643,0.08405206988062329,1.0450351304334637,0.48829110990902336,1.3993230258894953,0.02915578159137823,1.3661420089357001,0.013054262827494433 +31147,0.5321997953124078,0.016258705536110783,0.11565085662248815,0.4189130627207498,0.04908908716182371,0.021454317655928062,0.030550003362114643,0.21730721740432027,0.7826927825956798,0.42445934769045546,0.43704861704197584,1.6112272149036162,0.010098041051706573,1.36985138324519,0.08405206988062329,1.089656854438293,0.48829110990902336,1.669929581981529,0.02915578159137823,1.632702774697361,0.013054262827494433 +31149,0.5357181294454487,0.014770017038575355,0.1134246052613261,0.4241218541189876,0.043948219263487125,0.019449521663146896,0.027570500654634577,0.21172441070593997,0.78827558929406,0.3874663628957055,0.44255539789995235,1.462824106251388,0.010098041051706573,1.3417781301942338,0.08405206988062329,1.09675881805391,0.48829110990902336,1.500097687113367,0.02915578159137823,1.4783360698572188,0.013054262827494433 +31151,0.4866644142929084,0.011264240032666229,0.08726556259324596,0.40128476327805074,0.03375601797190661,0.014834617008870852,0.02314580581987371,0.17931362974224677,0.8206863702577533,0.3868194619823514,0.4394658463926917,1.1146681517822539,0.010098041051706573,1.0333380620359511,0.08405206988062329,0.9965159158299011,0.48829110990902336,1.1493990583274822,0.02915578159137823,1.1273156258098298,0.013054262827494433 +31153,0.4661815695954391,0.007090313738152158,0.06769487048654113,0.3989910741434068,0.01981368033286957,0.009114717360776563,0.015209339451804717,0.14521138307824563,0.8547886169217543,0.2926910147026407,0.4600214199305445,0.7033978612892731,0.010098041051706573,0.8113015061476168,0.08405206988062329,0.9543583677691623,0.48829110990902336,0.6811368352332284,0.02915578159137823,0.6950956146496013,0.013054262827494433 +31155,0.5040147108892861,0.01207997408589739,0.09460012801788903,0.41122301959958846,0.03531498802045496,0.015676608778389126,0.02396750298137811,0.18769318826225548,0.8123068117377445,0.3733080362616089,0.4439080871076327,1.1972442026361017,0.010098041051706573,1.1241504358392973,0.08405206988062329,1.0318660358308076,0.48829110990902336,1.2074400965108905,0.02915578159137823,1.1997735117092199,0.013054262827494433 +31157,0.5042312163436888,0.012675981120720374,0.0961502001477895,0.409893710273215,0.03736296104532764,0.01650890098272737,0.025139223256816976,0.1906867267064493,0.8093132732935507,0.38858952958910314,0.4418520513590789,1.2563144219981854,0.010098041051706573,1.1403234846983001,0.08405206988062329,1.0321334046546204,0.48829110990902336,1.2735864944857864,0.02915578159137823,1.2599605850884772,0.013054262827494433 +31159,0.4941172221622569,0.011753197925144294,0.09081728021306101,0.4055519580065955,0.0347346897246545,0.015330753842016695,0.023786254350156633,0.18379703467052738,0.8162029653294727,0.38246784800387673,0.44136723153553914,1.1643988173797855,0.010098041051706573,1.077804808612187,0.08405206988062329,1.0118432885379485,0.48829110990902336,1.1839136064048454,0.02915578159137823,1.1701871865266016,0.013054262827494433 +31161,0.5278671693704792,0.015779425763250185,0.1130467547247957,0.41704306679845693,0.04764587569215192,0.02087037832698705,0.029892796292045068,0.21415757842946048,0.7858424215705395,0.4214705305618231,0.4380311626935792,1.5631293894619924,0.010098041051706573,1.3388845347354459,0.08405206988062329,1.080550243458747,0.48829110990902336,1.6227524141235428,0.02915578159137823,1.5856249613416542,0.013054262827494433 +31163,0.5343384567842335,0.015535460067432316,0.1145606721784444,0.42148673193728325,0.04632438924128199,0.020351413254437817,0.029074194211901078,0.2143972059729628,0.7856027940270371,0.40436555023983467,0.43932394118434814,1.5395177018069433,0.010098041051706573,1.35717186938011,0.08405206988062329,1.0934833273532598,0.48829110990902336,1.5814942537573067,0.02915578159137823,1.5563842885141774,0.013054262827494433 +31165,0.5411442049437241,0.01627080223306843,0.11878069145265618,0.4237402435987136,0.04798175542594576,0.02119544284858104,0.030067405479765788,0.21949914711737273,0.7805008528826273,0.40395248452540294,0.4417396291657927,1.6138018243959538,0.010098041051706573,1.411454886645521,0.08405206988062329,1.1079110383351454,0.48829110990902336,1.6345454111922169,0.02915578159137823,1.6185631344926117,0.013054262827494433 +31167,0.49413025596714233,0.01056917305264875,0.08695533604351241,0.409019235179579,0.03035026582032035,0.013611270116909553,0.021389447266211437,0.17597654665634274,0.8240234533436572,0.34903281617051185,0.44847284690984246,1.0467822498756292,0.010098041051706573,1.0340571908796157,0.08405206988062329,1.011688206434436,0.48829110990902336,1.0411281495633133,0.02915578159137823,1.0432472755054478,0.013054262827494433 +31169,0.5416710924155674,0.018182742714304333,0.12444741193310949,0.4194183695012318,0.055601962113397393,0.024164482793072806,0.0335678661255835,0.22974719100873495,0.770252808991265,0.44679082714298196,0.434597663006758,1.8005246375144952,0.010098041051706573,1.4717384756614897,0.08405206988062329,1.1086140458741478,0.48829110990902336,1.8918104456090585,0.02915578159137823,1.835873158188754,0.013054262827494433 +31171,0.5293003765881752,0.015167956608572512,0.11219852823292341,0.4194058673414056,0.04555748167074897,0.0199658835539326,0.028656614050312713,0.21197515285393426,0.7880248471460658,0.4060434872743779,0.4382569628898533,1.501583074786336,0.010098041051706573,1.3270112500707176,0.08405206988062329,1.0840148271852796,0.48829110990902336,1.5551758072572879,0.02915578159137823,1.5237779407498913,0.013054262827494433 +31173,0.4689645434587809,0.009161884185246503,0.0740948274406199,0.3965772924707316,0.0271203939088874,0.011991958262197872,0.01953641125547432,0.15799665129082915,0.8420033487091708,0.36602276900667413,0.44217492940867964,0.9073635349133199,0.010098041051706573,0.8806581502121071,0.08405206988062329,0.9599110181440851,0.48829110990902336,0.927499691880646,0.02915578159137823,0.9128875299715473,0.013054262827494433 +31175,0.5385179388437519,0.017836218554457328,0.12217517177943638,0.41817285085616557,0.054081255985152295,0.023596251084071068,0.03312093668179996,0.22687298410477807,0.7731270158952219,0.4426534065594402,0.4363110777336474,1.766069991128925,0.010098041051706573,1.4451035698355748,0.08405206988062329,1.1021886352802057,0.48829110990902336,1.8403632833525627,0.02915578159137823,1.7932974360822858,0.013054262827494433 +31177,0.4977913707546192,0.010748541368242708,0.08868458915519119,0.41055271116387293,0.030761815561062958,0.013849372608754188,0.021592462223578968,0.17815614003262278,0.8218438599673772,0.3468676559715708,0.4502131085619067,1.0643835828411967,0.010098041051706573,1.053426372154457,0.08405206988062329,1.019341242640587,0.48829110990902336,1.0563283705989357,0.02915578159137823,1.0609344658299624,0.013054262827494433 +31179,0.47348198369623207,0.010408821859528967,0.08042713965361908,0.3948821056967059,0.030487581530316547,0.013476099707941443,0.02198356477742323,0.1698631466941265,0.8301368533058735,0.3790708169110507,0.44201930856801297,1.0315554248236323,0.010098041051706573,0.9558849852567498,0.08405206988062329,0.9699771620940493,0.48829110990902336,1.0413367510546743,0.02915578159137823,1.0306402994716803,0.013054262827494433 +31181,0.535850284758108,0.017605284201654133,0.12118172622815737,0.41709319871075257,0.05468112255059728,0.023619793457240534,0.032854856482163595,0.2261484778026401,0.7738515221973599,0.45123241145818704,0.4319551676245267,1.7430480367973002,0.010098041051706573,1.433870674967785,0.08405206988062329,1.0965201942798037,0.48829110990902336,1.8627577444454686,0.02915578159137823,1.7941751833022699,0.013054262827494433 +31183,0.524270583032554,0.012412280546665811,0.10107397739509572,0.4241801864816252,0.03392931879891875,0.015719629796743118,0.0236753328307476,0.1927897171160176,0.8072102828839824,0.3356879750194243,0.46330519896096667,1.2308362547993976,0.010098041051706573,1.2022684695405643,0.08405206988062329,1.0744200153577745,0.48829110990902336,1.1688317180239756,0.02915578159137823,1.201219580498361,0.013054262827494433 +31185,0.5102902524010793,0.013555550479599353,0.10103197061760927,0.4114219805874938,0.04045283921710651,0.01779761031486453,0.026564392354774837,0.19798922307886824,0.8020107769211318,0.4003964187753438,0.43995948515125133,1.3428299009444724,0.010098041051706573,1.1976584076660424,0.08405206988062329,1.0449253536110483,0.48829110990902336,1.3798853823175339,0.02915578159137823,1.356555020902373,0.013054262827494433 +32001,0.4988244493927445,0.01135529903261655,0.09022801324815304,0.41057785655719903,0.03224889152674296,0.014578703067463086,0.022764118812620724,0.18088129673273673,0.8191187032672633,0.35741551172194397,0.4520683464538135,1.125490161945737,0.010098041051706573,1.072293116694254,0.08405206988062329,1.0214826521394003,0.48829110990902336,1.1073415504589186,0.02915578159137823,1.1140781559530608,0.013054262827494433 +32003,0.4801985043320693,0.008741784474387514,0.07707177514751086,0.40378902765118563,0.024677741174115662,0.011299977192272692,0.018204522495435246,0.1604998234109738,0.8395001765890262,0.3201916801174478,0.45790160098304183,0.8679375833050612,0.010098041051706573,0.9206671467673166,0.08405206988062329,0.9825550910551127,0.48829110990902336,0.8483852303207032,0.02915578159137823,0.8600504566929109,0.013054262827494433 +32005,0.5311860110425413,0.014369356614582572,0.1091993498828685,0.42301282668914914,0.04071827512127085,0.018422350333183332,0.027051459029164397,0.20557647907283277,0.7944235209271673,0.37288019722596216,0.4524344481271916,1.4244240321886448,0.010098041051706573,1.2998071466743615,0.08405206988062329,1.0879656630355348,0.48829110990902336,1.3955873815274877,0.02915578159137823,1.4059665773034657,0.013054262827494433 +32007,0.4704920026624788,0.007339405827854938,0.06982471037328092,0.40122713098152296,0.020095543878545147,0.009294953087091095,0.01559942737883278,0.1484078581105484,0.8515921418894516,0.2877998887659532,0.46253802053174486,0.7289145500046432,0.010098041051706573,0.8363131877328145,0.08405206988062329,0.963495629438001,0.48829110990902336,0.6928214766888527,0.02915578159137823,0.7136516779229826,0.013054262827494433 +32009,0.5994493907468841,0.022982738018145175,0.15396284600924315,0.44516215225531514,0.06322830939675395,0.028956723316594456,0.0383397470627334,0.2568404412212566,0.7431595587787434,0.41067251636123975,0.4579708613572555,2.27911218620451,0.010098041051706573,1.8240861927026035,0.08405206988062329,1.225877119679804,0.48829110990902336,2.1647060871916297,0.02915578159137823,2.203236308210035,0.013054262827494433 +32011,0.5027824715278904,0.010197532246653825,0.08792186275034394,0.4163277718450183,0.02746893812040386,0.012890915944404939,0.020282195231796474,0.17487058067708858,0.8251294193229114,0.31242443302643064,0.4692906543347447,1.0116272862650693,0.010098041051706573,1.0476519365322094,0.08405206988062329,1.02964010274931,0.48829110990902336,0.950681579766959,0.02915578159137823,0.9866631968111328,0.013054262827494433 +32013,0.48228644224415756,0.008620253088801277,0.07753326043426281,0.40565896967504245,0.02426675941303245,0.011110411868482165,0.01787372053978924,0.16076184947992295,0.839238150520077,0.3129851534311164,0.4578448930645154,0.8550723624272814,0.010098041051706573,0.9264058072824626,0.08405206988062329,0.9878531567691865,0.48829110990902336,0.833848786903862,0.02915578159137823,0.8461887377506052,0.013054262827494433 +32015,0.48248821881463544,0.009463341891957067,0.08009601982611107,0.40423670798157135,0.027452153048525024,0.012267502510510252,0.019613622722657063,0.16600616699592977,0.8339938330040703,0.3427405395189899,0.44686850203792566,0.937173964884481,0.010098041051706573,0.954314089692086,0.08405206988062329,0.988231327833723,0.48829110990902336,0.9435712262359033,0.02915578159137823,0.9412474223186769,0.013054262827494433 +32017,0.48812229035080923,0.010631771514653526,0.08417222822657086,0.40553478478139027,0.028847829311722185,0.013388393061272683,0.02178095883925433,0.1724408614203564,0.8275591385796436,0.3427238403867716,0.464104002994512,1.0556701644908975,0.010098041051706573,1.0003765305194734,0.08405206988062329,0.9992619605562563,0.48829110990902336,0.9960224802161066,0.02915578159137823,1.0202600163789703,0.013054262827494433 +32019,0.5023195814303265,0.011083367371402864,0.09053051399640455,0.41313885890738483,0.03087736244786326,0.014138883164350621,0.022064374516007526,0.18022493516701868,0.8197750648329813,0.3410713259519278,0.457904498424186,1.0989018722097255,0.010098041051706573,1.0780780413676943,0.08405206988062329,1.0287616235407482,0.48829110990902336,1.063032843566357,0.02915578159137823,1.0813596766132938,0.013054262827494433 +32021,0.5595868451915939,0.016887455900123388,0.12613363757335738,0.43475365617474127,0.048730897776823434,0.021765132507025775,0.030178436189545136,0.225404936976621,0.774595063023379,0.38634339510332677,0.44663926789744757,1.6750151984009065,0.010098041051706573,1.4996013694722017,0.08405206988062329,1.1453349370144659,0.48829110990902336,1.6677443892504558,0.02915578159137823,1.6699078589035659,0.013054262827494433 +32023,0.53748638035729,0.01592780088653703,0.1150944705542604,0.4230775674743076,0.044719218883637,0.02024791383363722,0.02963386881719523,0.21413467347349754,0.7858653265265024,0.38854359091520796,0.45277879039712027,1.5789232938453217,0.010098041051706573,1.3680492869835432,0.08405206988062329,1.1006318555061,0.48829110990902336,1.5324483775172115,0.02915578159137823,1.5469922787507417,0.013054262827494433 +32027,0.4997516870886422,0.00918911156773124,0.08518739356618729,0.4146780203951371,0.02569694277045028,0.011846709035286208,0.01838735477065302,0.17045944169284494,0.8295405583071551,0.30165194278992413,0.4610162827972326,0.9117602171111377,0.010098041051706573,1.015967468985314,0.08405206988062329,1.0226573345317742,0.48829110990902336,0.8838728215908271,0.02915578159137823,0.9052201624937378,0.013054262827494433 +32029,0.5322731612101178,0.013015913912518998,0.10542179575084562,0.42697981530894935,0.034806812140516945,0.016391729579547112,0.0244534477051735,0.19805957435684002,0.8019404256431599,0.33016713377544366,0.4709345260741728,1.2898326487652438,0.010098041051706573,1.254483361499561,0.08405206988062329,1.0903700119219015,0.48829110990902336,1.2033110808323118,0.02915578159137823,1.2495787181293165,0.013054262827494433 +32031,0.4873599166684879,0.009496151239934358,0.08167908496395185,0.40681338769447595,0.026918232205942347,0.012270625310824419,0.01948488358428917,0.16759499944578254,0.8324050005542174,0.32956089331586425,0.45584811130782993,0.9416639130251255,0.010098041051706573,0.9748086891849563,0.08405206988062329,0.9981555934482093,0.48829110990902336,0.92525586176426,0.02915578159137823,0.9350896743301957,0.013054262827494433 +32033,0.508381196021845,0.012360106745792045,0.09597910858608213,0.4129976684814786,0.03522489185057854,0.01581370520808716,0.024312674903225445,0.18879358508365826,0.8112064149163417,0.367005824178768,0.44893552193624214,1.2248636456716084,0.010098041051706573,1.1430848080618048,0.08405206988062329,1.0410138319447948,0.48829110990902336,1.2076180136069175,0.02915578159137823,1.2129987879905544,0.013054262827494433 +32510,0.5059207245719544,0.012122810578707763,0.09579939579984845,0.4118150027829133,0.03554215420077521,0.01579592634791587,0.023961877800053637,0.18935653581082626,0.8106434641891738,0.37100603718871716,0.44442793924886376,1.2005598266741386,0.010098041051706573,1.1363289517386064,0.08405206988062329,1.035999701344565,0.48829110990902336,1.2154935149346175,0.02915578159137823,1.2066405807626144,0.013054262827494433 +33001,0.5159234253559328,0.012644955898120501,0.10039435675954653,0.41673863911188247,0.036720146476375705,0.016370363535647456,0.024509365686190374,0.1945915843815097,0.8054084156184903,0.365759069150906,0.445814222069607,1.2530335910010149,0.010098041051706573,1.1909641222264904,0.08405206988062329,1.0566072959872794,0.48829110990902336,1.2576185083330382,0.02915578159137823,1.2556464878226823,0.013054262827494433 +33003,0.5341232967326375,0.014857390758495868,0.11226949463988328,0.423315359373462,0.04292952068891608,0.019158482388158062,0.027816406528945944,0.21019396706090743,0.7898060329390926,0.3823792101907756,0.4462775749812778,1.4730877004915772,0.010098041051706573,1.3335775441037785,0.08405206988062329,1.0943751043309375,0.48829110990902336,1.4694702172946525,0.02915578159137823,1.470014653754193,0.013054262827494433 +33005,0.49839871147491244,0.011253610585590627,0.0910876326243921,0.40885214462023356,0.03249126644125925,0.014531661517202737,0.022579533868151046,0.18276057005612284,0.8172394299438772,0.3567033800871723,0.44724823341295217,1.1158030321707197,0.010098041051706573,1.08260404203215,0.08405206988062329,1.0209383981592524,0.48829110990902336,1.1136686813650307,0.02915578159137823,1.1144810926865558,0.013054262827494433 +33007,0.5252163475055103,0.01403023778944848,0.10749301750197732,0.41915084297903743,0.04131349666580667,0.01829941832783063,0.026713254178177083,0.20466426456927744,0.7953357354307226,0.38433656088449386,0.44294043846877373,1.3908101652272555,0.010098041051706573,1.2769788365835881,0.08405206988062329,1.0751589965629078,0.48829110990902336,1.4099307944235009,0.02915578159137823,1.3979225507949455,0.013054262827494433 +33009,0.5024783210507038,0.011656262905741862,0.09355150405973835,0.41037387718242657,0.03383738978558752,0.015097369000310869,0.02319754388879527,0.18618017960280978,0.8138198203971903,0.3616979772338057,0.44617416106786534,1.1555136422284262,0.010098041051706573,1.1114553892547892,0.08405206988062329,1.0289916464497015,0.48829110990902336,1.159287337497302,0.02915578159137823,1.156940517752615,0.013054262827494433 +33011,0.48981470319819487,0.009532505123570196,0.08315198430062697,0.4080538106792319,0.027477626094146165,0.01234041664491802,0.01946145156796781,0.16976212383518627,0.8302378761648137,0.33045063596803403,0.44910781603316974,0.9434261972049681,0.010098041051706573,0.9892657838287424,0.08405206988062329,1.002869436597606,0.48829110990902336,0.9437962866562027,0.02915578159137823,0.9460496701144289,0.013054262827494433 +33013,0.49822958766769265,0.010601180042366223,0.08924116436438316,0.41048641904199556,0.030710084035930507,0.013756644882023182,0.021277700692149498,0.179116549023389,0.820883450976611,0.3441246453322514,0.4479520429161978,1.0497974702508763,0.010098041051706573,1.0599220947724608,0.08405206988062329,1.0206267027763132,0.48829110990902336,1.0544024573163258,0.02915578159137823,1.0543878740766552,0.013054262827494433 +33015,0.4997440100203677,0.010028606499823234,0.08761491435565359,0.4127945820889741,0.028581497130431573,0.012985479110644451,0.020067487150900527,0.17531958882725324,0.8246804111727468,0.3262172581075778,0.45433166259224483,0.9932258254101747,0.010098041051706573,1.0436455851048447,0.08405206988062329,1.023431113154197,0.48829110990902336,0.9817013393199598,0.02915578159137823,0.9913507455948612,0.013054262827494433 +33017,0.4835281712570352,0.00939905796380809,0.0808833054829032,0.4037664417621677,0.026917994160142386,0.012132424465384685,0.019438490914341605,0.1672773383040531,0.8327226616959469,0.3328003720845979,0.45071799901603476,0.9308323450126632,0.010098041051706573,0.9640655895351277,0.08405206988062329,0.9904046573804272,0.48829110990902336,0.9239709672211933,0.02915578159137823,0.9286598056372184,0.013054262827494433 +33019,0.5152796335660665,0.012517257449266413,0.0993786311276192,0.41681528755426955,0.03575954808595532,0.016116793970487805,0.02429216416460891,0.19286349518581813,0.8071365048141819,0.3598313609294329,0.45069903936559336,1.2415392553933706,0.010098041051706573,1.182768204803346,0.08405206988062329,1.055197010668745,0.48829110990902336,1.226160303012727,0.02915578159137823,1.233015531287502,0.013054262827494433 +34001,0.49800551501597895,0.010816367219286385,0.0890468086279777,0.4104763799096225,0.031182181524020136,0.013975294422899978,0.02171937236265211,0.1788068725004392,0.8211931274995607,0.3501774179723155,0.4481820623144851,1.0714411797604786,0.010098041051706573,1.0580146223898008,0.08405206988062329,1.0195955843834617,0.48829110990902336,1.0692460652632616,0.02915578159137823,1.0705964616031665,0.013054262827494433 +34003,0.5041769014746325,0.011654472864485784,0.09388457048415992,0.41197311806927306,0.03426260965956769,0.015206038531264256,0.02311584055199359,0.18621354966791095,0.8137864503320891,0.36494398901626157,0.44380853304377627,1.1542370834499813,0.010098041051706573,1.11336959782551,0.08405206988062329,1.0325945436247532,0.48829110990902336,1.171668013596248,0.02915578159137823,1.1625026628069954,0.013054262827494433 +34005,0.4970988056820784,0.01070869194542065,0.08885138112642296,0.4098180098647285,0.031012788306133958,0.013860189339676397,0.021542381158464175,0.1787398805042558,0.8212601194957442,0.34904115066041735,0.44691851641521113,1.0606304164810534,0.010098041051706573,1.0549005574687076,0.08405206988062329,1.01799799872393,0.48829110990902336,1.0632340444872526,0.02915578159137823,1.0627500672235892,0.013054262827494433 +34007,0.4880555363539243,0.010027041626378293,0.08408934516118395,0.40551289035670485,0.02926865162220422,0.01303925389462815,0.020544878358078826,0.17229462406959503,0.8277053759304049,0.3480661142752574,0.4455023778661576,0.992897515436401,0.010098041051706573,0.9994553111521689,0.08405206988062329,0.9995206790652379,0.48829110990902336,1.0033772524310285,0.02915578159137823,0.9988044197125826,0.013054262827494433 +34009,0.5318449989357343,0.01541928824640085,0.11284753238221984,0.42032446420644776,0.04458396859482368,0.01987118171177514,0.028992071519439156,0.2121812419182977,0.7878187580817023,0.3950814665917169,0.44570239792610655,1.5300226942444697,0.010098041051706573,1.3417963198178946,0.08405206988062329,1.0898924528154081,0.48829110990902336,1.527075409936085,0.02915578159137823,1.5241144601956256,0.013054262827494433 +34011,0.48644938367667795,0.009863739380948994,0.08277495571606866,0.4050029473958241,0.028611591126056442,0.012770635299364123,0.02027701074754573,0.1701614977707231,0.8298385022292769,0.34565516681396696,0.4463448132995989,0.9769508705233085,0.010098041051706573,0.9845549669061444,0.08405206988062329,0.9956506344693881,0.48829110990902336,0.9813375161404315,0.02915578159137823,0.9795117054850692,0.013054262827494433 +34013,0.4825767236649683,0.009254291949799926,0.07982680659669097,0.40420242053352723,0.026800927977712316,0.012002932272044443,0.019176830327657435,0.16541785519707577,0.8345821448029243,0.33573844577196554,0.44785509971990883,0.9162902126988731,0.010098041051706573,0.9502583968259363,0.08405206988062329,0.9878539064812684,0.48829110990902336,0.9205777600848524,0.02915578159137823,0.9195672082870793,0.013054262827494433 +34015,0.4893423803324721,0.009730198598766853,0.08336151443110475,0.4074998185461542,0.02795503844440475,0.012569662943028272,0.01988423441304205,0.17035416874064072,0.8296458312593593,0.3353470559548024,0.44963854970280365,0.9632877111428173,0.010098041051706573,0.9919414714156171,0.08405206988062329,1.0017725015469203,0.48829110990902336,0.9597487925657463,0.02915578159137823,0.9628851095067681,0.013054262827494433 +34017,0.4756920802154565,0.008527933888993124,0.07597140841186115,0.40061426033603587,0.02468180146865538,0.011074873475147504,0.017927424575011935,0.15970711216686898,0.840292887833131,0.3248827681968036,0.44870604316350343,0.8442926906946749,0.010098041051706573,0.9059173352641523,0.08405206988062329,0.9735337630264862,0.48829110990902336,0.8466893811317934,0.02915578159137823,0.8478426159406829,0.013054262827494433 +34019,0.5032807588080015,0.010225322778694926,0.08910809404917475,0.4144122176662858,0.029118971284494283,0.013223443288309551,0.020317333018876296,0.17705444225649195,0.8229455577435081,0.3267825621814426,0.45411780378900174,1.0128440774043566,0.010098041051706573,1.0613865101429845,0.08405206988062329,1.0308190716671337,0.48829110990902336,0.9995850386607804,0.02915578159137823,1.0095351142011797,0.013054262827494433 +34021,0.4884556363410099,0.010026448852773805,0.08422871222739417,0.40584748305736285,0.029169382626186204,0.013015076477826116,0.02052683622996204,0.1724388172861431,0.8275611827138569,0.34631163002275234,0.446189644964995,0.9929682669132955,0.010098041051706573,1.0013682837108877,0.08405206988062329,0.9999903267322418,0.48829110990902336,1.0004516243515262,0.02915578159137823,0.9975132494671635,0.013054262827494433 +34023,0.4860685852563832,0.00969517424143937,0.08257894770990248,0.40493039459091973,0.028237630581066736,0.012603524728076267,0.01994610335972551,0.169891554843737,0.830108445156263,0.34194708656575207,0.44633789977148086,0.9598625601797789,0.010098041051706573,0.9821040467995636,0.08405206988062329,0.9951404768394785,0.48829110990902336,0.9689111794635885,0.02915578159137823,0.9657396986831597,0.013054262827494433 +34025,0.49969465161197235,0.010791153477237055,0.08974490348960118,0.4114095466044507,0.03134911531880452,0.013990050551767835,0.021595495253802926,0.17959948780738752,0.8204005121926125,0.3493135999910788,0.44626619952417007,1.0684997666840725,0.010098041051706573,1.06529473976485,0.08405206988062329,1.0232265706819164,0.48829110990902336,1.0745812266540469,0.02915578159137823,1.0724455739804895,0.013054262827494433 +34027,0.49930196639956986,0.010625458808779492,0.08918218028632469,0.4115094706967523,0.030681698548440932,0.013758667001348647,0.021280626802651914,0.17861371732503056,0.8213862826749694,0.34403395891349053,0.4484323767025533,1.0525193073052246,0.010098041051706573,1.058752543995006,0.08405206988062329,1.022443391643578,0.48829110990902336,1.053099993731077,0.02915578159137823,1.0542162269307909,0.013054262827494433 +34029,0.5182521001933706,0.014894072447632817,0.10706786346648633,0.4131504326264132,0.04446246096636001,0.019490158579713954,0.028739048895461358,0.20659417188379378,0.7934058281162062,0.4152736360549246,0.4383508729860921,1.477234549700091,0.010098041051706573,1.2688884893884422,0.08405206988062329,1.0608878459810018,0.48829110990902336,1.5127795019849395,0.02915578159137823,1.487301905045694,0.013054262827494433 +34031,0.4840475708984644,0.009598427347717882,0.08116808467626843,0.4043933747443086,0.027874147567844357,0.012451704852015136,0.019829512479324646,0.1676861729222365,0.8323138270777635,0.3434126563293673,0.4467115925862226,0.9504888056654408,0.010098041051706573,0.9657798336654756,0.08405206988062329,0.9910210557826078,0.48829110990902336,0.9561456942505127,0.02915578159137823,0.9539085477170933,0.013054262827494433 +34033,0.5020011084293382,0.011519874478252073,0.09256623140543996,0.4108889744976004,0.03342939938096555,0.014899356758993353,0.022947906458404988,0.18439447612986615,0.8156055238701339,0.36114033026303977,0.44569621455648817,1.1417335161717328,0.010098041051706573,1.0994167685172815,0.08405206988062329,1.0276249970607991,0.48829110990902336,1.1452608356591845,0.02915578159137823,1.142870254921735,0.013054262827494433 +34035,0.49417762886674865,0.009916686826443217,0.08551473712116928,0.4096463174551699,0.028730381079882863,0.012863279813884488,0.02006704926968108,0.17304453323245778,0.8269554667675423,0.335969939768085,0.44772395389114455,0.9814682535899107,0.010098041051706573,1.0159764373836628,0.08405206988062329,1.0115620903436795,0.48829110990902336,0.9866676835687573,0.02915578159137823,0.9865136214390626,0.013054262827494433 +34037,0.4951823161250903,0.009440529557343286,0.08438404756364438,0.411228731268658,0.0266589186682901,0.012219023448291443,0.019064755040562615,0.17041005871123988,0.8295899412887602,0.31592367796985954,0.4583465518736724,0.9353382108900379,0.010098041051706573,1.0063577295541635,0.08405206988062329,1.014235551087126,0.48829110990902336,0.9155110729111429,0.02915578159137823,0.9298482298283306,0.013054262827494433 +34039,0.4898682586196871,0.010124017189315986,0.08491169940711589,0.4066694401232664,0.029726996850545445,0.01320365950329883,0.02066681604936531,0.17333578551583137,0.8266642144841686,0.3500930620645925,0.4441639217604506,1.0020932294459977,0.010098041051706573,1.007963260091035,0.08405206988062329,1.0029073405758027,0.48829110990902336,1.0182105404910207,0.02915578159137823,1.010836673201779,0.013054262827494433 +34041,0.5009771958821354,0.010924250065433152,0.09046841771446193,0.4120988409119558,0.031713178676065865,0.014149523384191799,0.021805882892927713,0.18058390373470487,0.8194160962652951,0.3505441951705133,0.4461717170871469,1.0821825876436435,0.010098041051706573,1.073769693781088,0.08405206988062329,1.0258173840675497,0.48829110990902336,1.0870424865777024,0.02915578159137823,1.085501750082242,0.013054262827494433 +35001,0.48510499978103483,0.00965317842343915,0.08166140668000833,0.4043921635814317,0.027738091103912666,0.012455227905203241,0.019899152611901283,0.1683375902472009,0.8316624097527991,0.33967197274233674,0.44902974247735233,0.9559108917171844,0.010098041051706573,0.9732124200939811,0.08405206988062329,0.9932567127181255,0.48829110990902336,0.9523500981779863,0.02915578159137823,0.9545786760685366,0.013054262827494433 +35003,0.6038170109666556,0.02299767945759311,0.15574270561753104,0.44828025456744525,0.06374532961331883,0.029032124663368783,0.03808716720447464,0.2579303046931408,0.7420696953068592,0.40929897397482606,0.4554392429920523,2.2816494837059134,0.010098041051706573,1.8486160583493878,0.08405206988062329,1.2355934088206266,0.48829110990902336,2.185348142878188,0.02915578159137823,2.2170950403521923,0.013054262827494433 +35005,0.48754161047526096,0.010750110822833343,0.08508414353422977,0.4044096596047488,0.0311628518088276,0.013862395745901146,0.022049627338175334,0.17451668064042536,0.8254833193595746,0.3662592172217216,0.4448372001042055,1.0645985201289068,0.010098041051706573,1.010781285229548,0.08405206988062329,0.9982317494340034,0.48829110990902336,1.0674713648466108,0.02915578159137823,1.062577985514654,0.013054262827494433 +35006,0.48557701138140974,0.009921892767191732,0.08235765497631274,0.40442567361893134,0.02826553059752352,0.01276904022728245,0.020433201190816486,0.16960781306762207,0.8303921869323779,0.3432046554221717,0.45175307016529903,0.98347327789527,0.010098041051706573,0.9812854145260204,0.08405206988062329,0.9945668295088956,0.48829110990902336,0.9705788234572048,0.02915578159137823,0.9762680162995041,0.013054262827494433 +35007,0.5233206295687802,0.013908092814192832,0.10564750898419638,0.418992190508956,0.03974510624050133,0.017820704727354565,0.02657661866999815,0.20187912154590704,0.798120878454093,0.3762048591836342,0.4483748167515222,1.379061754266536,0.010098041051706573,1.2580485454927595,0.08405206988062329,1.0721709299770483,0.48829110990902336,1.361821532846367,0.02915578159137823,1.3671119360850381,0.013054262827494433 +35009,0.47243414761494995,0.008954336534036175,0.07533004959987019,0.3990105450177332,0.025556699558359208,0.01151670724042263,0.018953618359810576,0.15945089909391302,0.840549100906087,0.3392630124911433,0.45063358882174953,0.8875833623029055,0.010098041051706573,0.8980595187380873,0.08405206988062329,0.9677522606364137,0.48829110990902336,0.8781601886079112,0.02915578159137823,0.8814301162000477,0.013054262827494433 +35011,0.5398566261176555,0.016871708255447877,0.11995189029984898,0.4220780354513234,0.050788107581324356,0.022283543552704,0.03125220186103798,0.22219212379122832,0.7778078762087717,0.4234039784981054,0.43875514591723114,1.671676779449324,0.010098041051706573,1.4223615823833955,0.08405206988062329,1.1051721131072119,0.48829110990902336,1.7303271451597335,0.02915578159137823,1.6935097740267229,0.013054262827494433 +35013,0.47593569891517035,0.009436446179239097,0.0778153371012224,0.39986456825254924,0.026937756825610018,0.012119411662842208,0.0198271451390349,0.1634996855217873,0.8365003144782127,0.34617541771449645,0.44990426416353096,0.935502335516053,0.010098041051706573,0.9274607965822494,0.08405206988062329,0.9749356351930949,0.48829110990902336,0.9255231487060334,0.02915578159137823,0.9281515019990356,0.013054262827494433 +35015,0.4950093025870358,0.011152244292156957,0.08849582564995392,0.40839612475958387,0.03206009780690153,0.014351177164819005,0.022529363052113744,0.17877608599970504,0.8212239140002949,0.3622780800273625,0.44763360521406925,1.1042451589733369,0.010098041051706573,1.052783774147932,0.08405206988062329,1.0132185793244226,0.48829110990902336,1.0994949619448384,0.02915578159137823,1.099392693784208,0.013054262827494433 +35017,0.5261628361880053,0.014836069963296977,0.10915504641625517,0.41791761120608373,0.04282611948542948,0.019087679712059824,0.028196727216203168,0.2074548769104866,0.7925451230895134,0.3923420940348928,0.44570182732885555,1.4712914654159057,0.010098041051706573,1.2982209590933804,0.08405206988062329,1.0777231452664886,0.48829110990902336,1.4666145773419559,0.02915578159137823,1.464717311229274,0.013054262827494433 +35019,0.5052237377605076,0.010635307566121795,0.0915648469347663,0.41392028665193925,0.029352002168825123,0.013623435256591248,0.021050688578617967,0.18123623276420753,0.8187637672357925,0.3205597251720021,0.46413989676863515,1.054710985637891,0.010098041051706573,1.0898713767539898,0.08405206988062329,1.034539774252709,0.48829110990902336,1.0140784260682083,0.02915578159137823,1.0408196906645752,0.013054262827494433 +35021,0.49925726575655915,0.01248347437799514,0.09367742467099845,0.4069160606195227,0.0371103632421593,0.016296739228855602,0.025004091546025006,0.1876335731019208,0.8123664268980793,0.3961505493185092,0.43914254146511994,1.235854918222514,0.010098041051706573,1.1103961388555637,0.08405206988062329,1.0213497011552413,0.48829110990902336,1.2635875894449464,0.02915578159137823,1.2435126493501123,0.013054262827494433 +35023,0.4902611953165983,0.010878554980920803,0.08635121571078962,0.40583656426185566,0.031097288543305363,0.013942606953751206,0.022189304568344854,0.17613308280502638,0.8238669171949736,0.3601256599265197,0.44835442596016223,1.0771522352503222,0.010098041051706573,1.0283574374141107,0.08405206988062329,1.0039386221362436,0.48829110990902336,1.0666861569470658,0.02915578159137823,1.0680817900390074,0.013054262827494433 +35025,0.47261306957623106,0.008761417957329778,0.07467739775036089,0.39899941477846146,0.02512913331623494,0.011289850213082396,0.01853824729219975,0.1580095908420824,0.8419904091579176,0.3365025305278999,0.44927336215724045,0.8671402770599871,0.010098041051706573,0.8905225879405692,0.08405206988062329,0.9675888461834097,0.48829110990902336,0.8634534025011189,0.02915578159137823,0.8637078869437034,0.013054262827494433 +35027,0.5394964816350099,0.015528719660973803,0.1150081243514792,0.4251936607474607,0.04371302647329463,0.019780833766653905,0.028783727400616452,0.21317678291975706,0.7868232170802429,0.380086421892267,0.4525157684686625,1.5397835676333282,0.010098041051706573,1.3674406890725532,0.08405206988062329,1.1047495631798063,0.48829110990902336,1.4976200580493095,0.02915578159137823,1.5123897683483911,0.013054262827494433 +35028,0.5113553859373521,0.01135004725712809,0.09476896742148512,0.416752000937084,0.03255284048950998,0.014638143739273402,0.022196006083562838,0.18532897086390637,0.8146710291360937,0.343496836308569,0.44967331634210184,1.1238110898876068,0.010098041051706573,1.1278021184496665,0.08405206988062329,1.0476979394366164,0.48829110990902336,1.1181285684664604,0.02915578159137823,1.1225922408556466,0.013054262827494433 +35029,0.5050133618120615,0.013480535888743275,0.09802626757241842,0.4083927707733707,0.03920949230500007,0.01738226365597321,0.026693424190546464,0.19410628507072744,0.8058937149292725,0.3999896484483963,0.4433177435902833,1.3371858423726009,0.010098041051706573,1.1647270819145934,0.08405206988062329,1.0337929846741296,0.48829110990902336,1.3413679308457787,0.02915578159137823,1.3317920702790653,0.013054262827494433 +35031,0.4622126889363267,0.007622448103418326,0.06765940231490777,0.3949966072447043,0.021586666573365013,0.009819095496508811,0.016491213430249157,0.14638153372770857,0.8536184662722914,0.3190490284394472,0.4548685394818776,0.7553762147773193,0.010098041051706573,0.8095484269111146,0.08405206988062329,0.9465661814934114,0.48829110990902336,0.7416650352970064,0.02915578159137823,0.7481607187229464,0.013054262827494433 +35033,0.5144767684800797,0.013332290857817388,0.1019104362746848,0.4142542031090025,0.038945031557787155,0.01729581642080935,0.025914271886765684,0.19808559398271589,0.8019144060172841,0.38214959116470143,0.4441084197131947,1.321847719040707,0.010098041051706573,1.2087810218162207,0.08405206988062329,1.0535745585434242,0.48829110990902336,1.3314485369136004,0.02915578159137823,1.3250609229614543,0.013054262827494433 +35035,0.4930359490062565,0.011044738364704328,0.08759171155951201,0.4073634353496772,0.031150927128199377,0.014096020347066428,0.02240148692395688,0.17765785991073946,0.8223421400892605,0.3556378403113479,0.45250724927239827,1.0948404074192117,0.010098041051706573,1.0405108924815778,0.08405206988062329,1.009636683962587,0.48829110990902336,1.0683167482341962,0.02915578159137823,1.0774351138737877,0.013054262827494433 +35037,0.5267325667023797,0.014815025542665939,0.10882642093391265,0.4186844320378147,0.042706472292392356,0.019032728660413903,0.02812627598748207,0.20660659282038085,0.7933934071796191,0.3924274264089494,0.44566379845437043,1.4689929084571587,0.010098041051706573,1.2929592436706316,0.08405206988062329,1.0784249012228284,0.48829110990902336,1.461929345821178,0.02915578159137823,1.4625621213096283,0.013054262827494433 +35039,0.4948794713549536,0.010574257773620635,0.0871733397660032,0.40950019581219743,0.03004022591411113,0.013606443704814182,0.021367339697217345,0.17615064841410222,0.8238493515858978,0.34460336147206494,0.4529407915811537,1.048079663028708,0.010098041051706573,1.037718635110379,0.08405206988062329,1.0133005542596063,0.48829110990902336,1.0320496830006678,0.02915578159137823,1.039458064475099,0.013054262827494433 +35041,0.4716672895957885,0.009456559317148918,0.07677644171620021,0.3966758089769332,0.02718734278386905,0.012173012310107522,0.020049215889558596,0.16277669325340838,0.8372233067465916,0.35411048201954354,0.44774557068262233,0.9367445866011679,0.010098041051706573,0.9117276329506094,0.08405206988062329,0.9664040142879524,0.48829110990902336,0.9322021927862169,0.02915578159137823,0.930213783874291,0.013054262827494433 +35043,0.48873526239297893,0.00970032586564109,0.0826535446376481,0.40756156835779256,0.02753751255534375,0.01252142391521264,0.019847812531769638,0.16911721129544485,0.8308827887045551,0.3331679563903495,0.4547042471627603,0.9618245769887571,0.010098041051706573,0.9853177014073314,0.08405206988062329,1.0008363036177088,0.48829110990902336,0.9456632440948725,0.02915578159137823,0.9545194467887517,0.013054262827494433 +35045,0.47363318185392655,0.00839251842074559,0.07360143283146478,0.4010159055686941,0.023840608660712734,0.010814620768471742,0.017719447754684405,0.1553975431859929,0.8446024568140071,0.32391500740622564,0.4536218400452713,0.8314823438748753,0.010098041051706573,0.8800240253824126,0.08405206988062329,0.9698539575385945,0.48829110990902336,0.8185100461351568,0.02915578159137823,0.8250962518767524,0.013054262827494433 +35047,0.4999077202311553,0.01118204082655895,0.09078788186867945,0.41060861434213747,0.03195112123802631,0.01439389155034242,0.0223682099195996,0.1816092814623857,0.8183907185376142,0.3519315637767842,0.4504972280350422,1.107828168783922,0.010098041051706573,1.079966112612616,0.08405206988062329,1.0239334679976768,0.48829110990902336,1.0963189247633753,0.02915578159137823,1.1015565527698286,0.013054262827494433 +35049,0.5105976869128104,0.0114268419551827,0.09464851706020738,0.41653329937510175,0.032109358781338374,0.014740822746051999,0.022379345320328384,0.1853680881957649,0.8146319118042351,0.33924840851878446,0.45908181619058713,1.1325130509376404,0.010098041051706573,1.126151923499612,0.08405206988062329,1.0454187285899001,0.48829110990902336,1.1054060272852848,0.02915578159137823,1.120850368596002,0.013054262827494433 +35051,0.5567733833500639,0.01983251201511549,0.13316941704935276,0.4243202180719499,0.057337459006335585,0.025467601972437102,0.03562043841928065,0.23918064518113694,0.7608193548188631,0.4305602613330225,0.44417039774335,1.96686935991927,0.010098041051706573,1.576107703070475,0.08405206988062329,1.1390824713997683,0.48829110990902336,1.962309846857393,0.02915578159137823,1.951758092232441,0.013054262827494433 +35053,0.48871298393996887,0.010500353647417221,0.08506585826828444,0.4053017661963678,0.029595005271364952,0.013472638768742837,0.021485726781318815,0.17406097456730046,0.8259390254326995,0.3479069731833766,0.4552335316452358,1.0411405847638244,0.010098041051706573,1.0132367381748795,0.08405206988062329,1.0013612039199904,0.48829110990902336,1.017119516100824,0.02915578159137823,1.0275980518752217,0.013054262827494433 +35055,0.519908655488909,0.012774692246116753,0.101038050859823,0.41968016006944786,0.03571357329286952,0.01628236640715519,0.02457103206736144,0.1943380818786511,0.8056619181213489,0.3534665701579834,0.45591535390848403,1.2672673090810669,0.010098041051706573,1.2041771838836128,0.08405206988062329,1.064820176755041,0.48829110990902336,1.225158629534867,0.02915578159137823,1.244321021289671,0.013054262827494433 +35057,0.5028191326466931,0.010942712034135937,0.09062091276033524,0.4129392393689907,0.030399809128992636,0.013931370438059209,0.02176272007896099,0.18022566540643195,0.8197743345935681,0.33546129919691814,0.4582716417377998,1.085012414838595,0.010098041051706573,1.0796706998091357,0.08405206988062329,1.029688483109366,0.48829110990902336,1.046132897892298,0.02915578159137823,1.0668764819786056,0.013054262827494433 +35059,0.513465726834177,0.014135511034135014,0.10235526366624577,0.41241820812946983,0.04014297031400547,0.018005480119513247,0.027529609661172294,0.19934195861002665,0.8006580413899733,0.3921925348646591,0.4485338274340731,1.4006659898939575,0.010098041051706573,1.2164724760251775,0.08405206988062329,1.0515530593910563,0.48829110990902336,1.376777030512866,0.02915578159137823,1.3807519759002604,0.013054262827494433 +35061,0.48766010874327403,0.009700449023109743,0.08219539971132736,0.4068739554320772,0.02762505068427384,0.012507216280899751,0.01989182393472436,0.16855059135993153,0.8314494086400684,0.3360899853433869,0.45274907995082,0.9616357292825247,0.010098041051706573,0.9802874734017091,0.08405206988062329,0.9985221120573704,0.48829110990902336,0.9487508697510436,0.02915578159137823,0.955680341566624,0.013054262827494433 +36001,0.4937918045048723,0.010955593111027616,0.08891146324860746,0.40668866436419177,0.03216751373095945,0.014297510742995453,0.022186664523549247,0.18005860453224706,0.8199413954677529,0.3617926480527611,0.4444704947536835,1.0847873862018376,0.010098041051706573,1.055917773483515,0.08405206988062329,1.0113342536168552,0.48829110990902336,1.1007938132066815,0.02915578159137823,1.0920847809941279,0.013054262827494433 +36003,0.4923272852732295,0.011409840429665525,0.089269597575460935,0.4053404416873473,0.03278645496675338,0.014674711701700257,0.023175316036634745,0.18132165379767345,0.8186783462023266,0.36727459131916096,0.4475845807843798,1.1309219349308843,0.010098041051706573,1.0610302426510065,0.08405206988062329,1.008996856296618,0.48829110990902336,1.1241859029306154,0.02915578159137823,1.1242675459419342,0.013054262827494433 +36005,0.4698783626867775,0.008346872721051089,0.07306674705694799,0.39804000323630256,0.024059882920215866,0.010789665493014744,0.017763901009025907,0.15550140814986735,0.8444985918501327,0.3292863565072039,0.44845045708634473,0.8262929358697078,0.010098041051706573,0.8714367218318524,0.08405206988062329,0.9622776288077316,0.48829110990902336,0.8260488027873119,0.02915578159137823,0.8266050147251476,0.013054262827494433 +36007,0.5001429354378537,0.012243831755198487,0.09467424210580234,0.4071271604239832,0.0362590691389702,0.016021288905456024,0.02448066520119801,0.18929437046415362,0.8107056295358464,0.3829876884406342,0.4418560455606624,1.2135304124965258,0.010098041051706573,1.1241611917510652,0.08405206988062329,1.0242053358022964,0.48829110990902336,1.236092860543833,0.02915578159137823,1.2219135119957505,0.013054262827494433 +36009,0.5025034129341731,0.011710256121473559,0.09286511247322973,0.41106740226165206,0.03387024320848471,0.015114593946727765,0.023303834004024124,0.18480493879828608,0.8151950612017139,0.36472516218885215,0.4462499384398121,1.16063850647094,0.010098041051706573,1.1049009606839526,0.08405206988062329,1.028690043216748,0.48829110990902336,1.160987877033227,0.02915578159137823,1.158760607345667,0.013054262827494433 +36011,0.5025305442945376,0.011548452612834607,0.09327400689510032,0.4108474906430526,0.03385251268059346,0.015057824688377708,0.022980598381430836,0.18560863206044567,0.8143913679395544,0.3629361899147889,0.44480670697776203,1.1438682746653042,0.010098041051706573,1.106798842372596,0.08405206988062329,1.0291113550919753,0.48829110990902336,1.1587700713250624,0.02915578159137823,1.15059403831953,0.013054262827494433 +36013,0.5030843914920653,0.01230837418207197,0.09535920041092807,0.4096247656983416,0.036112279545021164,0.016020967527820416,0.024465824005327146,0.18954911347598843,0.8104508865240115,0.3786973819977913,0.4436432075091544,1.2203789074735272,0.010098041051706573,1.1323438967398345,0.08405206988062329,1.0306553105368736,0.48829110990902336,1.2331214907147179,0.02915578159137823,1.2235528372888171,0.013054262827494433 +36015,0.5034453193863258,0.01202189925750087,0.09470513539769831,0.4103685907252792,0.035402474257080235,0.01569143743736336,0.023879255193304715,0.18811404486417524,0.8118859551358247,0.3738178939126531,0.4432299653243922,1.190789907356376,0.010098041051706573,1.123609277275675,0.08405206988062329,1.0308249262696667,0.48829110990902336,1.2089454046850068,0.02915578159137823,1.1983700572139875,0.013054262827494433 +36017,0.5088663378214429,0.012278112598198158,0.09689131373459926,0.4133706483591629,0.03579277059394416,0.01592893376409152,0.024128364730831242,0.19040621580395764,0.8095937841960423,0.36941155212309595,0.44503215313504013,1.2166892979939097,0.010098041051706573,1.1503404551326195,0.08405206988062329,1.0417975169485179,0.48829110990902336,1.2243111300037848,0.02915578159137823,1.2196154092249345,0.013054262827494433 +36019,0.49095760697683344,0.010244084978295952,0.08601282069202082,0.40601564136733015,0.029593973306879615,0.013277909492708198,0.02086551839246547,0.17519398715840542,0.8248060128415946,0.3440646762747657,0.4486693745047586,1.0156720220531201,0.010098041051706573,1.0230322562808354,0.08405206988062329,1.0051836040321513,0.48829110990902336,1.0156691533697209,0.02915578159137823,1.0167885425345835,0.013054262827494433 +36021,0.5193398166727696,0.01338899919609024,0.10371740516409678,0.41666406796658906,0.03911941240864501,0.01739587284468345,0.025780806258740033,0.1997100970008005,0.8002899029991994,0.37717307280057893,0.44468645548569463,1.3275269085436199,0.010098041051706573,1.2319897309300578,0.08405206988062329,1.0636789572347132,0.48829110990902336,1.337535389470177,0.02915578159137823,1.3314222945293874,0.013054262827494433 +36023,0.484287063948049,0.01020782052085635,0.08350471784032762,0.4019232707992392,0.029457287553683112,0.013177154372592821,0.021078036728132337,0.17242814036694037,0.8275718596330597,0.3527619554383676,0.44733088029842216,1.0110107750107336,0.010098041051706573,0.9941185696618289,0.08405206988062329,0.9925036813396827,0.48829110990902336,1.0097394270863789,0.02915578159137823,1.0096302189462463,0.013054262827494433 +36025,0.5210050906692061,0.014101587547491847,0.10585812524575766,0.41634716756536355,0.040829679152271,0.018197578482199564,0.027066122385443554,0.20318059677648825,0.7968194032235117,0.38570189163544893,0.44569486853749596,1.398399738522396,0.010098041051706573,1.2583870878783046,0.08405206988062329,1.0670989569135756,0.48829110990902336,1.3984721067124006,0.02915578159137823,1.3948865295101363,0.013054262827494433 +36027,0.49411795884511694,0.010413873818437225,0.08714959487992037,0.40857753102793704,0.030019958028726396,0.013463432054974064,0.02107568371483031,0.17637406882278028,0.8236259311772197,0.3444646882190283,0.4484827074738337,1.031929347668684,0.010098041051706573,1.0356981820453632,0.08405206988062329,1.011976887664609,0.48829110990902336,1.0301342998538372,0.02915578159137823,1.031660935358687,0.013054262827494433 +36029,0.5007986376090432,0.011920689971825911,0.09379750561243541,0.40881029441450834,0.035190181098176135,0.01558135806063243,0.023803359427531024,0.1872958482080776,0.8127041517919225,0.37517182219727085,0.442775728182882,1.1807889539524172,0.010098041051706573,1.1129200039303475,0.08405206988062329,1.0253780225686246,0.48829110990902336,1.2007357092195965,0.02915578159137823,1.1889394319941342,0.013054262827494433 +36031,0.5166230827976617,0.013113366431936106,0.10213752375698737,0.4156645269442557,0.03836338626731584,0.017067023550656906,0.02538285041567148,0.19770220719500856,0.8022977928049915,0.3756052120334604,0.4448779216655691,1.3009884093057411,0.010098041051706573,1.2137480335365853,0.08405206988062329,1.0575966442290334,0.48829110990902336,1.3121597005289098,0.02915578159137823,1.3046541415534842,0.013054262827494433 +36033,0.4942574469099942,0.01042028747587978,0.0873444147975967,0.4083163302924552,0.02993172407186534,0.013483317020251186,0.02108271213924137,0.17671845987077742,0.8232815401292226,0.3426861825249634,0.450469107221424,1.0328030405640805,0.010098041051706573,1.0385475723407631,0.08405206988062329,1.011899861172331,0.48829110990902336,1.0277492548912628,0.02915578159137823,1.031666310430417,0.013054262827494433 +36035,0.5071560587222977,0.012118068577772938,0.09628003486999981,0.4123704706224319,0.03581898574576704,0.015871991485714963,0.02389416111542187,0.1898430142243842,0.8101569857756158,0.3720292145108891,0.4431167202323884,1.1999528398152741,0.010098041051706573,1.1414067283350446,0.08405206988062329,1.0384385419736324,0.48829110990902336,1.2238331652958543,0.02915578159137823,1.2108831981549812,0.013054262827494433 +36037,0.5026915264149789,0.0117408544687323,0.09381024407582642,0.4103038176151712,0.034523229393134194,0.015322099397949695,0.023355982450040464,0.18661592476970607,0.8133840752302939,0.36801129485634015,0.44381999214120094,1.1626703727391752,0.010098041051706573,1.1126262448144568,0.08405206988062329,1.0294092779581647,0.48829110990902336,1.1802335458081747,0.02915578159137823,1.170436071834199,0.013054262827494433 +36039,0.5138824192942422,0.012773493571542765,0.10000731157433729,0.4146127969816451,0.03704114098733194,0.016524776861582484,0.024856840965849104,0.1946112725780456,0.8053887274219544,0.37038432894777473,0.44611954224719896,1.2674602990740398,0.010098041051706573,1.18883057365228,0.08405206988062329,1.0515635287296825,0.48829110990902336,1.2688603411215147,0.02915578159137823,1.2669985720154733,0.013054262827494433 +36041,0.554146241518516,0.016650423355736847,0.12312128733449518,0.4325641379329926,0.04739904871052381,0.021322619460911088,0.03004698418617804,0.2221819406319681,0.7778180593680319,0.3849785015791003,0.4498533207097238,1.6503613002479718,0.010098041051706573,1.4638150253265176,0.08405206988062329,1.1342964593706066,0.48829110990902336,1.624439091322401,0.02915578159137823,1.6344974581891343,0.013054262827494433 +36043,0.5091886439124036,0.012760407341824646,0.09863868934983692,0.41222856978576333,0.03783377455128284,0.016729258121866472,0.025060274800668643,0.19371737867509448,0.8062826213249055,0.38355917744506596,0.44217787731410024,1.2641424591998929,0.010098041051706573,1.1697486288411931,0.08405206988062329,1.0424695662788013,0.48829110990902336,1.291992592582841,0.02915578159137823,1.275585752575111,0.013054262827494433 +36045,0.47455868322999717,0.008982268978629854,0.0764307089826661,0.399339323298785,0.025920557734674866,0.011630047737851191,0.01892762538342714,0.16105639130329344,0.8389436086967066,0.3391379993682049,0.448680458842645,0.8896607564810097,0.010098041051706573,0.9115963598435771,0.08405206988062329,0.9714957838213313,0.48829110990902336,0.8895820787320324,0.02915578159137823,0.8893424228412539,0.013054262827494433 +36047,0.4790492534835875,0.009232328725219889,0.07860205699245114,0.4014904582328823,0.026648198735309797,0.011957285003156924,0.01927219102854983,0.16407928082731912,0.8359207191726808,0.3390267348584664,0.4487089398396411,0.9143696019707868,0.010098041051706573,0.9370214448257059,0.08405206988062329,0.9807171846775715,0.48829110990902336,0.9147212988412587,0.02915578159137823,0.9147939790187845,0.013054262827494433 +36049,0.49963873748419785,0.011433114263881524,0.09130173855380758,0.4100021937943163,0.03301977733848856,0.014753973199971529,0.022882761896025165,0.18273550808637049,0.8172644919136295,0.3616555156726698,0.44682231042103315,1.1327978515562853,0.010098041051706573,1.0862874517511414,0.08405206988062329,1.0230819579555233,0.48829110990902336,1.1319853511440523,0.02915578159137823,1.1306646764302148,0.013054262827494433 +36051,0.49333057258616175,0.010628843167991158,0.0878408040301018,0.4072367050617112,0.030867548670178088,0.013786057347630306,0.021545072936129044,0.17805668026941535,0.8219433197305847,0.3514033029524663,0.44661976546745874,1.0533168525477468,0.010098041051706573,1.043933140971098,0.08405206988062329,1.0106575609291522,0.48829110990902336,1.0585195160974057,0.02915578159137823,1.0561485452380175,0.013054262827494433 +36053,0.49266186310637156,0.010480221578501824,0.08666988480084821,0.4078385809249526,0.03007996552191372,0.013520471404059129,0.02127264633885213,0.17592164381137645,0.8240783561886236,0.34706363797565976,0.4494842719885851,1.0387150148227695,0.010098041051706573,1.0309701198438113,0.08405206988062329,1.0092764029330847,0.48829110990902336,1.032183364737921,0.02915578159137823,1.0351437885544938,0.013054262827494433 +36055,0.4918243881618705,0.01077702415736734,0.08771102501901301,0.4061631688266711,0.03165593493279281,0.014061063306698977,0.021912341918718308,0.17833809613797624,0.8216619038620238,0.36091169754236474,0.44418411070629704,1.0668724559990812,0.010098041051706573,1.0409518781134413,0.08405206988062329,1.0075061625704556,0.48829110990902336,1.083240601968159,0.02915578159137823,1.0741205687832238,0.013054262827494433 +36057,0.5061966292638249,0.012875536705631454,0.0980323766238436,0.4105563856585488,0.03888862718190543,0.017034640246850724,0.025435840464518078,0.19366461757442888,0.8063353824255711,0.39669166984621357,0.4380365541619532,1.2740383928694676,0.010098041051706573,1.1600851451104282,0.08405206988062329,1.0363978885504292,0.48829110990902336,1.3246117234928705,0.02915578159137823,1.2952125142522921,0.013054262827494433 +36059,0.502238741104154,0.011777864297360299,0.09370059177908456,0.41004190032705234,0.034687235152237275,0.015376815853153014,0.023450728375646775,0.18656583833634008,0.8134341616636599,0.37019227406822003,0.44329897686184516,1.1664809935905207,0.010098041051706573,1.1118599752549774,0.08405206988062329,1.0284600500987993,0.48829110990902336,1.184737814484242,0.02915578159137823,1.1745898786610014,0.013054262827494433 +36061,0.4896935501506481,0.010138891867638822,0.08580643323988735,0.40525073879719004,0.02964804194354366,0.0132166992341252,0.020704564853916738,0.17522475681676852,0.8247752431832315,0.3455223673108194,0.44578658041879055,1.0051690935720925,0.010098041051706573,1.021219587348884,0.08405206988062329,1.002679020822709,0.48829110990902336,1.0160983650743503,0.02915578159137823,1.013142552686518,0.013054262827494433 +36063,0.5046290157700086,0.012107069281327877,0.09547251273710912,0.41055624347287645,0.03565728378359188,0.015813948154272894,0.02399201968767851,0.1891934663951666,0.8108065336048333,0.37348219672165683,0.44349839573450267,1.1999039149422845,0.010098041051706573,1.1333781757826358,0.08405206988062329,1.0331266455467176,0.48829110990902336,1.2175520742633967,0.02915578159137823,1.20718536252951,0.013054262827494433 +36065,0.5039631398572406,0.012236160801071354,0.09546874595310546,0.4103063471897757,0.03623127623982048,0.01602465646874806,0.024279872540951177,0.1894359694245679,0.8105640305754321,0.3795092925764144,0.44228793826301765,1.211945807111161,0.010098041051706573,1.131749223232505,0.08405206988062329,1.0318888521833511,0.48829110990902336,1.2363300795460621,0.02915578159137823,1.2223079578574185,0.013054262827494433 +36067,0.4931276232688775,0.010817086398672446,0.08792765671127115,0.4072631473745779,0.03168439437410536,0.014085059005516572,0.021935673217751254,0.17830608662400696,0.8216939133759931,0.3603461704677028,0.444542472209216,1.0710181425742982,0.010098041051706573,1.0437287533500597,0.08405206988062329,1.0099997477663174,0.48829110990902336,1.08476090216346,0.02915578159137823,1.076786464817285,0.013054262827494433 +36069,0.5043925583268822,0.011552767029625072,0.09360126159833465,0.4119496639818084,0.03356148645676133,0.014981691216381463,0.022904316962856653,0.18557224933852887,0.8144277506614711,0.35855805662942536,0.44639534174634976,1.1441110171758124,0.010098041051706573,1.1108440870852576,0.08405206988062329,1.0327258917613495,0.48829110990902336,1.1500309589882947,0.02915578159137823,1.147235087921283,0.013054262827494433 +36071,0.4808307644637009,0.00887913582287355,0.07791501409207713,0.40405326428609056,0.025408908110141973,0.01145142844877958,0.01846623901608496,0.1620424894795997,0.8379575105204002,0.32611055014524737,0.4506855784254948,0.8792593190922775,0.010098041051706573,0.9281474193611481,0.08405206988062329,0.9847105290102252,0.48829110990902336,0.8721232542067823,0.02915578159137823,0.8770628198983252,0.013054262827494433 +36073,0.4978579479544042,0.010866808489878785,0.08976534869028834,0.40963387928550143,0.031583955710428636,0.014105877242595249,0.021827126662390877,0.1803031347779335,0.8196968652220665,0.3518501980023578,0.4466152806165967,1.076058896197215,0.010098041051706573,1.0652239908862662,0.08405206988062329,1.0195375339520973,0.48829110990902336,1.08236321586752,0.02915578159137823,1.080358095398339,0.013054262827494433 +36075,0.4882359607147778,0.009888259451690406,0.0835909512028754,0.40606138972549255,0.02834293152537862,0.012755457887164782,0.020253033875698108,0.17121014822525193,0.8287898517747481,0.33906698174291944,0.4500401758280855,0.9790464226844124,0.010098041051706573,0.9951555765868747,0.08405206988062329,1.0000801887596036,0.48829110990902336,0.9729934014951067,0.02915578159137823,0.9768059647676481,0.013054262827494433 +36077,0.49954545969313296,0.01194351201489828,0.09379091863670566,0.4076430155504198,0.03497258491526595,0.015544926625927068,0.02390875901911928,0.18775251944902216,0.8122474805509778,0.3728781573270486,0.4444889236409152,1.183210565777446,0.010098041051706573,1.1134714766172036,0.08405206988062329,1.023504852486143,0.48829110990902336,1.196280591306315,0.02915578159137823,1.1878317438003685,0.013054262827494433 +36079,0.4970988231169482,0.009631915402120531,0.08557414314246162,0.4120250563616018,0.02729713572345211,0.012486095047545666,0.01937625871195135,0.17214714491957128,0.8278528550804287,0.31898812796768,0.45741411018513345,0.9547662163942587,0.010098041051706573,1.0203823669013001,0.08405206988062329,1.0181454467601636,0.48829110990902336,0.9371463521127481,0.02915578159137823,0.9500324389793919,0.013054262827494433 +36081,0.49134250746343155,0.010173033548299824,0.08550880115507398,0.40744797888753276,0.029633497681215967,0.013216344152630524,0.020704566353964313,0.17403094553433893,0.825969054465661,0.3465549426599294,0.44599339216740785,1.0083004728790896,0.010098041051706573,1.0168933351199376,0.08405206988062329,1.005693167851145,0.48829110990902336,1.0162199996612533,0.02915578159137823,1.0136021090754972,0.013054262827494433 +36083,0.49443747393573195,0.0107802320262789,0.0886402759072917,0.4076775431562528,0.03155772508387995,0.01404716200455654,0.02180302382921756,0.1792749954846937,0.8207250045153063,0.3560201585663607,0.4451259388064062,1.0672088400104376,0.010098041051706573,1.052466483057843,0.08405206988062329,1.0127751830073939,0.48829110990902336,1.0805970730192072,0.02915578159137823,1.0738492375703346,0.013054262827494433 +36085,0.4920240489209369,0.01007105208663847,0.08511817350660403,0.40830062498641767,0.028863810603934666,0.013000809716956135,0.020468617557872222,0.17299596166747863,0.8270040383325213,0.33910279573486407,0.45041903494141855,0.9972549423951136,0.010098041051706573,1.0132376113759627,0.08405206988062329,1.0075258145996424,0.48829110990902336,0.9908440243763729,0.02915578159137823,0.9951415423121699,0.013054262827494433 +36087,0.4884307253254687,0.01030174246620645,0.0841950257213231,0.4060123246173393,0.029653339227790745,0.013272175802303707,0.021091511921863274,0.17237864318469984,0.8276213568153001,0.35219823230341724,0.4475777820618997,1.0202702448199643,0.010098041051706573,1.001080738758203,0.08405206988062329,0.9997812709233639,0.48829110990902336,1.0162628114039955,0.02915578159137823,1.016938593012453,0.013054262827494433 +36089,0.48888120750896125,0.010663618567383772,0.08617214578867077,0.40451153908325554,0.030802518554021496,0.013773466270046057,0.02181228978245867,0.17626397673936203,0.823736023260638,0.3574533078190002,0.447153898986868,1.0561622521707281,0.010098041051706573,1.0246847206802738,0.08405206988062329,1.001780847395501,0.48829110990902336,1.0566788408387355,0.02915578159137823,1.0549350258386534,0.013054262827494433 +36091,0.4992012494054151,0.010523342445108493,0.08873177273890226,0.4118600004434258,0.03021425922959481,0.013598944944350839,0.021080360791649776,0.177747497316139,0.822252502683861,0.3405122911102182,0.4500836787363861,1.0421682025920727,0.010098041051706573,1.0546370372674856,0.08405206988062329,1.0223575429422436,0.48829110990902336,1.0374231663180686,0.02915578159137823,1.0419421749064264,0.013054262827494433 +36093,0.49949678251426943,0.011699462929742858,0.09271612646966214,0.40867266045249756,0.034802129921323435,0.015383802651787574,0.023422499081680537,0.18561906645917875,0.8143809335408212,0.3753622077030054,0.4420362399245525,1.1579632786566925,0.010098041051706573,1.0983690406010471,0.08405206988062329,1.0227903459553302,0.48829110990902336,1.187802425300514,0.02915578159137823,1.1708419731253379,0.013054262827494433 +36095,0.5063598727694012,0.012071559750908022,0.09541488965742989,0.41217818744281437,0.03472579974223616,0.015521959389474607,0.023839882265721066,0.188432960012379,0.811567039987621,0.3639452905821402,0.44698637625890636,1.1971357525698645,0.010098041051706573,1.1348583230804525,0.08405206988062329,1.0367573355653361,0.48829110990902336,1.1901701119488042,0.02915578159137823,1.1924871880918357,0.013054262827494433 +36097,0.5107659136512404,0.01217351058342663,0.09720678771854345,0.41425503423742943,0.03500770715460794,0.015676227049882113,0.023833835144564698,0.1903157300056595,0.8096842699943405,0.3601364470140779,0.4477935952974489,1.207224230592293,0.010098041051706573,1.1565272978685845,0.08405206988062329,1.0453568392676442,0.48829110990902336,1.199749389988074,0.02915578159137823,1.202937639549333,0.013054262827494433 +36099,0.5029914376469069,0.011790761382423891,0.09406726421350887,0.41049397308391294,0.03437065676092804,0.015311014860243818,0.023441276530637177,0.18701563719170664,0.8129843628082933,0.3653838245249203,0.44546762567682763,1.169509171368122,0.010098041051706573,1.1173240824336523,0.08405206988062329,1.0300118547329433,0.48829110990902336,1.1773346293873435,0.02915578159137823,1.1719855107367723,0.013054262827494433 +36101,0.5053678493016767,0.011902601968665792,0.09452326790249668,0.41226723592252024,0.03466405857053205,0.015435992720967795,0.023552352974398647,0.18703854634423236,0.8129614536557677,0.3667251391084888,0.4453025224833294,1.1794684846525023,0.010098041051706573,1.1226336798978922,0.08405206988062329,1.0345338352470523,0.48829110990902336,1.1865399462092667,0.02915578159137823,1.1818202184839393,0.013054262827494433 +36103,0.4938746863753511,0.010317354822160302,0.08662268163306748,0.40890824696076133,0.029746176472970495,0.01335325029241135,0.020890633002232838,0.1753940503993216,0.8246059496006783,0.3433993950796271,0.4489064436414229,1.0218590917915806,0.010098041051706573,1.0287864683530832,0.08405206988062329,1.0114656695920408,0.48829110990902336,1.0210621849601806,0.02915578159137823,1.0224477167124353,0.013054262827494433 +36105,0.5038859042145167,0.011327151783058972,0.09267772595217158,0.4122731258575302,0.03259860620985257,0.01463266860484547,0.022479596448954687,0.18392601415719773,0.8160739858428023,0.3517415417235832,0.4488740564749332,1.1221187453947445,0.010098041051706573,1.1005071301597185,0.08405206988062329,1.0314667284052688,0.48829110990902336,1.117912543055428,0.02915578159137823,1.120872446070905,0.013054262827494433 +36107,0.506248897845916,0.011777640015839131,0.09438169868030272,0.41279430124159416,0.03384518439106218,0.01515890689879236,0.02326452475442983,0.18643339093061911,0.8135666090693809,0.3585990172279619,0.4478896236356601,1.1674518533744518,0.010098041051706573,1.1238811149588863,0.08405206988062329,1.0364425371726393,0.48829110990902336,1.1602453804307724,0.02915578159137823,1.1628530844418818,0.013054262827494433 +36109,0.4653313938099417,0.00865003629304563,0.0737705093803253,0.3926518142077426,0.0252305198858077,0.011264306396870993,0.018588980687983883,0.1585332740529771,0.8414667259470229,0.34201363251717926,0.4464555802992876,0.8563342120660866,0.010098041051706573,0.8798911378797328,0.08405206988062329,0.9539598708233377,0.48829110990902336,0.8657397103879361,0.02915578159137823,0.8611958243477525,0.013054262827494433 +36111,0.5042674343041914,0.01133073096446505,0.09301007451495219,0.4125895785770991,0.0327801259169028,0.014665769061663638,0.022469686110307027,0.18444592727525871,0.8155540727247412,0.352436293464458,0.44739819178367946,1.123352693225648,0.010098041051706573,1.1046953319217088,0.08405206988062329,1.032539944099177,0.48829110990902336,1.1239850527718336,0.02915578159137823,1.124557776959422,0.013054262827494433 +36113,0.5134595098054657,0.012482389681944837,0.09898373476380606,0.4152444692395989,0.03610146860139057,0.016125194916964188,0.02431036808856464,0.1927780728052111,0.8072219271947889,0.3647212209918681,0.44666312872222247,1.237677780799844,0.010098041051706573,1.1765990560438033,0.08405206988062329,1.0509599421364537,0.48829110990902336,1.2372167268848662,0.02915578159137823,1.2370613855549975,0.013054262827494433 +36115,0.5052181947339895,0.011558767150535611,0.09371695095817549,0.412729894039918,0.03329767998864417,0.014909856617824041,0.02287876262378397,0.18549797282641392,0.8145020271735861,0.35530050485215253,0.4477746384405428,1.1464270861621344,0.010098041051706573,1.1145663593293853,0.08405206988062329,1.034478819619277,0.48829110990902336,1.141651654948805,0.02915578159137823,1.1438677348595356,0.013054262827494433 +36117,0.500290815447749,0.010785351935548429,0.08989706184961119,0.41171164313476455,0.03087934573774805,0.013919168881744635,0.021558164976296403,0.17968961067005665,0.8203103893299434,0.3434967183844797,0.4507598379822319,1.068209491861274,0.010098041051706573,1.0680501931681845,0.08405206988062329,1.0244865387229414,0.48829110990902336,1.0599673430851826,0.02915578159137823,1.0654506421817755,0.013054262827494433 +36119,0.4976156611986803,0.011161944024635783,0.09042247922884077,0.4089734835591915,0.032803587087140554,0.014554492713300775,0.022430853558242845,0.18171148193171172,0.8182885180682883,0.36278132790543594,0.4436860113693582,1.1049873016011769,0.010098041051706573,1.0725364963465625,0.08405206988062329,1.0188624576766325,0.48829110990902336,1.1218212150289752,0.02915578159137823,1.1124759203369923,0.013054262827494433 +36121,0.4988861798240495,0.010469598405036046,0.08896804204011996,0.4110712077080229,0.03018191360859572,0.013560245041521056,0.020985945950093336,0.1783333466393032,0.8216666533606968,0.33924444009889804,0.44928380676496066,1.0380904858379447,0.010098041051706573,1.0576600776898846,0.08405206988062329,1.0215301013290217,0.48829110990902336,1.0360456252951913,0.02915578159137823,1.0391644016478996,0.013054262827494433 +36123,0.5020566178881113,0.012306575367871752,0.09466967969453643,0.4089632270342652,0.03616470673722405,0.016023804627705182,0.024512325760467128,0.1885637522173537,0.8114362477826463,0.3820093915381778,0.4430785169678151,1.2190671574116898,0.010098041051706573,1.1235277612646284,0.08405206988062329,1.028003142412194,0.48829110990902336,1.2345025734681632,0.02915578159137823,1.2226138433793576,0.013054262827494433 +37001,0.49315855035394973,0.011044529859120314,0.08875049428648232,0.40637333453939783,0.03258859455154816,0.014428330898948766,0.02239549502121262,0.17996340978532022,0.8200365902146798,0.367193386510657,0.4427417351836467,1.0930572851116889,0.010098041051706573,1.0525140412950165,0.08405206988062329,1.0098524460729292,0.48829110990902336,1.1130396698641214,0.02915578159137823,1.101554632987287,0.013054262827494433 +37003,0.5028954742779314,0.011266891431197273,0.09179884385502643,0.41262191016283134,0.032213543247004664,0.014526590597372612,0.022404042206533137,0.18254060446026737,0.8174593955397327,0.3509144766341283,0.4509466868014697,1.1165625457881365,0.010098041051706573,1.0909651464704737,0.08405206988062329,1.0297946138946616,0.48829110990902336,1.1059698693105005,0.02915578159137823,1.1112132159506425,0.013054262827494433 +37005,0.5313140189119923,0.014924334447292572,0.1112315413103097,0.42126586528115634,0.04284809672795617,0.019153323406514003,0.02808947988583878,0.20935179075095,0.79064820924905,0.38521534650338174,0.4470052317170356,1.4818103954795707,0.010098041051706573,1.3238315681277997,0.08405206988062329,1.088412572073385,0.48829110990902336,1.4676743932334766,0.02915578159137823,1.4709818658200593,0.013054262827494433 +37007,0.49942505999860864,0.011043795906920287,0.0906091695496405,0.4103076772372451,0.03209431952599009,0.01430785695805296,0.022113019132342007,0.18142695833063108,0.818573041669369,0.3542060884732766,0.4458065218197385,1.093854533716197,0.010098041051706573,1.0755615951491704,0.08405206988062329,1.0226693706911187,0.48829110990902336,1.0991431367724844,0.02915578159137823,1.0971783494306369,0.013054262827494433 +37009,0.524637115046495,0.014025817559393354,0.10672785652386439,0.41996325283523755,0.040423866395606405,0.018047127611097585,0.026734321985874637,0.20343176924188033,0.7965682307581197,0.37875647194851714,0.4464473396601938,1.3909122156118423,0.010098041051706573,1.267645984500162,0.08405206988062329,1.0749835851136629,0.48829110990902336,1.3843643745918173,0.02915578159137823,1.385863139193305,0.013054262827494433 +37011,0.5120883355082321,0.012402215696283843,0.09895991486846606,0.4143254541615178,0.0360033508133209,0.016068879558473532,0.024218899038141575,0.1932477426384871,0.8067522573615129,0.363817520065324,0.4463162232257615,1.2302053564526312,0.010098041051706573,1.175152996165898,0.08405206988062329,1.0483945558876155,0.48829110990902336,1.2331951543539434,0.02915578159137823,1.2323496893307717,0.013054262827494433 +37013,0.5187965877379894,0.013132497574456892,0.10168648760631377,0.41862472671349693,0.03726671027293948,0.016842619227504275,0.025313384638314673,0.19600454206855544,0.8039954579314446,0.36648635576066024,0.45194810875845476,1.3016364740530277,0.010098041051706573,1.208132530697266,0.08405206988062329,1.0625981887640217,0.48829110990902336,1.278642355318238,0.02915578159137823,1.2875893827036455,0.013054262827494433 +37015,0.5120123470531504,0.012720807222350004,0.09922121528671103,0.41390679719353807,0.03696004039313554,0.016478137092029672,0.024844727467147384,0.19378676287353516,0.8062132371264649,0.37250138779630226,0.44583655528390875,1.262075059030726,0.010098041051706573,1.1799060685743343,0.08405206988062329,1.048382420349109,0.48829110990902336,1.265844536740147,0.02915578159137823,1.2619317017445846,0.013054262827494433 +37017,0.5044961560015542,0.011740352767349381,0.09353742131291498,0.4122872151390303,0.03305176993613153,0.015092846728682024,0.023271441472218497,0.1854075996421008,0.8145924003578993,0.3533534437042255,0.45664261725913896,1.1639999260636722,0.010098041051706573,1.1120323244873758,0.08405206988062329,1.0333341253360913,0.48829110990902336,1.1369459126809398,0.02915578159137823,1.1493382291506948,0.013054262827494433 +37019,0.5354405674925824,0.014617324131840328,0.11090085852529102,0.42532179214741883,0.04078420379507994,0.01868202886898302,0.02729962019929098,0.20712076233713345,0.7928792376628666,0.36775372469978734,0.4580702117626422,1.4489852215915198,0.010098041051706573,1.3194844326146864,0.08405206988062329,1.0966566014595558,0.48829110990902336,1.4036585300873514,0.02915578159137823,1.4241250312528149,0.013054262827494433 +37021,0.5066180237914009,0.012071509836091149,0.09588211685179848,0.4125530555609245,0.03527090896492874,0.015685055761736944,0.023827635948975974,0.18925919005850014,0.8107408099414999,0.36785701153684064,0.4447023403148815,1.1969960959027608,0.010098041051706573,1.137738076890757,0.08405206988062329,1.0376173584258015,0.48829110990902336,1.2068667962092106,0.02915578159137823,1.2013064199035912,0.013054262827494433 +37023,0.5041072260926002,0.01183230767919557,0.09389856375656738,0.4114677850774233,0.03394182592784756,0.015207198863735777,0.023471807319465156,0.18626704577196246,0.8137329542280376,0.3614733236585168,0.44803714732562566,1.1734734549816346,0.010098041051706573,1.1165528036671004,0.08405206988062329,1.0323778561457178,0.48829110990902336,1.1637603501150755,0.02915578159137823,1.1667406700084124,0.013054262827494433 +37025,0.4821190459998377,0.008913693053744988,0.07817027702968413,0.40503425328337317,0.02549891073121862,0.01153163047143109,0.018488572745055977,0.16213895235682194,0.837861047643178,0.32619701119308747,0.45224012088142956,0.8835981110691018,0.010098041051706573,0.9311013885704962,0.08405206988062329,0.9869404492863396,0.48829110990902336,0.8751801169162636,0.02915578159137823,0.8814727963837967,0.013054262827494433 +37027,0.5036975359220988,0.011336156486809905,0.09236550056913961,0.41252380511519327,0.032203063153793246,0.014608560683657975,0.02250588037135671,0.18337493035388752,0.8166250696461125,0.3486481744305369,0.4536388545987499,1.1240726235904746,0.010098041051706573,1.0987505395036465,0.08405206988062329,1.031227319027229,0.48829110990902336,1.1055937370172584,0.02915578159137823,1.1149252947241886,0.013054262827494433 +37029,0.49509861725749293,0.010094543969609269,0.08607124787639184,0.41010760959295073,0.028836851981396412,0.013086501811886694,0.02038895609429516,0.1738466739276461,0.8261533260723539,0.3350346682879448,0.4538117343851964,1.000190152819409,0.010098041051706573,1.023004783192559,0.08405206988062329,1.0138248600773698,0.48829110990902336,0.9919120380484376,0.02915578159137823,0.9991020146218346,0.013054262827494433 +37031,0.5247834046042155,0.013741464942341882,0.10590196968782288,0.42012701964396415,0.03918110940336665,0.017646153134629812,0.026185021900045617,0.20180129317864523,0.7981987068213547,0.3699752659829129,0.45037400429283303,1.3625204577576533,0.010098041051706573,1.2602671970482755,0.08405206988062329,1.0747805662114227,0.48829110990902336,1.3424826559898495,0.02915578159137823,1.3499375346348272,0.013054262827494433 +37033,0.5128574315810299,0.01201061800794197,0.09723174207474966,0.4163044168800373,0.03425397559219913,0.015499950156055067,0.02341901914322622,0.18958824828764784,0.8104117517123521,0.35229211018214,0.45250076489179747,1.190355698964503,0.010098041051706573,1.1559092620806277,0.08405206988062329,1.0498414679430517,0.48829110990902336,1.1760385999354255,0.02915578159137823,1.1834112646739934,0.013054262827494433 +37035,0.49682768993796195,0.010689240856049203,0.0882573975293216,0.4103029889469283,0.030713212168610435,0.013790422316882269,0.021514986126042916,0.17764186521154277,0.8223581347884572,0.34799589641657674,0.449006187994116,1.0588600758903945,0.010098041051706573,1.0489496503527538,0.08405206988062329,1.0174394491124503,0.48829110990902336,1.0536867999318058,0.02915578159137823,1.056451823467703,0.013054262827494433 +37037,0.5162307599368141,0.013120280831328497,0.10149147600492328,0.4162635303861174,0.03825323787573205,0.01701134791317848,0.025415534775444996,0.1966009852209227,0.8033990147790773,0.37691084395970764,0.4447034776099443,1.3014284116551385,0.010098041051706573,1.2035660709130291,0.08405206988062329,1.0569459147875653,0.48829110990902336,1.3082358144407245,0.02915578159137823,1.3035519531662834,0.013054262827494433 +37039,0.5361237264332918,0.015489769289213594,0.1142074604403712,0.4234255127983967,0.04434769690630512,0.019833983439258705,0.02889215404112681,0.2130244471741015,0.7869755528258985,0.3883082307872477,0.44723818423226425,1.5359800150256393,0.010098041051706573,1.3590301330859913,0.08405206988062329,1.0980778576461097,0.48829110990902336,1.5186646779514352,0.02915578159137823,1.523884951173811,0.013054262827494433 +37041,0.5170868828782185,0.01404998875153397,0.10408295807728175,0.4141034489616867,0.04071485999798423,0.01812711874523598,0.02717142750426904,0.2012871753735722,0.7987128246264278,0.39117700678485123,0.445221198013046,1.393997498384299,0.010098041051706573,1.2368173167126422,0.08405206988062329,1.0588791393638821,0.48829110990902336,1.394922959107439,0.02915578159137823,1.389377272067481,0.013054262827494433 +37043,0.5416701048136123,0.01623206335779632,0.11823282487564465,0.4244007727137128,0.04685514138928451,0.02084000612977448,0.029966695989954516,0.21827459892092133,0.7817254010790786,0.39629554177163556,0.44477522662092456,1.6089407908425652,0.010098041051706573,1.4046105924850598,0.08405206988062329,1.1094472952875765,0.48829110990902336,1.6031911820388243,0.02915578159137823,1.6035366558478694,0.013054262827494433 +37045,0.50108598956274,0.011260810960109344,0.09099016041172836,0.411519764491867,0.032046776148941254,0.01449011393436821,0.02247281144287392,0.1815859199957449,0.8184140800042551,0.35220045776301895,0.4521551205969568,1.1162802311716584,0.010098041051706573,1.0826092435771888,0.08405206988062329,1.0259122870046342,0.48829110990902336,1.1002619347572942,0.02915578159137823,1.1072678412912875,0.013054262827494433 +37047,0.5014426037266138,0.01130946073939786,0.09118854347387331,0.4115799313789923,0.0319711236613803,0.014525000625656374,0.022553848945718564,0.18185240503335703,0.818147594966643,0.35060460934481796,0.4543162379745173,1.1212801530947356,0.010098041051706573,1.085590087873633,0.08405206988062329,1.0266956974692607,0.48829110990902336,1.0971357960594896,0.02915578159137823,1.108092491401809,0.013054262827494433 +37049,0.49485284641138233,0.011307071108794567,0.08922002686836977,0.4072783437539469,0.03250004344026104,0.014535397172057471,0.022849360553934744,0.1802960769355647,0.8197039230644353,0.36426847851334754,0.44724239211480643,1.12032981710342,0.010098041051706573,1.0599141051916476,0.08405206988062329,1.0133587197067409,0.48829110990902336,1.1142018963315956,0.02915578159137823,1.1147556045429852,0.013054262827494433 +37051,0.46445437275422663,0.0075974573114022175,0.06893834246605189,0.3962736321766754,0.021467765222807682,0.009791058094454772,0.016357811998515798,0.1484286649240607,0.8515713350759393,0.31140530008216116,0.45608185075792623,0.7538295419086428,0.010098041051706573,0.8240322484075782,0.08405206988062329,0.9512162711863379,0.48829110990902336,0.7372246685529131,0.02915578159137823,0.7463231043226302,0.013054262827494433 +37053,0.4997902255252653,0.010085749648032254,0.08737228978630515,0.4134048805504592,0.0282812515909244,0.012973323962109304,0.02017996577950763,0.1748179242490774,0.8251820757509226,0.323686739355173,0.4587252413635226,1.0005580032511836,0.010098041051706573,1.0413817302765893,0.08405206988062329,1.023565221868814,0.48829110990902336,0.9720018012088925,0.02915578159137823,0.9896378141787634,0.013054262827494433 +37055,0.5148741526584286,0.011731434199452589,0.09696792476225849,0.41821006913248265,0.033002734716815765,0.015124776135049086,0.022785051723571974,0.1883332543721373,0.8116667456278627,0.34034692190980015,0.4582885710784026,1.1629533963339063,0.010098041051706573,1.153218969950919,0.08405206988062329,1.0543524248245464,0.48829110990902336,1.1352544802401392,0.02915578159137823,1.151894683898166,0.013054262827494433 +37057,0.4998021680751412,0.010818114511641467,0.08939677710545403,0.41206779800272864,0.030875853100172296,0.013967045718348716,0.021644793085441462,0.1788643243580607,0.8211356756419392,0.3453799353834713,0.45236145129446725,1.071972165036739,0.010098041051706573,1.0625277823581987,0.08405206988062329,1.0233669470895626,0.48829110990902336,1.0608306725793955,0.02915578159137823,1.0668776953904708,0.013054262827494433 +37059,0.5083499261286859,0.012020641046417811,0.09593472339957967,0.4138338719122438,0.03477269456499432,0.015525016553684243,0.0236463908590691,0.18871788598488817,0.8112821140151119,0.362462029729964,0.4464714842465295,1.1913126785532997,0.010098041051706573,1.1383565245931258,0.08405206988062329,1.040861001998902,0.48829110990902336,1.1907846757915608,0.02915578159137823,1.1913823010121656,0.013054262827494433 +37061,0.4923767904979129,0.010743698500565732,0.08688507304381934,0.40705452221573635,0.030552295476298404,0.01380188152256926,0.021820075007396744,0.1764605373782086,0.8235394626217913,0.3516403267669437,0.45174613911666195,1.0653660682699289,0.010098041051706573,1.0332837330204463,0.08405206988062329,1.008114817191274,0.48829110990902336,1.0490101417421198,0.02915578159137823,1.0551574347731782,0.013054262827494433 +37063,0.47155444418981673,0.008096271361435283,0.0729688912137671,0.3993615027303171,0.023415650809897885,0.010509185057178893,0.017169324690271093,0.1547411801815076,0.8452588198184924,0.32089909028904134,0.4488102911381229,0.8017270336434537,0.010098041051706573,0.871755989268823,0.08405206988062329,0.9650915962112462,0.48829110990902336,0.8041036953213161,0.02915578159137823,0.8048364742622941,0.013054262827494433 +37065,0.4981847493238949,0.010876401582294162,0.08895411037182772,0.4108194022763157,0.030923815001933495,0.014003769355652297,0.0218320645042927,0.1785564702503452,0.8214435297496547,0.34763784239617607,0.4528474043314746,1.0780342700359735,0.010098041051706573,1.0579671393435375,0.08405206988062329,1.0199593470216104,0.48829110990902336,1.062877189225231,0.02915578159137823,1.0698281316341558,0.013054262827494433 +37067,0.488116914826338,0.01004841895161146,0.08394861647381303,0.40563818639124205,0.029032373712003796,0.012996975786176262,0.02058609043529352,0.17198464942293637,0.8280153505770637,0.3458350468594103,0.44767182715075415,0.9949566665577165,0.010098041051706573,0.998683992045172,0.08405206988062329,0.9996539027971798,0.48829110990902336,0.9959806624255005,0.02915578159137823,0.9957286221794983,0.013054262827494433 +37069,0.49324025355554496,0.009848667596692794,0.08466765260995754,0.4098134487407895,0.02803827362093195,0.012741803021070145,0.019967282730268307,0.1716560073911788,0.8283439926088212,0.3311568557368324,0.4544432083563719,0.9762519989898069,0.010098041051706573,1.0080700317725784,0.08405206988062329,1.0100015706291234,0.48829110990902336,0.9626644196595353,0.02915578159137823,0.9715874820374596,0.013054262827494433 +37071,0.49400997867489027,0.01033906829010942,0.0864352544752691,0.409208255079184,0.02962807567434804,0.013346240434042833,0.020928865278880528,0.174966616478313,0.825033383521687,0.34277767624118277,0.45045923943005167,1.0239492951488762,0.010098041051706573,1.0280575940178958,0.08405206988062329,1.0116736230366103,0.48829110990902336,1.016985621582853,0.02915578159137823,1.0214644370947945,0.013054262827494433 +37073,0.5044463476301146,0.011175276736843869,0.09203089289441521,0.4131898673374613,0.03152291178292688,0.014429220561963751,0.022153548716023496,0.18243940773240938,0.8175605922675906,0.3425253280883881,0.45773755487203316,1.1075822945199527,0.010098041051706573,1.0935405430857377,0.08405206988062329,1.0325468155500124,0.48829110990902336,1.0848430735697452,0.02915578159137823,1.0980225778967536,0.013054262827494433 +37075,0.5201620411489712,0.0137438728663432,0.10387679222767444,0.4175343725264529,0.039111847626013635,0.017622761498268965,0.02642229109218494,0.19970083168357294,0.8002991683164271,0.37652151926572114,0.45057348522057317,1.3617760061277808,0.010098041051706573,1.2347438645760178,0.08405206988062329,1.0654894953355312,0.48829110990902336,1.3393913902301777,0.02915578159137823,1.3468566516739102,0.013054262827494433 +37077,0.4926213405395802,0.009757788707113989,0.08464871277507366,0.40927315129315384,0.027770999996279067,0.01262948067968062,0.019807888745595238,0.17183322322649655,0.8281667767735035,0.32807350620996967,0.4547722689630477,0.9671626549741257,0.010098041051706573,1.008115184016501,0.08405206988062329,1.0085815849602424,0.48829110990902336,0.9532758121870064,0.02915578159137823,0.9624775647886308,0.013054262827494433 +37079,0.49309278876887064,0.01049467052792333,0.08675783502916665,0.4080157620731313,0.030406798694004256,0.013570722861243225,0.021283358359642405,0.17594626610902028,0.8240537338909797,0.35047899343940475,0.4463055449477211,1.039065140701768,0.010098041051706573,1.0303747489948396,0.08405206988062329,1.0098231538858966,0.48829110990902336,1.0421611588579962,0.02915578159137823,1.0410377098192507,0.013054262827494433 +37081,0.4841536992877082,0.009667844680265245,0.08165087598226473,0.4037132578669831,0.027813575421374782,0.012493381067486894,0.01996854448182194,0.16864660148706975,0.8313533985129302,0.340640257520521,0.44918284967727334,0.9572069300128345,0.010098041051706573,0.9722924039758707,0.08405206988062329,0.9914339544392712,0.48829110990902336,0.9548391346865093,0.02915578159137823,0.9564450168911991,0.013054262827494433 +37083,0.5052137784280906,0.012131606249324176,0.0949193690904645,0.41158229058921036,0.03500649817671801,0.015647912751911682,0.024012817479107853,0.1878796128359647,0.8121203871640353,0.3688024742700774,0.4470002304406082,1.2030253424376973,0.010098041051706573,1.1289835523858978,0.08405206988062329,1.0344771067740908,0.48829110990902336,1.2000559361832996,0.02915578159137823,1.199517917074467,0.013054262827494433 +37085,0.47284037817788926,0.008398558136494122,0.07383274479510987,0.40024352033718225,0.023754323597161158,0.010821412536490594,0.017761930926581033,0.15614729241108286,0.8438527075889172,0.3217315523495812,0.4555554904448571,0.8334452527686877,0.010098041051706573,0.8810870088645535,0.08405206988062329,0.9680983647574706,0.48829110990902336,0.8154777944898829,0.02915578159137823,0.8249950641183201,0.013054262827494433 +37087,0.52950761882028,0.014977791768350967,0.1106300309874519,0.42018864938422346,0.043187241063313675,0.01925309661334012,0.028286263003582154,0.20893000790797084,0.7910699920920292,0.39037538612108086,0.44580519939012897,1.4862819480433564,0.010098041051706573,1.315151748094197,0.08405206988062329,1.0846146404325556,0.48829110990902336,1.4788749594527988,0.02915578159137823,1.4802066155897546,0.013054262827494433 +37089,0.5304138201653449,0.015633133675113736,0.1128944123846646,0.41957383154822836,0.04612756266533691,0.020335104206822708,0.029473465963312285,0.21284213965139945,0.7871578603486006,0.4085903074473401,0.4408449749308727,1.5501382963536905,0.010098041051706573,1.339603127253684,0.08405206988062329,1.0862340502903536,0.48829110990902336,1.571971909902031,0.02915578159137823,1.555614333721528,0.013054262827494433 +37091,0.5037587799554122,0.01174763745194282,0.0935214161319002,0.41143765354582557,0.03376288372989394,0.015124707602560579,0.023319965664881526,0.1856472181788629,0.8143527818211371,0.3610176698166721,0.4479684769689574,1.1649494591075538,0.010098041051706573,1.1129777729845953,0.08405206988062329,1.0315104766799346,0.48829110990902336,1.1577207112336514,0.02915578159137823,1.159635334148899,0.013054262827494433 +37093,0.45905619825294763,0.0065963043715614724,0.06369404585339322,0.3957297400099834,0.01863203414395924,0.008504498002774669,0.01436927416875177,0.13874999639651253,0.8612500036034875,0.29252395407327764,0.45644495587895556,0.6533246188405334,0.010098041051706573,0.7640318641605739,0.08405206988062329,0.9399481985960603,0.48829110990902336,0.6402702267366707,0.02915578159137823,0.6487303149364652,0.013054262827494433 +37095,0.5033473755882774,0.012131965804629526,0.09619102312638947,0.40847654001888023,0.03695133891249557,0.016176072139229978,0.024102570894405737,0.19110266148495977,0.8088973385150402,0.38414539851544816,0.43776687436242884,1.2006572032908762,0.010098041051706573,1.137367261676029,0.08405206988062329,1.029861007490415,0.48829110990902336,1.2586760692760008,0.02915578159137823,1.229338197157071,0.013054262827494433 +37097,0.49224290729206543,0.01007082109644837,0.08488380485524791,0.4092272317152045,0.028672461471519202,0.013016789067544578,0.0204590476515957,0.17244292116307386,0.8275570788369262,0.3377848285714132,0.4539822672871792,0.9985343694530803,0.010098041051706573,1.009913140638349,0.08405206988062329,1.0081835637235934,0.48829110990902336,0.9845920666484419,0.02915578159137823,0.9926971660996533,0.013054262827494433 +37099,0.49162409716718697,0.010723506064256622,0.08742302145027644,0.4056035281444098,0.03031057937670282,0.013764790694161899,0.02181240937140205,0.17782493159717197,0.8221750684028281,0.3467116426986289,0.45412496155522947,1.0635358476318226,0.010098041051706573,1.0391983770846944,0.08405206988062329,1.0068846581452617,0.48829110990902336,1.0402830478277272,0.02915578159137823,1.05090408682693,0.013054262827494433 +37101,0.47843616556124813,0.008253230532784896,0.07505994554815623,0.4042229437493536,0.02321667835329528,0.010661595265065094,0.017250431984177292,0.15688601939216748,0.8431139806078325,0.3093084891515162,0.45922138829785836,0.8193011446812506,0.010098041051706573,0.8967427886183217,0.08405206988062329,0.9795304350851914,0.48829110990902336,0.798302254199881,0.02915578159137823,0.8115119647951563,0.013054262827494433 +37103,0.5166453012844978,0.013212615643857931,0.10186397564480862,0.4158523070862755,0.03777492502197482,0.016939312053512658,0.02557386201134194,0.19716423509814487,0.8028357649018552,0.37083693997663025,0.4484274169613453,1.3097582701699857,0.010098041051706573,1.2106158328000671,0.08405206988062329,1.058209520661981,0.48829110990902336,1.2944971712536204,0.02915578159137823,1.2996710816472863,0.013054262827494433 +37105,0.4906393733468531,0.010298050834876801,0.08510093236897492,0.40724096959680633,0.02958322530885532,0.013280516560993445,0.0209890428577502,0.17344904830704155,0.8265509516929584,0.34762516091586815,0.4489205089148312,1.020277486888447,0.010098041051706573,1.0122684316865458,0.08405206988062329,1.0048732052509788,0.48829110990902336,1.0150295035223298,0.02915578159137823,1.0172615142786026,0.013054262827494433 +37107,0.5049386233082066,0.011979593889315774,0.09438068362391479,0.4120304361747542,0.0344937552491751,0.015417600065445645,0.023724851568749213,0.1869151601150271,0.8130848398849729,0.36547473407402664,0.4469678628514751,1.1876699396500565,0.010098041051706573,1.122431752975451,0.08405206988062329,1.0337907275922913,0.48829110990902336,1.182260584745947,0.02915578159137823,1.1834083884415696,0.013054262827494433 +37109,0.5002334804946407,0.010367251708170246,0.08836422242227872,0.4129125602439762,0.029270002077889837,0.013345509602394674,0.02072482573121436,0.176645958073223,0.823354041926777,0.3312426825645916,0.4559449489235155,1.028818238665203,0.010098041051706573,1.0524059201158482,0.08405206988062329,1.0243933993180847,0.48829110990902336,1.0044336962923852,0.02915578159137823,1.0191868408118385,0.013054262827494433 +37111,0.5085507097109843,0.011909214614926222,0.09546035809987416,0.41466275100553945,0.03412498014380111,0.015328180160955971,0.023417949060958697,0.18771059852443325,0.8122894014755667,0.3574780235801996,0.44917770197561196,1.1806457887856985,0.010098041051706573,1.1341320584373782,0.08405206988062329,1.0415035036751694,0.48829110990902336,1.170273263418933,0.02915578159137823,1.1746893450518172,0.013054262827494433 +37113,0.537424824242565,0.01637801025755283,0.1174059969768225,0.4210557360609925,0.047720133803381776,0.021159055703529075,0.030474979045926373,0.2184603160866117,0.78153968391338835,0.4064539719619464,0.44339891817381283,1.6244813366003676,0.010098041051706573,1.3934419334368249,0.08405206988062329,1.1006226622375759,0.48829110990902336,1.6321954649355614,0.02915578159137823,1.6229670088918438,0.013054262827494433 +37115,0.5156562147814583,0.013070546945196217,0.1013851371556437,0.41517072554895856,0.037842204008260466,0.01687902850328668,0.02534740505500488,0.19661381798455008,0.80338618201545,0.373251988111099,0.446037141483678,1.2959300760586814,0.010098041051706573,1.2048297871395364,0.08405206988062329,1.0560277356569463,0.48829110990902336,1.2952759796079696,0.02915578159137823,1.2948184217144296,0.013054262827494433 +37117,0.5153434289173003,0.012733681552827381,0.0998971971277996,0.4162488013401812,0.03666293484115106,0.0164041825965534,0.02470911791691986,0.19384587349386886,0.8061541265061312,0.36700664178042713,0.447432336435355,1.2621246039391434,0.010098041051706573,1.1877921159954195,0.08405206988062329,1.0553720921658376,0.48829110990902336,1.2563079160390762,0.02915578159137823,1.2583049061564129,0.013054262827494433 +37119,0.4685828253022406,0.0074132926902627854,0.06987249605568016,0.3991267297277995,0.021229959260854914,0.009624726794452846,0.01582066667825723,0.14911450501970852,0.8508854949802915,0.3038385696703483,0.453355876767955,0.7344688800180524,0.010098041051706573,0.8371499830019098,0.08405206988062329,0.9584969297979432,0.48829110990902336,0.7285734068619582,0.02915578159137823,0.7350730728573756,0.013054262827494433 +37121,0.5296915566445606,0.014779400060949964,0.11002201195845518,0.42105105047804153,0.04209674211433646,0.01892390896291299,0.027901898521043255,0.2077095822621982,0.7922904177378018,0.3826210897709486,0.4495338121775524,1.4662004942763949,0.010098041051706573,1.3084765349597212,0.08405206988062329,1.084756246771164,0.48829110990902336,1.4411113692135815,0.02915578159137823,1.4480970002478015,0.013054262827494433 +37123,0.5006871663560355,0.01160248594790967,0.09211854049454292,0.4099470224887617,0.03351137576865858,0.014976974090132007,0.02317312431303505,0.18398422544954549,0.8160157745504545,0.3637853529675037,0.4469220897859759,1.1504528502746414,0.010098041051706573,1.0949298257369695,0.08405206988062329,1.0252341320691731,0.48829110990902336,1.1488760424099733,0.02915578159137823,1.1480607503483018,0.013054262827494433 +37125,0.5291224127476873,0.015923053492431012,0.11333332937189558,0.4178962828978884,0.04725257579347923,0.0207543411942533,0.030093326437910576,0.21419113354765168,0.7858088664523484,0.4169345068688764,0.4392213725017158,1.5786809998885034,0.010098041051706573,1.342412495328944,0.08405206988062329,1.0837288103379819,0.48829110990902336,1.6086624852866414,0.02915578159137823,1.586616128629708,0.013054262827494433 +37127,0.4977102694470624,0.010732861619123804,0.08872768380152746,0.41065898897088243,0.030737217542251553,0.013848512786473272,0.02156447692157852,0.17827175617674237,0.8217282438232576,0.3464219533895058,0.45054542648296086,1.0634951260614662,0.010098041051706573,1.0547732731440784,0.08405206988062329,1.0192350592606307,0.48829110990902336,1.0547059175487923,0.02915578159137823,1.0591767978442808,0.013054262827494433 +37129,0.4910302384882303,0.010454497287347535,0.08623849979035808,0.4061883931144332,0.02993139927077257,0.013495321307510327,0.02129094395394984,0.17562767632369583,0.8243723236763042,0.3470769939590143,0.4508750555036111,1.0359483913203011,0.010098041051706573,1.0269397210714186,0.08405206988062329,1.0054881550439947,0.48829110990902336,1.0287804050915925,0.02915578159137823,1.0325397001687884,0.013054262827494433 +37131,0.5232509676678495,0.014172320069515017,0.10605162919516521,0.4184487820624514,0.04071022722152211,0.018166730806312863,0.02708512921186102,0.20267832407045813,0.7973216759295418,0.3838717757612539,0.44624488847629745,1.4051243231249446,0.010098041051706573,1.2615880041852354,0.08405206988062329,1.0720795944398274,0.48829110990902336,1.3938063398798803,0.02915578159137823,1.3964335720686671,0.013054262827494433 +37133,0.4435442937027605,0.006138075634536111,0.058596577029630656,0.38504263835563907,0.01732188009777043,0.007883683413374868,0.013838698235287227,0.13210986560205626,0.8678901343979437,0.295612490965321,0.45512862165519835,0.6077830272154753,0.010098041051706573,0.700365889562079,0.08405206988062329,0.9091888969457731,0.48829110990902336,0.5957307002788139,0.02915578159137823,0.6019967792697225,0.013054262827494433 +37135,0.4713815549741185,0.0080346511957795,0.0732621634868708,0.39923284126677755,0.022805848901994275,0.0103921202414327,0.017044899425945184,0.15542008955121994,0.8445799104487801,0.31129095588449657,0.4556778520322457,0.7964596865358384,0.010098041051706573,0.8773002796967978,0.08405206988062329,0.9662848014636237,0.48829110990902336,0.7837826272995885,0.02915578159137823,0.7926342138586365,0.013054262827494433 +37137,0.537534206728604,0.01570491370426408,0.11559515614640478,0.42302020654510253,0.04534352119215666,0.02020860226919146,0.02921658474507715,0.21504706993422598,0.784952930065774,0.39226142949041665,0.44567783308119135,1.5586287728288273,0.010098041051706573,1.374550005348229,0.08405206988062329,1.100656816131052,0.48829110990902336,1.5525576765635603,0.02915578159137823,1.5536151010508732,0.013054262827494433 +37139,0.48711460147968966,0.010095680843856772,0.08345913044901543,0.40454224210469136,0.028788050270865524,0.013007453843337794,0.02072547366305486,0.17133366603155556,0.8286663339684445,0.3449358999546722,0.45183517886592606,1.0008625654923269,0.010098041051706573,0.9943151287413681,0.08405206988062329,0.9975462197110965,0.48829110990902336,0.9890353359285682,0.02915578159137823,0.9942997137503682,0.013054262827494433 +37141,0.5062313549937769,0.011527191800701983,0.09359152524337958,0.41376416277621386,0.03268270330306654,0.014836096732924272,0.022770600214685806,0.1848789576547073,0.8151210423452927,0.3492057984745625,0.45394337779678823,1.1432384366119372,0.010098041051706573,1.1143964271148215,0.08405206988062329,1.0366051980395556,0.48829110990902336,1.1208711365468806,0.02915578159137823,1.131609109404684,0.013054262827494433 +37143,0.53102837158862,0.015112253347460695,0.11148518314994466,0.42101463261231975,0.043282818670591826,0.019355208488481636,0.028458466921929243,0.2099420466300633,0.7900579533699367,0.38823830618260335,0.44717994536784594,1.4997607372065467,0.010098041051706573,1.3270978226940802,0.08405206988062329,1.08827981318331,0.48829110990902336,1.4824891670314548,0.02915578159137823,1.4871502143505257,0.013054262827494433 +37145,0.5047949713866706,0.011296723544394167,0.09251291581625208,0.41338235461220674,0.03243416201608957,0.01457352620893336,0.02237883533855754,0.18326829913166393,0.8167317008683361,0.3505906362362405,0.4493264293896013,1.1192295678108026,0.010098041051706573,1.0991259493294239,0.08405206988062329,1.0336650934146856,0.48829110990902336,1.1128825725603182,0.02915578159137823,1.1164664110862912,0.013054262827494433 +37147,0.4661460808394147,0.007984901283046316,0.07109124070323308,0.39591603246516105,0.022739412489369726,0.010304471376721379,0.01712961153436594,0.15250850243171668,0.8474914975682833,0.3198623665086152,0.45315468821098775,0.7909805353275063,0.010098041051706573,0.8496782618423246,0.08405206988062329,0.9549320040805348,0.48829110990902336,0.7808879007303404,0.02915578159137823,0.786861666162795,0.013054262827494433 +37149,0.5456545561916271,0.017004367843056714,0.12159435734038265,0.42599507243628243,0.050060323167628436,0.022088544258408928,0.031163247241511153,0.22284127560309464,0.7771587243969054,0.41169939348002066,0.44123854703144444,1.6862801634004665,0.010098041051706573,1.4446526575774858,0.08405206988062329,1.1176171792902323,0.48829110990902336,1.706540761084072,0.02915578159137823,1.6904453097961774,0.013054262827494433 +37151,0.4968033432690004,0.010611173701346299,0.08795270395227488,0.41075367776600524,0.03007282830756459,0.013699529184462558,0.021358901555541154,0.17703726261892683,0.8229627373810732,0.34192045219988676,0.4555450868921613,1.05219241661209,0.010098041051706573,1.0459601603936715,0.08405206988062329,1.017358987980058,0.48829110990902336,1.0338426568163546,0.02915578159137823,1.043896127639079,0.013054262827494433 +37153,0.49571376643671067,0.011084228743189727,0.08911393028253276,0.40864470050576673,0.03199491344266471,0.014297988238752737,0.022360139043273646,0.17976892375432993,0.82023107624567,0.3590338047174656,0.4468831667375789,1.0975627043252068,0.010098041051706573,1.0586344854392853,0.08405206988062329,1.0150890815806957,0.48829110990902336,1.095540598706216,0.02915578159137823,1.096186418136826,0.013054262827494433 +37155,0.47867789873155286,0.008868936901481947,0.07669378890257394,0.4030619130030798,0.024958277972240157,0.01143505129171889,0.018527984945583904,0.1602200333581404,0.8397799666418596,0.3254276301819602,0.45816667738205036,0.8803662720055411,0.010098041051706573,0.916599829376898,0.08405206988062329,0.9804076298264754,0.48829110990902336,0.8587197813416964,0.02915578159137823,0.8700648183466968,0.013054262827494433 +37157,0.5097556723455436,0.012182823766298026,0.09663554037541233,0.414401458284861,0.03506489852113884,0.01568721881969761,0.02389933928589962,0.1895722708307733,0.8104277291692267,0.3628571681279763,0.44737670665838625,1.2079711562567732,0.010098041051706573,1.149012052467144,0.08405206988062329,1.0438685237544802,0.48829110990902336,1.2021145787577572,0.02915578159137823,1.204264908510841,0.013054262827494433 +37159,0.4958964969629671,0.010967380370792283,0.08892752588729894,0.40869972746145933,0.03162182269801601,0.014143646950539386,0.022116269096394348,0.17932678781140882,0.8206732121885911,0.3555909419777571,0.44727487993368503,1.086327412743605,0.010098041051706573,1.0565955946545675,0.08405206988062329,1.0153022784889258,0.48829110990902336,1.0838276432187888,0.02915578159137823,1.084437481362631,0.013054262827494433 +37161,0.5123415772691333,0.012680797345244505,0.09875720055831223,0.4146210060840786,0.03643089657168616,0.01628349152529185,0.024750670076075586,0.19275656112998812,0.8072434388700118,0.3688935729823078,0.4469692776638186,1.2570155050553218,0.010098041051706573,1.174555177123465,0.08405206988062329,1.0490434402471167,0.48829110990902336,1.2485160243376803,0.02915578159137823,1.2511204747745095,0.013054262827494433 +37163,0.49453953228909975,0.010666868787716843,0.08720101159238804,0.4091411364242272,0.030395377647568812,0.01373090891866395,0.021569294447185194,0.17632768646169977,0.8236723135383002,0.34856680091796194,0.45174332353663726,1.0572325971199619,0.010098041051706573,1.036950664596372,0.08405206988062329,1.0126578178645365,0.48829110990902336,1.0442900176935974,0.02915578159137823,1.0498465779346564,0.013054262827494433 +37165,0.49238256560062266,0.010289167993073611,0.08504364649267898,0.4091010391142588,0.028784759744842653,0.013182044364489748,0.02089669438340609,0.17271863878636778,0.8272813612136323,0.3384704317367271,0.4579522108692106,1.0208034975002311,0.010098041051706573,1.0142479511070814,0.08405206988062329,1.008249968111596,0.48829110990902336,0.9903769561551987,0.02915578159137823,1.0053912079484761,0.013054262827494433 +37167,0.5033393692334077,0.011550049409409697,0.0926376618286455,0.4120505806623378,0.03295934000167902,0.014859031669482926,0.022946842856740115,0.18404612770452236,0.8159538722954777,0.35578769315923414,0.45082916310599586,1.1452205139098712,0.010098041051706573,1.101125612065966,0.08405206988062329,1.0306098286991237,0.48829110990902336,1.1309051818811877,0.02915578159137823,1.1370018362206111,0.013054262827494433 +37169,0.5088316583412998,0.011821872757825246,0.09536134154723394,0.4143024766655712,0.033534886920058835,0.01524078174409655,0.023233367193311903,0.18741235924292693,0.8125876407570731,0.35166123269614963,0.45447541780677075,1.1718429308434222,0.010098041051706573,1.1335964467292992,0.08405206988062329,1.0416525452224574,0.48829110990902336,1.1525749407818777,0.02915578159137823,1.1622763818702424,0.013054262827494433 +37171,0.507817703362534,0.012236046640636605,0.0961303847386775,0.41312533918258576,0.035245648362520546,0.015766743359822477,0.024095352642523417,0.18930097178996821,0.8106990282100318,0.366644203685785,0.4473387238518923,1.2137077539126784,0.010098041051706573,1.1430879013212547,0.08405206988062329,1.0398403390992363,0.48829110990902336,1.2084384467830451,0.02915578159137823,1.2095194609277407,0.013054262827494433 +37173,0.5072417184288943,0.012251276348615978,0.09580465880509188,0.4126923567983194,0.0349940163338116,0.015722485277000188,0.024152738040874245,0.1888737761985204,0.8111262238014796,0.36526424466480867,0.44929067664087907,1.2150789036259044,0.010098041051706573,1.140488893854856,0.08405206988062329,1.0387077378052711,0.48829110990902336,1.1998870847060368,0.02915578159137823,1.2036712182394578,0.013054262827494433 +37175,0.5440517899005783,0.01745872870751443,0.1227147091359691,0.4224030392756327,0.050946990874336316,0.022572264153815635,0.03209019624897271,0.22555703595496737,0.7744429640450327,0.41516612990449703,0.443053922644645,1.7315738781668548,0.010098041051706573,1.4547783860221515,0.08405206988062329,1.114362571048531,0.48829110990902336,1.7426817577017852,0.02915578159137823,1.730146968751452,0.013054262827494433 +37177,0.5179363287801763,0.01194398043522453,0.09947443064159542,0.4190238589894711,0.03414089142547097,0.015452233289722265,0.023060711851116012,0.19205918780764766,0.8079408121923524,0.3432127352251956,0.4526019282025558,1.1838835684087108,0.010098041051706573,1.1822203990462143,0.08405206988062329,1.0602887609984841,0.48829110990902336,1.1714178544666694,0.02915578159137823,1.1808768885766556,0.013054262827494433 +37179,0.47407633633462276,0.007764489870932425,0.07216017127938087,0.4025816256300318,0.021777499444784153,0.010005612132240743,0.016378142665724463,0.15221213494285704,0.847787865057143,0.301793899025942,0.4594472454291418,0.7706362168700116,0.010098041051706573,0.8615563133689359,0.08405206988062329,0.9707479315794493,0.48829110990902336,0.7485240775872855,0.02915578159137823,0.7629189698998433,0.013054262827494433 +37181,0.4937840530930482,0.010436883114848233,0.08587330284911925,0.40964588110908207,0.029548533554188412,0.013432729481286798,0.021136533368123,0.1739086191852724,0.8260913808147277,0.34409452733063794,0.4545988536674014,1.0349374342762694,0.010098041051706573,1.0223094356182434,0.08405206988062329,1.0107204029566097,0.48829110990902336,1.016118838405344,0.02915578159137823,1.024937046318816,0.013054262827494433 +37183,0.4700975020552489,0.007248429765654311,0.06958477503014726,0.4008131725202133,0.020570196014190346,0.009402597977108648,0.01541899230258498,0.1480220054901913,0.8519779945098087,0.29561345862336136,0.45709812247886544,0.7188947307276059,0.010098041051706573,0.833434046816158,0.08405206988062329,0.9616728307722611,0.48829110990902336,0.7068673754622228,0.02915578159137823,0.7168624646255438,0.013054262827494433 +37185,0.52204777692169,0.013745222784142048,0.10462585061467385,0.41830059689649157,0.03917231146588321,0.017595393952880303,0.0263294345685987,0.2004143207574051,0.7995856792425949,0.3744037562012353,0.4491793640567997,1.362871297562604,0.010098041051706573,1.2455118882685516,0.08405206988062329,1.0693994542926255,0.48829110990902336,1.3426019501124973,0.02915578159137823,1.3493290943942253,0.013054262827494433 +37187,0.5168792341784239,0.01342952926474964,0.10232761597109546,0.41560331440620535,0.03885341068760696,0.0172910345091958,0.025981947767926464,0.19797200043012858,0.8020279995698714,0.3796962366306072,0.44503260339795875,1.3315834662180681,0.010098041051706573,1.2149176570497011,0.08405206988062329,1.0585120272793858,0.48829110990902336,1.3286721000777768,0.02915578159137823,1.3289933649827526,0.013054262827494433 +37189,0.47095589716424646,0.0092752145719158,0.07714114447041484,0.39441434498985173,0.026203128895828584,0.011892652481506949,0.01969444406103499,0.1637969604689158,0.8362030395310842,0.33967773068077833,0.4538638316357786,0.9195982137770533,0.010098041051706573,0.9188036802426939,0.08405206988062329,0.9648864582277571,0.48829110990902336,0.9006951986582592,0.02915578159137823,0.9092151194920807,0.013054262827494433 +37191,0.487389565019954,0.00998132506922411,0.08317701816566796,0.40547017832948984,0.02839230634889369,0.012836309814855075,0.020479152172278182,0.17065818420273862,0.8293418157972614,0.3413479705697464,0.45210521671323267,0.9896077003664607,0.010098041051706573,0.9909009450549834,0.08405206988062329,0.9982707370587935,0.48829110990902336,0.9746871433984667,0.02915578159137823,0.9815901022311004,0.013054262827494433 +37193,0.5092515808088685,0.012332404829778773,0.09685139043901642,0.4140498539290862,0.03546438198144465,0.015852621614507276,0.024216723706955667,0.19018377966580438,0.8098162203341956,0.3661731836857335,0.447001208784677,1.2230733112205603,0.010098041051706573,1.1503235893083636,0.08405206988062329,1.0428579821659443,0.48829110990902336,1.215431174758918,0.02915578159137823,1.2176725550493928,0.013054262827494433 +37195,0.49611058150235887,0.010792135315965803,0.08806706245813581,0.40999323924854625,0.03084429833989842,0.013898793360535002,0.021753487465000762,0.17751498504918922,0.8224850149508107,0.3502364843219426,0.45061142929473996,1.0693908201070867,0.010098041051706573,1.0475998681811984,0.08405206988062329,1.0159650957801678,0.48829110990902336,1.058866480681282,0.02915578159137823,1.063454622645855,0.013054262827494433 +37197,0.5060042274117776,0.012070953331809853,0.09504010791422965,0.4124539822670974,0.03482560409822038,0.015576328419483459,0.023855439693761128,0.1878247310311256,0.8121752689688744,0.36643060348426015,0.44726656788358266,1.1971774768764942,0.010098041051706573,1.1296989398466708,0.08405206988062329,1.0358513102660596,0.48829110990902336,1.194149707745292,0.02915578159137823,1.1942134385208587,0.013054262827494433 +37199,0.5240685247328716,0.014239834790154844,0.10721294713541465,0.4185433809506409,0.04130937882779814,0.018395796103734534,0.027171703924430832,0.20457810777715238,0.7954218922228476,0.38530214802903034,0.44531766455310456,1.4126893881054379,0.010098041051706573,1.274943579626319,0.08405206988062329,1.073596820729461,0.48829110990902336,1.4142593560093712,0.02915578159137823,1.4095926439518036,0.013054262827494433 +38001,0.5492161915047602,0.019616581525759822,0.13124221706658928,0.419676745435127,0.06087965284929507,0.026325755981504696,0.03571741297723521,0.2389627601965041,0.7610372398034959,0.4638724810508659,0.432422899103465,1.9426461324810558,0.010098041051706573,1.5527457671121527,0.08405206988062329,1.1239716856955384,0.48829110990902336,2.0732961223942774,0.02915578159137823,1.9961169602899718,0.013054262827494433 +38003,0.5195568084708359,0.014318880964303522,0.10670647601631979,0.41454866265587625,0.04299974562920335,0.01887664636318951,0.02755979852606874,0.20537980501185082,0.7946201949881492,0.4029722209421191,0.4389943728032057,1.4182530703799694,0.010098041051706573,1.2633515258786563,0.08405206988062329,1.0639606698255637,0.48829110990902336,1.4662257397147962,0.02915578159137823,1.4380840506036319,0.013054262827494433 +38005,0.47939317538898885,0.010195268772420328,0.08003084974477367,0.4015432816906567,0.02923570145200788,0.013055075235737588,0.021267029436010828,0.16694198802441254,0.8330580119755875,0.3653053984212767,0.44654564752510767,1.0090694642064806,0.010098041051706573,0.9507125091380701,0.08405206988062329,0.9815830534756123,0.48829110990902336,1.0020442899833002,0.02915578159137823,0.999504940810634,0.013054262827494433 +38007,0.5259501484202812,0.013915171061337273,0.10659974578723,0.4200692413416317,0.040752974992263394,0.018044588369225893,0.02645720531334047,0.20268032266443486,0.7973196773355651,0.38229898853234745,0.4427796589734002,1.3793227905096104,0.010098041051706573,1.267010529590204,0.08405206988062329,1.0763971602369429,0.48829110990902336,1.3927222109237585,0.02915578159137823,1.3824662308459166,0.013054262827494433 +38009,0.5338753986531368,0.015732373959348303,0.11501235628701333,0.42076321002895567,0.04661137014463119,0.020540010448073423,0.029468250455139917,0.21542921171712912,0.7845707882828709,0.4052727172053802,0.44066523649357414,1.55901568695989,0.010098041051706573,1.364913553819401,0.08405206988062329,1.0935847114561712,0.48829110990902336,1.592078226812732,0.02915578159137823,1.5706549405415147,0.013054262827494433 +38011,0.5335798812004406,0.016647076800078462,0.11786418328115024,0.41769923727193314,0.050742963762533136,0.022131561654716383,0.03119884648316593,0.22089322973718767,0.7791067702628123,0.43052064121542466,0.4361503549198986,1.6484190758574124,0.010098041051706573,1.3955209437902494,0.08405206988062329,1.0921967797423806,0.48829110990902336,1.7245601453886783,0.02915578159137823,1.6797613525125348,0.013054262827494433 +38013,0.5554036334033325,0.018467434950691572,0.1291016780460198,0.4281302301727016,0.0543936294165015,0.023988494681386228,0.033250475582108,0.23244658529676296,0.767553414703237,0.4213239536446014,0.4410166215918806,1.8320149697358832,0.010098041051706573,1.5339092271706172,0.08405206988062329,1.136760298714064,0.48829110990902336,1.854823392073966,0.02915578159137823,1.8349440543914746,0.013054262827494433 +38015,0.492067847292219,0.010533593234114687,0.08668538445547302,0.4070210373964074,0.030682686343802584,0.013678436075770932,0.021406790327959016,0.1761655124034026,0.8238344875965974,0.3539545511223188,0.44580308003356295,1.0431558956269513,0.010098041051706573,1.0304389278207433,0.08405206988062329,1.0077853853450334,0.48829110990902336,1.0520900066446415,0.02915578159137823,1.0470715242087212,0.013054262827494433 +38017,0.4679269843922854,0.008108245895743575,0.07217963746555023,0.39693837586114367,0.023577983684354414,0.010563804354064893,0.017328015195093017,0.15425406072550543,0.8457459392744946,0.3266569979048132,0.4480367997317214,0.8028784384286902,0.010098041051706573,0.862585256796516,0.08405206988062329,0.9582823276315123,0.48829110990902336,0.8105417457308692,0.02915578159137823,0.8077037618977512,0.013054262827494433 +38019,0.550095383529718,0.017861227598954026,0.1260418893175536,0.4259638852979911,0.05352681454149496,0.023540349698634628,0.03246932829057109,0.22912733517012765,0.7708726648298724,0.42467480320481343,0.43978611281614227,1.770863644911882,0.010098041051706573,1.4938531942931943,0.08405206988062329,1.1265535415728585,0.48829110990902336,1.8247652298125896,0.02915578159137823,1.789368288555976,0.013054262827494433 +38021,0.5191595689941669,0.015750686662907097,0.10978646297624552,0.4115660445533987,0.04773733645007843,0.020775287912688997,0.03033881604729521,0.21146959342182334,0.7885304065781766,0.4348198781156412,0.435199980929285,1.5601612519532366,0.010098041051706573,1.2985418242821192,0.08405206988062329,1.0623668012707235,0.48829110990902336,1.6227522230315754,0.02915578159137823,1.5818104183385815,0.013054262827494433 +38023,0.5565682805655447,0.018341608474278293,0.13020143142287283,0.42931872988777375,0.05587120488309533,0.024448124408566772,0.03295482174377754,0.23393613321005552,0.7660638667899444,0.42911359938613,0.4375800461028525,1.8174236532542012,0.010098041051706573,1.5404030294161624,0.08405206988062329,1.139672163595657,0.48829110990902336,1.9039702178572768,0.02915578159137823,1.8547581649251956,0.013054262827494433 +38025,0.5191784299470578,0.013786972815219947,0.10488874092022737,0.4158054323586931,0.040631584195121764,0.018006890377951102,0.026555365207729928,0.2020283102495672,0.7979716897504328,0.38737793817187605,0.44317470594988545,1.365671899352611,0.010098041051706573,1.242804010995722,0.08405206988062329,1.0632722595899158,0.48829110990902336,1.3894167916342195,0.02915578159137823,1.37494299554269,0.013054262827494433 +38027,0.531950634925471,0.016294292969199257,0.11577969217954585,0.4185125227102632,0.04955402513724569,0.02161082400809427,0.030631212558816047,0.21765119651707376,0.7823488034829262,0.4280027369601188,0.43610632936962346,1.6135756462824937,0.010098041051706573,1.3715437959296461,0.08405206988062329,1.0889928174530636,0.48829110990902336,1.6839497747032257,0.02915578159137823,1.641328776894023,0.013054262827494433 +38029,0.5498412270455962,0.01881979501135246,0.128271421438528,0.42341039260544333,0.056648671702256605,0.024735525713341783,0.03422768989599939,0.2332881114203736,0.7667118885796265,0.44163127738788305,0.43664793842564964,1.8659872109652964,0.010098041051706573,1.5191241928440515,0.08405206988062329,1.1249569508233677,0.48829110990902336,1.9279143898951925,0.02915578159137823,1.8849353817420367,0.013054262827494433 +38031,0.5313403220219197,0.017071593322756824,0.11778488595573319,0.41540315371718517,0.0518560333977907,0.022537419021833136,0.032129301344558145,0.22167503777527003,0.7783249622247299,0.4402605052169395,0.43461517484276635,1.6919308628413379,0.010098041051706573,1.3943324857375035,0.08405206988062329,1.0874883856374833,0.48829110990902336,1.7603324723789684,0.02915578159137823,1.7151153974217923,0.013054262827494433 +38033,0.5252607328504945,0.01613932305869869,0.11402445158262761,0.41316421320218383,0.049854977801851434,0.02163734042542812,0.030726308001577652,0.2170816214717549,0.7829183785282451,0.43723058615830407,0.4340056174816828,1.596947599267843,0.010098041051706573,1.3490646578233987,0.08405206988062329,1.0750863064359637,0.48829110990902336,1.6977821790725054,0.02915578159137823,1.6388164175664928,0.013054262827494433 +38035,0.4643442051979726,0.008190257169069598,0.0715603332063818,0.39356817354737095,0.023900309133325727,0.010679949477583562,0.017638331818047977,0.15411053353378695,0.8458894664662131,0.3339882315024531,0.4468540309669814,0.8108139467111508,0.010098041051706573,0.85579298080086,0.08405206988062329,0.951184380667851,0.48829110990902336,0.8209544448481323,0.02915578159137823,0.816755424462305,0.013054262827494433 +38037,0.5510788703993412,0.01798040855749069,0.1266069043459329,0.42569412282754737,0.053017200943779666,0.023368457026009096,0.03262765009382618,0.22974371028630944,0.7702562897136905,0.41875442115635914,0.4407712329209798,1.7828157152038613,0.010098041051706573,1.5027519617121936,0.08405206988062329,1.1284171901258286,0.48829110990902336,1.8083040924235165,0.02915578159137823,1.7866843404138704,0.013054262827494433 +38039,0.5584864909743414,0.01904025263156881,0.132187677877668,0.428742411509676,0.05749816992340748,0.02518445421000979,0.03409259299781985,0.23668912321773794,0.7633108767822621,0.43497374979700215,0.43800444855127835,1.886721247557048,0.010098041051706573,1.5653216539773367,0.08405206988062329,1.143434374662389,0.48829110990902336,1.959577715908509,0.02915578159137823,1.91457238528423,0.013054262827494433 +38041,0.5471744770560156,0.017112764220282968,0.12232159981715744,0.42659576513496156,0.04955562473552715,0.022066975160343817,0.03127478516972401,0.22355136240142112,0.7764486375985789,0.4051257080483036,0.44529708339089263,1.6982673307114602,0.010098041051706573,1.45318990748481,0.08405206988062329,1.1207216914105103,0.48829110990902336,1.6968019321213932,0.02915578159137823,1.6906368783951127,0.013054262827494433 +38043,0.5353098953924479,0.016515631006117238,0.1172367118275567,0.4201730025116486,0.04922128577767333,0.02158684149219425,0.030852467231171306,0.2190071822632903,0.7809928177367097,0.41984532839911826,0.43856720016822465,1.637997881602326,0.010098041051706573,1.3904798797500395,0.08405206988062329,1.0960723638528052,0.48829110990902336,1.6741306814820671,0.02915578159137823,1.646594465415101,0.013054262827494433 +38045,0.5433295002683278,0.017751200879923205,0.12315890003878126,0.4223191732209177,0.05323437719295277,0.023318037015519134,0.03267115235074964,0.2266744212820364,0.7733255787179636,0.4322414147592249,0.43802591943549596,1.7603522662367492,0.010098041051706573,1.4599428663942704,0.08405206988062329,1.1122561648198812,0.48829110990902336,1.8100414595623084,0.02915578159137823,1.7741875314057183,0.013054262827494433 +38047,0.5555928357444475,0.02094095074197863,0.1363702971730079,0.42099045611085184,0.06434888881380085,0.0277719906409171,0.037691182093663116,0.2454500641468553,0.7545499358531447,0.47186880242816975,0.4315846186758219,2.075609275825127,0.010098041051706573,1.613342212572607,0.08405206988062329,1.1364326412017212,0.48829110990902336,2.189141067314237,0.02915578159137823,2.117316039127715,0.013054262827494433 +38049,0.527821090929549,0.015114953674819347,0.11074935081249623,0.418746381207012,0.044798254381618455,0.01972061412041224,0.028636509481271975,0.20982365562060976,0.7901763443793902,0.4045012819755844,0.4402094321001929,1.4991825747651997,0.010098041051706573,1.3154248500044061,0.08405206988062329,1.0808926356131816,0.48829110990902336,1.5247481008715456,0.02915578159137823,1.5057661535756472,0.013054262827494433 +38051,0.5684237685160889,0.022687524841772833,0.14625513367621384,0.4244439838572923,0.070841769605528,0.03042977884146293,0.039913047445218994,0.257299468771377,0.742700531228623,0.48437116581740425,0.42954571873213626,2.250087747723531,0.010098041051706573,1.730643050983924,0.08405206988062329,1.1635981327203377,0.48829110990902336,2.4104680690794393,0.02915578159137823,2.314457858457395,0.013054262827494433 +38053,0.49816821844233616,0.010984825985346409,0.08922394942791355,0.41078795989864497,0.03169440707564064,0.014198613571298537,0.02205043513151757,0.17910405787606737,0.8208959421239326,0.3552230906484073,0.44798483017564195,1.087970926040152,0.010098041051706573,1.06019159547197,0.08405206988062329,1.0202005869817752,0.48829110990902336,1.0875441891759938,0.02915578159137823,1.0876587154581405,0.013054262827494433 +38055,0.5432073300683928,0.01626347528644486,0.11932213629371853,0.42586412762065207,0.0478012115574247,0.021187301074069177,0.029939719856867907,0.21966223518871736,0.7803377648112826,0.400606400808641,0.4432377419684516,1.6109533170004067,0.010098041051706573,1.4169771841420933,0.08405206988062329,1.1126982936131344,0.48829110990902336,1.6338061284692955,0.02915578159137823,1.619019881374279,0.013054262827494433 +38057,0.515742534906495,0.012293754135624294,0.09953950775740236,0.4167761611124774,0.03551792682838936,0.015867958681297943,0.02383699870295393,0.19300232387357588,0.8069976761264241,0.35682240779162416,0.44675914666885164,1.2190803796021563,0.010098041051706573,1.1835681639448068,0.08405206988062329,1.0563578043046835,0.48829110990902336,1.2173922681178564,0.02915578159137823,1.2185065120629899,0.013054262827494433 +38059,0.5022896125275627,0.011728251608634638,0.0934827723782712,0.41044144735449695,0.03421513172162095,0.015242164943603448,0.0233495802344331,0.18611329011535435,0.8138867098846456,0.36600467499157946,0.44548023569266987,1.1620455007724662,0.010098041051706573,1.110466369916458,0.08405206988062329,1.0285854079472998,0.48829110990902336,1.1715700601327255,0.02915578159137823,1.16527297307075,0.013054262827494433 +38061,0.49367115244966364,0.01150985062790446,0.09007026300823881,0.40555833880310094,0.03386045474417784,0.014988057755991204,0.0233148130507343,0.18244992149388894,0.81755007850611106,0.3759337833961981,0.4426419511855001,1.1404501722428815,0.010098041051706573,1.069158997853509,0.08405206988062329,1.0111509437103354,0.48829110990902336,1.1554927082809567,0.02915578159137823,1.1442299188840188,0.013054262827494433 +38063,0.5516288684201465,0.019081871640702137,0.1304277843782214,0.42283025092384907,0.05812381479957347,0.025342349914065122,0.034591865533347116,0.2364411869011929,0.7635588130988071,0.4456398234215415,0.43600630828262654,1.8903070638063668,0.010098041051706573,1.542059325482235,0.08405206988062329,1.1294530372746008,0.48829110990902336,1.9790738883198415,0.02915578159137823,1.925239438663911,0.013054262827494433 +38065,0.5273798459936605,0.014156190130854798,0.10771874643737805,0.421059250616336,0.04105853479228381,0.018272483302018652,0.026842493581040194,0.20425267908071124,0.7957473209192888,0.3811642462452258,0.4450349578829254,1.4026432214723,0.010098041051706573,1.2763375224356732,0.08405206988062329,1.0801483395073657,0.48829110990902336,1.4059774386970134,0.02915578159137823,1.4025484838010633,0.013054262827494433 +38067,0.5271943765845855,0.015104541478291038,0.11154808338315134,0.41794594000718777,0.0459471694747957,0.020102157653280037,0.028650801581279,0.21158815104556422,0.7884118489544358,0.41190460724433875,0.4375058982535816,1.4954179070555125,0.010098041051706573,1.3177746268199122,0.08405206988062329,1.079431407638022,0.48829110990902336,1.5664192963557193,0.02915578159137823,1.5250865454308131,0.013054262827494433 +38069,0.5311864122932624,0.017243277226808018,0.11867278769836265,0.4138693476140364,0.052665392489936694,0.022898410107457506,0.03246181910483092,0.223410812008581,0.776589187991419,0.4437865959953625,0.4347904577343259,1.7082247049195716,0.010098041051706573,1.4038743927536004,0.08405206988062329,1.0870876420158222,0.48829110990902336,1.7894971467332272,0.02915578159137823,1.7388936874974386,0.013054262827494433 +38071,0.5119695108631885,0.01342097915875393,0.10143807322879536,0.41262505823848494,0.040262490087979386,0.017669046001564683,0.026214410963898906,0.19813303541800603,0.801866964581994,0.3969169445595307,0.43884632974650234,1.3285550852840726,0.010098041051706573,1.201135911078509,0.08405206988062329,1.048287617778803,0.48829110990902336,1.3730528469366337,0.02915578159137823,1.3466952103985925,0.013054262827494433 +38073,0.5175155562605833,0.014801263143291783,0.10768327781176834,0.41196939851084263,0.045637656666628564,0.019858160842993203,0.028600614926904612,0.20807737373124846,0.7919226262687515,0.4238137767908935,0.43512665402722145,1.464919265720845,0.010098041051706573,1.272982923448371,0.08405206988062329,1.059013866912399,0.48829110990902336,1.5541547925515262,0.02915578159137823,1.5016616538539858,0.013054262827494433 +38075,0.5254977500511595,0.014576284180548623,0.10850779791836775,0.41828335953552487,0.04238687808852932,0.018849118831205124,0.02773805250189855,0.20648575166649913,0.7935142483335009,0.3906343958838579,0.44469231236697393,1.446406232866285,0.010098041051706573,1.2918768003783976,0.08405206988062329,1.0762871676576042,0.48829110990902336,1.4504141126585581,0.02915578159137823,1.4439496902471562,0.013054262827494433 +38077,0.4983312809573493,0.011853170366048847,0.0924251418987616,0.40792877717922277,0.035220555391235364,0.015558687235618662,0.023785724113641032,0.18546927602297555,0.8145307239770244,0.38107115301823824,0.4417501956681365,1.17339782703911,0.010098041051706573,1.0956702683116788,0.08405206988062329,1.0203265514738575,0.48829110990902336,1.202208505800275,0.02915578159137823,1.1842248962685047,0.013054262827494433 +38079,0.46667054820357345,0.008257695275017657,0.07086846110107477,0.3971791438675567,0.02327508668852514,0.010573406948098217,0.017694914124761613,0.15185972496845923,0.8481402750315408,0.3284265853512679,0.45428002437090886,0.818830413106684,0.010098041051706573,0.8461984833470688,0.08405206988062329,0.9556695430855133,0.48829110990902336,0.8001494833153515,0.02915578159137823,0.8075328900713976,0.013054262827494433 +38081,0.5230952411628853,0.013774321288986424,0.1048974997743779,0.41930808325116126,0.03932801943977907,0.017641519313532417,0.026332339132669098,0.20053231518830456,0.7994676848116955,0.3749185588252245,0.4485738047537824,1.365493776111967,0.010098041051706573,1.2496953537877282,0.08405206988062329,1.0713982310963854,0.48829110990902336,1.3476180252278,0.02915578159137823,1.353368635581718,0.013054262827494433 +38083,0.5695364787821778,0.019571655015264276,0.13738342579565865,0.43371831059486005,0.057793994793024966,0.025466277248958127,0.03436418165367342,0.24121971272045886,0.7587802872795412,0.42067661698134234,0.44063881273754063,1.941333227591925,0.010098041051706573,1.6303794181896425,0.08405206988062329,1.1653972670254982,0.48829110990902336,1.9691559557467844,0.02915578159137823,1.9490237148175458,0.013054262827494433 +38085,0.445573777266479,0.005943828404841492,0.05690849865631921,0.38825493471908085,0.0161231747993676,0.007444725798678678,0.013339717703554932,0.12771958665396196,0.872280413346038,0.2833175216365905,0.4617406863920301,0.5892303044157579,0.010098041051706573,0.6843062205926753,0.08405206988062329,0.9126321601674523,0.48829110990902336,0.557637096728266,0.02915578159137823,0.5726092262074574,0.013054262827494433 +38087,0.520928112864652,0.013001829461724302,0.10195263142407163,0.4201495781276301,0.03647524175895976,0.01658408449235088,0.02495897061539938,0.19571343704877192,0.8042865629512281,0.35776655540396124,0.45466688341488987,1.289561391599399,0.010098041051706573,1.2138873363209175,0.08405206988062329,1.067319739431913,0.48829110990902336,1.2519845970568944,0.02915578159137823,1.267655553578582,0.013054262827494433 +38089,0.5000383308460875,0.012403919562462059,0.09497673662561293,0.407114947693294,0.0369879909146793,0.01625465318462626,0.024805937459782462,0.18993891221280573,0.8100610877871943,0.3894426385745553,0.43945758562883525,1.2287191496077041,0.010098041051706573,1.1268840803561573,0.08405206988062329,1.0243308668879207,0.48829110990902336,1.2600213354331724,0.02915578159137823,1.239153837271124,0.013054262827494433 +38091,0.5284998956194267,0.01582828677793002,0.11317040301025941,0.41632897762274995,0.046889034092531284,0.02062256321017633,0.029949460556427405,0.21413514732603378,0.7858648526739662,0.41432240979366824,0.43981633678952653,1.5699547056065395,0.010098041051706573,1.3437911437961287,0.08405206988062329,1.0817906577889578,0.48829110990902336,1.5956614348970488,0.02915578159137823,1.5759072333656199,0.013054262827494433 +38093,0.5107832077566077,0.013129457918060836,0.10028485367842853,0.4121504285725137,0.03915701582908846,0.017250139262363472,0.02570456060160288,0.1963354553468701,0.8036645446531299,0.39045792453014483,0.4405376379460692,1.30018738314853,0.010098041051706573,1.1891556880463596,0.08405206988062329,1.0454368111939658,0.48829110990902336,1.335880437887468,0.02915578159137823,1.3152722004124087,0.013054262827494433 +38095,0.542158826947919,0.017812775611492308,0.12334250750067505,0.42018111657401475,0.05381518655785038,0.023483651902357586,0.03285527178773287,0.22750253499519915,0.7724974650048009,0.43630689571927056,0.4363759266561879,1.7648369335465026,0.010098041051706573,1.459844309361252,0.08405206988062329,1.1093035516494592,0.48829110990902336,1.8316674024119612,0.02915578159137823,1.7901080585408073,0.013054262827494433 +38097,0.5131130496170295,0.01397078433945343,0.10339889830416663,0.4121851516067895,0.041993282289544784,0.018421836190160558,0.02722749762431643,0.2015128993139818,0.7984871006860181,0.40612891412067004,0.43868531312083475,1.384122127020799,0.010098041051706573,1.224236417308146,0.08405206988062329,1.0507601887888818,0.48829110990902336,1.4295092714524729,0.02915578159137823,1.401186803416517,0.013054262827494433 +38099,0.520350247577779,0.014673408458769256,0.10837026577562242,0.4140091415099758,0.044703115519911796,0.019532654822874324,0.02819909960084329,0.20826408035757463,0.7917359196424254,0.41250351468610713,0.43694168953781376,1.452171130012039,0.010098041051706573,1.2811029772875442,0.08405206988062329,1.0654298361500367,0.48829110990902336,1.521792500344622,0.02915578159137823,1.4808629224621723,0.013054262827494433 +38101,0.4781115289949216,0.00995532920304088,0.08091714129212157,0.3989027574881215,0.029452223708546846,0.013038837227066363,0.02082219021986107,0.16924323381664585,0.8307567661833541,0.3639800323916588,0.44271146912695003,0.9859434889998417,0.010098041051706573,0.9616630356541195,0.08405206988062329,0.9793753596133252,0.48829110990902336,1.0060500796071241,0.02915578159137823,0.9937687282142109,0.013054262827494433 +38103,0.5626300458591853,0.020580600715289707,0.13693122077241823,0.4275167403345477,0.06203208628821856,0.02704412036381771,0.036579277745221246,0.24337701439906623,0.7566229856009338,0.4530163825189058,0.4359698662747389,2.0420094188385116,0.010098041051706573,1.622065225635054,0.08405206988062329,1.1513551729605345,0.48829110990902336,2.1104352882473134,0.02915578159137823,2.062361883473595,0.013054262827494433 +38105,0.5032072843883479,0.0122250423205577,0.09529715398225153,0.4100650901225945,0.0361157930193218,0.01599261794458271,0.024294247519523346,0.1893795200085108,0.8106204799914892,0.37898081432786684,0.44281508469235953,1.2106567673168203,0.010098041051706573,1.1311040107995485,0.08405206988062329,1.030535964466214,0.48829110990902336,1.2331957275084615,0.02915578159137823,1.2194468030319663,0.013054262827494433 +39001,0.4975610471952857,0.010938645250906254,0.08895632444030095,0.41056278348145353,0.031164627673213027,0.01409830618175158,0.021984528958941978,0.1787847439861723,0.8212152560138277,0.3503362787221247,0.45238166582909367,1.084026236482498,0.010098041051706573,1.0575839807483756,0.08405206988062329,1.0188476554040786,0.48829110990902336,1.0713004807821789,0.02915578159137823,1.077052325009345,0.013054262827494433 +39003,0.4945869611858502,0.011268593877515404,0.08940406925931713,0.4072772290993729,0.03306910383070479,0.014677249791044067,0.022783847456263655,0.18076511569362197,0.819234884306378,0.3698836541185572,0.44383572854539177,1.116199616473022,0.010098041051706573,1.06117865603012,0.08405206988062329,1.012483643860927,0.48829110990902336,1.130249249889761,0.02915578159137823,1.1208812904783851,0.013054262827494433 +39005,0.497769138976219,0.011659801656731746,0.09167092956559164,0.40814175739948677,0.03411666743271527,0.015151975660545262,0.02342411520471701,0.18416354568331572,0.8158364543166843,0.37216451926893995,0.44412238359528866,1.1548232567355958,0.010098041051706573,1.087886214465596,0.08405206988062329,1.0194361493052893,0.48829110990902336,1.1665915620699767,0.02915578159137823,1.1586500884749777,0.013054262827494433 +39007,0.5032427066532237,0.011718726069757232,0.09343796784084532,0.4113126221755463,0.03413392191625495,0.0152004757428063,0.023286430016426277,0.18567177746548424,0.8143282225345158,0.36531104758609384,0.44531875886103983,1.1614010415896585,0.010098041051706573,1.1099428963865723,0.08405206988062329,1.0303503845450757,0.48829110990902336,1.1689541398366674,0.02915578159137823,1.1636155173347138,0.013054262827494433 +39009,0.45501784809979234,0.007939246740160734,0.06847421825624614,0.38732906178293947,0.022759291735658695,0.01023360958971815,0.017448209500607405,0.15048688428861082,0.8495131157113892,0.3323775329641331,0.44964534523209193,0.7857419920334695,0.010098041051706573,0.8156430796117171,0.08405206988062329,0.9326908216803158,0.48829110990902336,0.7822569303155777,0.02915578159137823,0.7826395757593789,0.013054262827494433 +39011,0.4980990446157794,0.011520073439926441,0.09122945026491318,0.4087718143895021,0.033754796437259954,0.014991203825614231,0.023128077767771517,0.18315524041064,0.81684475958936,0.3699989021006086,0.4441207001048987,1.1412523539347017,0.010098041051706573,1.0835571982219494,0.08405206988062329,1.0195510009669733,0.48829110990902336,1.1538878173864702,0.02915578159137823,1.1448332078423276,0.013054262827494433 +39013,0.5148203947780523,0.01359790766967513,0.103135468224066,0.41332366258060865,0.04042946449575502,0.017823068321522247,0.0264129156645735,0.20033291079800641,0.7996670892019936,0.3920034997845781,0.44084354180337015,1.3477177205292201,0.010098041051706573,1.2235031330255275,0.08405206988062329,1.0541368420644281,0.48829110990902336,1.3768705656761855,0.02915578159137823,1.3583857940980133,0.013054262827494433 +39015,0.4967411692083099,0.010620635108821875,0.08793844930471925,0.41041413609117816,0.030215886130456525,0.013688320107999162,0.021380621875470282,0.17703072496461833,0.8229692750353816,0.3436026717477605,0.4530173316413788,1.0526715830048041,0.010098041051706573,1.0459042016197193,0.08405206988062329,1.0171585938362737,0.48829110990902336,1.0378248363157965,0.02915578159137823,1.045283967214794,0.013054262827494433 +39017,0.48189596515506194,0.009200358216822201,0.07926794361809619,0.4039147120031988,0.02633625750774366,0.011864417372683771,0.01909200093398117,0.1644918184624969,0.8355081815375031,0.33224348085310135,0.4504974698548293,0.9114892968084269,0.010098041051706573,0.9450654416061428,0.08405206988062329,0.9869358715041281,0.48829110990902336,0.9042342861026851,0.02915578159137823,0.9085909893014744,0.013054262827494433 +39019,0.5102257515268024,0.012084190332226383,0.0963651127455046,0.4148815819563979,0.034457770942394876,0.015544636153946162,0.02368400712050614,0.18886759920905816,0.8111324007909418,0.35757516346601603,0.4511213502444213,1.1981754893701613,0.010098041051706573,1.1462379887450855,0.08405206988062329,1.0446421847550287,0.48829110990902336,1.1822466001933614,0.02915578159137823,1.1892003653723422,0.013054262827494433 +39021,0.49500749492678525,0.010920464556456164,0.08842713544389476,0.40843588602164543,0.031170200542420416,0.014029828288019651,0.02206121052383534,0.1786379728593275,0.8213620271406725,0.35249587568283586,0.4501038826787802,1.0821754030483155,0.010098041051706573,1.0516334906766387,0.08405206988062329,1.0135436946659135,0.48829110990902336,1.0694180096182913,0.02915578159137823,1.0744396871559128,0.013054262827494433 +39023,0.5034768298078673,0.012076943924100136,0.09438709294040104,0.41055864536530445,0.035024371775651236,0.015608338351958705,0.023987089790624208,0.18747057928449312,0.8125294207155069,0.371071623084808,0.44564220743024263,1.1978012638819404,0.010098041051706573,1.122095164926559,0.08405206988062329,1.0310633393355895,0.48829110990902336,1.1998536819805263,0.02915578159137823,1.1962299638610019,0.013054262827494433 +39025,0.4890560280348576,0.009409234903768406,0.08180813865437163,0.40887359223316777,0.026602925842828203,0.012172762263520416,0.01923958476000578,0.1672776409343036,0.8327223590656964,0.3251867880190012,0.45757231123515807,0.9335175574891965,0.010098041051706573,0.9758822436954346,0.08405206988062329,1.0016699876340653,0.48829110990902336,0.9133157252608541,0.02915578159137823,0.9248637635934305,0.013054262827494433 +39027,0.4897309839707916,0.010197404983290395,0.08481689353105189,0.40670066956728146,0.02919782604136797,0.013149962740457311,0.020822462366192836,0.17319078495574727,0.8268092150442528,0.3442454070860129,0.45037472042700105,1.010394462687223,0.010098041051706573,1.0090982374657715,0.08405206988062329,1.0031093421238984,0.48829110990902336,1.0021104983699947,0.02915578159137823,1.0060370248611554,0.013054262827494433 +39029,0.509110088302883,0.012517243168523946,0.09764650670893343,0.41286556181466055,0.03638361148470347,0.01620678628091827,0.024586515679251495,0.19179841246995868,0.8082015875300413,0.3726053569244052,0.4454419344196215,1.2417397927520188,0.010098041051706573,1.1606627003681504,0.08405206988062329,1.042610174109274,0.48829110990902336,1.2459549699784973,0.02915578159137823,1.2419005165795358,0.013054262827494433 +39031,0.5033269862104508,0.01183573757902944,0.09345433964169625,0.4113718236374374,0.03418292807102534,0.015271653263723092,0.023515006950334046,0.18567321483259627,0.8143267851674038,0.3657714366404237,0.44676258370820743,1.1732269148735477,0.010098041051706573,1.1109406819613996,0.08405206988062329,1.0304084092670953,0.48829110990902336,1.171535366103557,0.02915578159137823,1.1706237342770067,0.013054262827494433 +39033,0.5087885446101473,0.012611318437649337,0.09762871357537989,0.4124674686266387,0.03661782350630514,0.01630865271990662,0.024786954366892433,0.1918846534765963,0.8081153465234037,0.37507227295412665,0.4453747153240408,1.251017429649264,0.010098041051706573,1.1601609270908861,0.08405206988062329,1.0417216980450417,0.48829110990902336,1.253877880409604,0.02915578159137823,1.2498598838817467,0.013054262827494433 +39035,0.5013440577309072,0.011845992894809275,0.09350673823147618,0.40972523451811615,0.03504040352596083,0.01551361114356268,0.02362846973478546,0.18651211037523704,0.8134878896247629,0.3747366680593458,0.44273494544858516,1.1732478339978707,0.010098041051706573,1.1089309002955967,0.08405206988062329,1.0264975644964198,0.48829110990902336,1.1956838606965992,0.02915578159137823,1.1828588688127244,0.013054262827494433 +39037,0.5043005118708647,0.012308486701632865,0.09537002900723247,0.41106458200368595,0.03637065059296492,0.016083364653164477,0.024407047805624034,0.18911348841076273,0.8108865115892373,0.38136352658765277,0.44220723003166296,1.2189816506917674,0.010098041051706573,1.1301962245208492,0.08405206988062329,1.0322283721503442,0.48829110990902336,1.2410946186757852,0.02915578159137823,1.2272806587948497,0.013054262827494433 +39039,0.4972427515007202,0.01134908511900323,0.09039292163042897,0.4089240323947741,0.032810086087377496,0.014649258963881208,0.02282403330114062,0.18178831437485127,0.8182116856251487,0.3629718510650798,0.44648645312506463,1.1244643558000407,0.010098041051706573,1.0743063356558686,0.08405206988062329,1.018078797616253,0.48829110990902336,1.1248767917136673,0.02915578159137823,1.1226785983810585,0.013054262827494433 +39041,0.4779432860195159,0.007826600393829437,0.0736148867624291,0.4046573526649698,0.022021171215652672,0.010110056515407875,0.01637558392965866,0.15402431400495323,0.8459756859950468,0.2991401900368288,0.4591062126714512,0.7763095579586236,0.010098041051706573,0.8795999675198548,0.08405206988062329,0.9786538009956138,0.48829110990902336,0.756654156704806,0.02915578159137823,0.7704271296043552,0.013054262827494433 +39043,0.5127585471820345,0.012738393663692189,0.09921112592288353,0.4146904521353111,0.036709988170077576,0.01639746788419106,0.024842869482524548,0.1934850749307209,0.8065149250692791,0.370018864604078,0.4466759239534892,1.26312949350055,0.010098041051706573,1.1798714814011193,0.08405206988062329,1.050106385958684,0.48829110990902336,1.257830830963413,0.02915578159137823,1.259249575107928,0.013054262827494433 +39045,0.4888304726177596,0.009619401822131942,0.08231518748104388,0.40802887743480576,0.02736789342864126,0.01243032927291559,0.019678400510955506,0.16839209519863577,0.8316079048013643,0.33247684013285794,0.45419386425653446,0.9537977418722405,0.010098041051706573,0.9807403131124346,0.08405206988062329,1.0010862859601224,0.48829110990902336,0.9398144343417161,0.02915578159137823,0.9480618116748408,0.013054262827494433 +39047,0.4978919057100582,0.011396285054012583,0.09053104268440884,0.409152807909106,0.03263475358699745,0.01463033835337344,0.022889074763647762,0.18182870949729515,0.8181712905027049,0.36048136218603144,0.44830546412345373,1.1295883085816918,0.010098041051706573,1.0769236413005245,0.08405206988062329,1.0191454506917126,0.48829110990902336,1.1191202117779953,0.02915578159137823,1.1213015975671148,0.013054262827494433 +39049,0.4728318115841028,0.008194991682848634,0.07351925262103592,0.40033036287076273,0.023539827368844614,0.010600986722450141,0.017331726593000155,0.15548711152646086,0.8445128884735391,0.32018589049297824,0.450342585624937,0.8114077825538064,0.010098041051706573,0.8785542420326533,0.08405206988062329,0.9678569234808236,0.48829110990902336,0.8076952024556552,0.02915578159137823,0.8113167735851337,0.013054262827494433 +39051,0.49509737008261057,0.010746597896065885,0.08793098625211579,0.4089559966875608,0.031151314282961213,0.013901446923965404,0.021706029046918058,0.17760342018670766,0.8223965798132924,0.3542700430272002,0.44625555113637877,1.0642853297924864,0.010098041051706573,1.044951705316516,0.08405206988062329,1.0133049362529176,0.48829110990902336,1.0681075487098266,0.02915578159137823,1.064952196007337,0.013054262827494433 +39053,0.501504325698295,0.011686175980545626,0.0923759069338157,0.41061587636300384,0.03319224057389267,0.015004597846139264,0.023302243633240426,0.18419762741864973,0.8158023725813502,0.35931707385210104,0.45205137064296647,1.1585150653611143,0.010098041051706573,1.0993818820996135,0.08405206988062329,1.026983947082011,0.48829110990902336,1.1382010833937546,0.02915578159137823,1.1455580325397383,0.013054262827494433 +39055,0.5065275282520261,0.01153720130837953,0.09353211608192634,0.4138852957322191,0.03323900286036652,0.01489827906562105,0.02277704698142116,0.1846535693818971,0.8153464306181029,0.35537528982293015,0.4482167870139523,1.1424859275178059,0.010098041051706573,1.111316393689627,0.08405206988062329,1.0373932560629724,0.48829110990902336,1.1401935779251524,0.02915578159137823,1.1418498642191293,0.013054262827494433 +39057,0.4886094388528597,0.010503033739397614,0.08561399657142935,0.4046494978645008,0.030363619817530635,0.01357109541852578,0.02149576513310155,0.17521969443003582,0.8247803055699642,0.3546571943081492,0.4469524878812512,1.040232056246659,0.010098041051706573,1.0188871616217527,0.08405206988062329,1.001205489704587,0.48829110990902336,1.0404511373672256,0.02915578159137823,1.0396230561382018,0.013054262827494433 +39059,0.5027325416535211,0.011800887772807684,0.09333136906806642,0.4107490012072534,0.034020409869532864,0.015207429756282878,0.02347349096200093,0.18564815550052377,0.8143518444994762,0.36451206287054283,0.4470090106087159,1.1701844857667882,0.010098041051706573,1.1096700778287722,0.08405206988062329,1.0293354766452243,0.48829110990902336,1.166115390431748,0.02915578159137823,1.1667344685155536,0.013054262827494433 +39061,0.4903562674439591,0.010505503192163078,0.0859502139235428,0.4060556470582412,0.03072100605794787,0.013668665350966856,0.02142422538397291,0.17528115704846314,0.8247188429515369,0.3574279185072862,0.4449289624559876,1.0402326126161867,0.010098041051706573,1.021107967763292,0.08405206988062329,1.0042694437011948,0.48829110990902336,1.0525042164422382,0.02915578159137823,1.0450952932565643,0.013054262827494433 +39063,0.4925349054206011,0.01090525654251086,0.08796837973001805,0.4064962082935383,0.03191525857371878,0.01418586947183592,0.022141083652128767,0.1786033411274624,0.8213966588725377,0.36280375598219783,0.44448549395484266,1.0797986201601895,0.010098041051706573,1.0445884650148707,0.08405206988062329,1.008613489706491,0.48829110990902336,1.0924853117114481,0.02915578159137823,1.0847210490984562,0.013054262827494433 +39065,0.4808984317466227,0.010131563315993575,0.08202882757268343,0.4007459994265084,0.029478814644752136,0.013127155614564784,0.021067989927094886,0.170574121597267,0.829425878402733,0.3593714004827363,0.4453081228929841,1.002855035463735,0.010098041051706573,0.9756290855943268,0.08405206988062329,0.9857888799991863,0.48829110990902336,1.0102097879422554,0.02915578159137823,1.0037486288623887,0.013054262827494433 +39067,0.5163438247540815,0.013015332954639566,0.10141271765684728,0.4162363017039552,0.03806195206199653,0.016911583112998636,0.025206717560413094,0.19640540429654021,0.8035945957034598,0.3753173462009735,0.4443172826620271,1.289415019082035,0.010098041051706573,1.2027583639095025,0.08405206988062329,1.057434500913455,0.48829110990902336,1.302271864016492,0.02915578159137823,1.2944543938976054,0.013054262827494433 +39069,0.4978870468934151,0.011467216561818653,0.09093724410033577,0.40888025140129536,0.03371443823506082,0.0149549736589117,0.02303176319482256,0.1826463344803648,0.8173536655196352,0.37074400668951363,0.44357772046041394,1.1361309334987655,0.010098041051706573,1.0798717543598584,0.08405206988062329,1.01907302904211,0.48829110990902336,1.1517354504935575,0.02915578159137823,1.141115114785162,0.013054262827494433 +39071,0.49584830472765307,0.011153853001633364,0.08915593416038586,0.40869287309352187,0.03206575026630123,0.014332389496384388,0.022494486509860447,0.17980485828091147,0.8201951417190885,0.35965918105481326,0.44696878686311875,1.1046352465337157,0.010098041051706573,1.0593043560183835,0.08405206988062329,1.015200058902502,0.48829110990902336,1.098942708079659,0.02915578159137823,1.1003080050833085,0.013054262827494433 +39073,0.5012294186469275,0.011168602501940038,0.09109625643060576,0.41149040866172026,0.03191987191327983,0.014392906542454361,0.022282416168008978,0.18174562992834853,0.8182543700716515,0.35039718605336295,0.45090740281029723,1.1066256448253213,0.010098041051706573,1.0828250375657766,0.08405206988062329,1.026181500113541,0.48829110990902336,1.0956087420453864,0.02915578159137823,1.1011663264391698,0.013054262827494433 +39075,0.46625577573098753,0.008659267093694769,0.07145008140784959,0.3961588978391485,0.024934268557805683,0.011134453443364493,0.0185719245624763,0.15324224412197665,0.8467577558780234,0.34897466967849217,0.44655223864101873,0.8570816611309287,0.010098041051706573,0.8528441930788018,0.08405206988062329,0.9546582181760517,0.48829110990902336,0.8552341482737684,0.02915578159137823,0.8528719238577127,0.013054262827494433 +39077,0.49077513014779506,0.010397964457219975,0.08532888954599044,0.4072303041872821,0.029899105304988984,0.013402048200889641,0.0211868202329011,0.17386555329381498,0.8261344467061851,0.350398387510645,0.4482424495375575,1.0299418293214506,0.010098041051706573,1.014909947096362,0.08405206988062329,1.0048521155867935,0.48829110990902336,1.0252030392271891,0.02915578159137823,1.0266735512690595,0.013054262827494433 +39079,0.49681235838946025,0.010795283512470005,0.08858356211281657,0.41004406768307367,0.0309374670708317,0.01391603410951359,0.021729096167143625,0.1783038618443028,0.8216961381556972,0.3492461392716512,0.4498116823091129,1.0695166904404498,0.010098041051706573,1.053456240174825,0.08405206988062329,1.017365722708617,0.48829110990902336,1.0615238716161988,0.02915578159137823,1.065063001011413,0.013054262827494433 +39081,0.5177808794785393,0.013723232299547607,0.10416117945496489,0.41515456850218907,0.04052704378867776,0.017931442821112482,0.02650393794643087,0.20116845481020143,0.7988315451897986,0.3890801160349766,0.4424562253939202,1.36066841875346,0.010098041051706573,1.2363962569409468,0.08405206988062329,1.0606313556839806,0.48829110990902336,1.3824453035406168,0.02915578159137823,1.3676034332319467,0.013054262827494433 +39083,0.4937996927348521,0.01092104150803096,0.08803019358369787,0.40790986026606735,0.031502841900389766,0.014086570521036162,0.02211633921346942,0.17827105783754724,0.8217289421624527,0.35786405343340866,0.44715237328673757,1.0813968684919493,0.010098041051706573,1.0464704131907618,0.08405206988062329,1.011412079335495,0.48829110990902336,1.0803495277815651,0.02915578159137823,1.0794348490243002,0.013054262827494433 +39085,0.5090987665406677,0.012018112109063783,0.09606470279479129,0.414257098993295,0.03493512165901644,0.015576399090312151,0.02360664157708926,0.18869561096671303,0.8113043890332869,0.36366241338031446,0.44586646190459234,1.1917948690073996,0.010098041051706573,1.1414396328282503,0.08405206988062329,1.042221605278729,0.48829110990902336,1.1970439906042616,0.02915578159137823,1.193588490244713,0.013054262827494433 +39087,0.502741549760702,0.011552578997717857,0.0925768162304869,0.4115571584746943,0.033268245757950544,0.014871964574926674,0.02297916096892474,0.18414395284128035,0.8158560471587196,0.35935828334302583,0.4470318237736514,1.1447028356430684,0.010098041051706573,1.099352093809284,0.08405206988062329,1.0292596109653775,0.48829110990902336,1.1391160224712742,0.02915578159137823,1.141406786360394,0.013054262827494433 +39089,0.49346638943479376,0.010098927739150314,0.08533292379919909,0.40972200662469194,0.028734144780540233,0.013025481678303221,0.02046527981514084,0.17292550339028695,0.827074496609713,0.336729875190447,0.45331022648443436,1.0006055210407534,0.010098041051706573,1.0163188894132367,0.08405206988062329,1.0106561511116585,0.48829110990902336,0.9868702086353307,0.02915578159137823,0.9945757487869096,0.013054262827494433 +39091,0.4992408824768868,0.011210367057146337,0.09029744029611785,0.41062611840558005,0.032278827793398704,0.014427858253695426,0.022454825817806175,0.1808694829800889,0.8191305170199111,0.3574722349553298,0.44697590464068976,1.1104248823454572,0.010098041051706573,1.0729940560099196,0.08405206988062329,1.021968502439936,0.48829110990902336,1.1060973320950482,0.02915578159137823,1.1073435132406018,0.013054262827494433 +39093,0.4975945012244507,0.010952479122225122,0.0896025288854669,0.4097475441665768,0.03176063615541443,0.014165350114623877,0.022010852401451217,0.1800713807427099,0.8199286192572901,0.35446138128547683,0.4460033497222322,1.0848161091269768,0.010098041051706573,1.0639375102765438,0.08405206988062329,1.018871668294611,0.48829110990902336,1.0887870456954196,0.02915578159137823,1.0866060889793605,0.013054262827494433 +39095,0.4893643093917077,0.01036523960593471,0.08511818102815549,0.405638727718559,0.03014250867367373,0.013436694018083244,0.021181028953294462,0.17393622582316956,0.8260637741768304,0.35412538554722117,0.44577225351580524,1.0264456911033155,0.010098041051706573,1.01211544023473,0.08405206988062329,1.0021090376032513,0.48829110990902336,1.0335915537403761,0.02915578159137823,1.0289402644055725,0.013054262827494433 +39097,0.4919935853888898,0.009785187312195787,0.0844531902639885,0.4086997531899563,0.02786014912223193,0.012674379250555458,0.019888851405371912,0.17165506374891776,0.8283449362510822,0.3298886523427371,0.45492862205972606,0.9701204458142854,0.010098041051706573,1.0054235797525528,0.08405206988062329,1.0072860419983978,0.48829110990902336,0.9561432999798514,0.02915578159137823,0.9656257861562997,0.013054262827494433 +39099,0.5136953506663876,0.013393284293201791,0.10170645958236323,0.41374956131217233,0.039764568110931,0.017555032676867283,0.026072426538078355,0.1979898386279441,0.8020101613720559,0.39097387003948486,0.4414742448074402,1.327138546972387,0.010098041051706573,1.2060875218865204,0.08405206988062329,1.0521166079852406,0.48829110990902336,1.3554259825418433,0.02915578159137823,1.3379199226864862,0.013054262827494433 +39101,0.49839192343035077,0.011127614145498683,0.09057715205802885,0.40932647500514285,0.032157363540234546,0.014388677028097312,0.02232703545617096,0.18173880394088454,0.8182611960591155,0.35502731990991193,0.4474457929392916,1.1030955606782578,0.010098041051706573,1.0760799721202352,0.08405206988062329,1.0207028021549296,0.48829110990902336,1.1029383995711073,0.02915578159137823,1.1027811584670764,0.013054262827494433 +39103,0.49493672008209344,0.010089355737558741,0.08613245530007596,0.41024670696764143,0.028849848068841704,0.013022318291757089,0.020385142843887708,0.17402720753026663,0.8259727924697333,0.33494747094265476,0.4513825605141193,0.9994794900182506,0.010098041051706573,1.0242625677705557,0.08405206988062329,1.0136932994605634,0.48829110990902336,0.9904906483129479,0.02915578159137823,0.9968243773990628,0.013054262827494433 +39105,0.5058997469440496,0.011754312215964815,0.09419031701613889,0.4129903775744722,0.03363103722044994,0.01511476362715759,0.023234469451641756,0.1861837598953295,0.8138162401046705,0.3570540824773685,0.4494290059530722,1.1656891846582853,0.010098041051706573,1.1210463701259106,0.08405206988062329,1.0358218723239312,0.48829110990902336,1.1530561660114658,0.02915578159137823,1.1578039339572466,0.013054262827494433 +39107,0.49932261212027906,0.011740855521230775,0.09159515834829303,0.40953427523063496,0.03408616628235438,0.015169870949430885,0.023513566652580486,0.18343883518383336,0.8165611648161666,0.3721393892102989,0.44504479687655507,1.1635206552377617,0.010098041051706573,1.0892388690927417,0.08405206988062329,1.021866715132774,0.48829110990902336,1.1668344827645702,0.02915578159137823,1.161528477007438,0.013054262827494433 +39109,0.5028893034610071,0.011504300685619619,0.09239180016210577,0.41196883138538576,0.03315946251017941,0.01483121078639269,0.022876407603908473,0.18372194343018,0.81627805656982,0.3589004917319456,0.4472693362215914,1.1403976512397875,0.010098041051706573,1.0982815811433024,0.08405206988062329,1.0295761723060968,0.48829110990902336,1.1366843054858335,0.02915578159137823,1.1378150049426186,0.013054262827494433 +39111,0.5229755705896458,0.01400764608876264,0.10596549879566779,0.4185162987211478,0.04035232254967357,0.018022117488050812,0.026784513228733157,0.20262036078701254,0.7973796392129875,0.3808062341827367,0.44661908780753945,1.389228374837996,0.010098041051706573,1.2593281072010654,0.08405206988062329,1.0714735041029013,0.48829110990902336,1.3829169652147149,0.02915578159137823,1.3838523609490994,0.013054262827494433 +39113,0.49794098321226465,0.011455321106710874,0.09113672658838932,0.40882487217212293,0.03338584838505633,0.01485430665483655,0.02300537913712486,0.18302716518824708,0.8169728348117529,0.36632705205488075,0.4449282367640959,1.1350815537418992,0.010098041051706573,1.0819166383124865,0.08405206988062329,1.019649018753059,0.48829110990902336,1.1432467437122902,0.02915578159137823,1.1372349100373507,0.013054262827494433 +39115,0.5107773672188087,0.012747305223201812,0.0982673757823638,0.4141019735017886,0.03650130485233556,0.016320726279514162,0.024956675924407343,0.19238788186217276,0.8076121181378273,0.37144886145302464,0.44712720122031113,1.2632956187477908,0.010098041051706573,1.1674419661365496,0.08405206988062329,1.0459928161485164,0.48829110990902336,1.2505821787512177,0.02915578159137823,1.254079645293797,0.013054262827494433 +39117,0.4952387324404236,0.010215636374940412,0.08616238603729054,0.41080134975974747,0.028899514490163335,0.013194984439273232,0.02062770075474526,0.17398151718203045,0.8260184828179695,0.33540754637012726,0.4565815264392927,1.0129817779588863,0.010098041051706573,1.0258947531743017,0.08405206988062329,1.0141595362271691,0.48829110990902336,0.992211479842438,0.02915578159137823,1.0038030397127922,0.013054262827494433 +39119,0.49895638746084015,0.01143152125870198,0.09108306177892635,0.40990617889291237,0.03306712494460168,0.014762782247346465,0.02291086264448146,0.18254714052753732,0.8174528594724627,0.36304362522266825,0.4464489208565603,1.1328094804335573,0.010098041051706573,1.0824875824148057,0.08405206988062329,1.0218808478712331,0.48829110990902336,1.1337404588059112,0.02915578159137823,1.1316063698380416,0.013054262827494433 +39121,0.5257967306388345,0.014090730191377873,0.10799519697059391,0.41874030943901397,0.04056735115894709,0.018169213830936348,0.026798816672476956,0.20539343567119847,0.7946065643288015,0.37564032750450194,0.447877746805491,1.3975930267280572,0.010098041051706573,1.2829387330818933,0.08405206988062329,1.0767418400614297,0.48829110990902336,1.3898951426560777,0.02915578159137823,1.3927672034778928,0.013054262827494433 +39123,0.5248228261747653,0.013714937138082525,0.10575985859035522,0.4204374606560323,0.039290541828229913,0.017617095488922364,0.026132508827875312,0.20151535587961894,0.798484644120381,0.3715071327810287,0.4483800596576307,1.3600436582189923,0.010098041051706573,1.2566779429921648,0.08405206988062329,1.0751332668016698,0.48829110990902336,1.3470322503729855,0.02915578159137823,1.3525595183458994,0.013054262827494433 +39125,0.5001756987588547,0.011133379680696633,0.09055105383252098,0.4109928272653017,0.032086886918838854,0.0143422174256247,0.022258937625964655,0.18103849118862841,0.8189615088113715,0.35435133618859116,0.446980645455016,1.1029739206706224,0.010098041051706573,1.0771893358228821,0.08405206988062329,1.0239662572886716,0.48829110990902336,1.099934217864806,0.02915578159137823,1.100590816020944,0.013054262827494433 +39127,0.4895103139430309,0.009937149082949282,0.08379078845982325,0.40739048866319694,0.028468938816274162,0.012809912074038688,0.020300183264587487,0.17117267210344173,0.8288273278965583,0.33976215452280534,0.44996099632333153,0.9843967271614406,0.010098041051706573,0.9982172635193473,0.08405206988062329,1.0027811915247464,0.48829110990902336,0.9773884270699749,0.02915578159137823,0.9817698209645531,0.013054262827494433 +39129,0.49072265466786713,0.009912604941573078,0.08425272787759464,0.40780186400424434,0.02816839297931295,0.01281792881163608,0.02020001491123773,0.17169113159167046,0.8283088684083295,0.33433211824591597,0.4550465062401554,0.9831046201793672,0.010098041051706573,1.0040922291328447,0.08405206988062329,1.0048485087757033,0.48829110990902336,0.966730385484043,0.02915578159137823,0.9765203725047402,0.013054262827494433 +39131,0.49453582193197887,0.01097991152176742,0.08860186623873689,0.407934413406169,0.03209930802838589,0.014268823109634392,0.022202459427251877,0.17916167506855282,0.8208383249314471,0.36228704192183275,0.4445212057847559,1.087450859627284,0.010098041051706573,1.0515014996889662,0.08405206988062329,1.012295621443977,0.48829110990902336,1.0987212033633795,0.02915578159137823,1.0918101145292933,0.013054262827494433 +39133,0.48614170426881215,0.009728407327190972,0.0826194632789374,0.4045101186244584,0.02779593612017682,0.012544199313366209,0.02001146423309457,0.1699493430690179,0.8300506569309821,0.33643326907526616,0.45129616283225255,0.9640754407632424,0.010098041051706573,0.9852589040357913,0.08405206988062329,0.9959573179789274,0.48829110990902336,0.954436871073987,0.02915578159137823,0.9602295200189789,0.013054262827494433 +39135,0.5021512133620976,0.011394075624771136,0.09188555415646663,0.41167009621539313,0.03257911528597676,0.01466195181091716,0.022690526920135016,0.18298383377639799,0.817016166223602,0.3545618849998952,0.45004143550909126,1.1292496496796791,0.010098041051706573,1.0924650479617832,0.08405206988062329,1.0281587579304088,0.48829110990902336,1.1177475919740751,0.02915578159137823,1.1225523306204281,0.013054262827494433 +39137,0.49307650563216177,0.01078320521714759,0.08731276639837901,0.4076087703090142,0.031717759315110436,0.014072823075697663,0.021869233463725265,0.17707752326677453,0.8229224767332255,0.3632659990452357,0.4436890681932039,1.067529186139586,0.010098041051706573,1.0357563084996362,0.08405206988062329,1.0090498072401373,0.48829110990902336,1.0847276348638768,0.02915578159137823,1.0738904150764619,0.013054262827494433 +39139,0.504137678078368,0.012087452817269417,0.09470911108738908,0.4110050688429001,0.03502747515832354,0.015619235132482898,0.023976491626936935,0.18786358410740844,0.8121364158925916,0.3698427189967322,0.4459138165649749,1.1984602266287003,0.010098041051706573,1.1262252821461454,0.08405206988062329,1.0324960133656953,0.48829110990902336,1.200134956086321,0.02915578159137823,1.1967991283486819,0.013054262827494433 +39141,0.49662473972591725,0.01034839966881658,0.08744393050699437,0.410602281516726,0.029434923812703153,0.013389309335687275,0.02083746306019263,0.17607646883490718,0.8239235311650928,0.3366148301207566,0.45487834182566783,1.0259975385897377,0.010098041051706573,1.0413696995762947,0.08405206988062329,1.0170185971795922,0.48829110990902336,1.010179205603099,0.02915578159137823,1.0200855707106764,0.013054262827494433 +39143,0.5019085894136426,0.01158732071577013,0.09256751689547105,0.4108844585641913,0.03360877966889335,0.014986285844540684,0.023086516071197508,0.18443102757737928,0.8155689724226207,0.3630731469965323,0.44590389749888065,1.1483400625925062,0.010098041051706573,1.1000952817232503,0.08405206988062329,1.0275275158049038,0.48829110990902336,1.1518969607084342,0.02915578159137823,1.1484816342282431,0.013054262827494433 +39145,0.49923529513051257,0.011709897602312547,0.0923030972679989,0.40895161423496784,0.034089841332473184,0.015161833905494805,0.023455668532512887,0.18488896552049383,0.8151110344795062,0.36932499928463386,0.4447610582174226,1.161049538218104,0.010098041051706573,1.0956557180986661,0.08405206988062329,1.0222980293109045,0.48829110990902336,1.1672115784282027,0.02915578159137823,1.162138928494767,0.013054262827494433 +39147,0.4977683737792849,0.011337066614982471,0.09051714535094099,0.4094822770254567,0.03309761452156416,0.014728660960529742,0.022775787318318926,0.18184591492563795,0.818154085074362,0.3656502245319658,0.44500672249154233,1.1228864367087403,0.010098041051706573,1.0746183669396552,0.08405206988062329,1.0194682838978084,0.48829110990902336,1.133134317741999,0.02915578159137823,1.1261545984604011,0.013054262827494433 +39149,0.4900390210336426,0.009937170731082941,0.0836851843342381,0.4080067674937207,0.02871520126318082,0.012861788290141018,0.020278325407887723,0.1707724910512644,0.8292275089487355,0.343133632214903,0.44790869380507004,0.9840162794054852,0.010098041051706573,0.9953342604875103,0.08405206988062329,1.003076409122458,0.48829110990902336,0.9859101536245877,0.02915578159137823,0.9854379575447823,0.013054262827494433 +39151,0.5047143264932613,0.012084256692773727,0.09507007956116223,0.41123037052460293,0.03540848870643745,0.015731486309497965,0.0239427653594356,0.18836413902039603,0.8116358609796039,0.3724461878004195,0.4442857315917552,1.196968419229243,0.010098041051706573,1.128349984083867,0.08405206988062329,1.0334706766817199,0.48829110990902336,1.210657992529656,0.02915578159137823,1.201916763099415,0.013054262827494433 +39153,0.4982871862710865,0.011313371064570322,0.09109626589955451,0.40889998388788906,0.03308511787419893,0.014720708415653035,0.022704519354056665,0.18281880090329033,0.8171811990967097,0.3631885187333538,0.4449344406638133,1.1204608017415634,0.010098041051706573,1.0815675922261625,0.08405206988062329,1.020225480808484,0.48829110990902336,1.1325910681592144,0.02915578159137823,1.1254908138689552,0.013054262827494433 +39155,0.5106751938343379,0.012790419369111735,0.09906974280421797,0.4129860063519943,0.03744392340019096,0.016640539929929397,0.025046094902469306,0.1939975624434893,0.8060024375565107,0.3779551893476477,0.44441229494248274,1.2681769913714198,0.010098041051706573,1.176510905352551,0.08405206988062329,1.0457491729142245,0.48829110990902336,1.2798779403085025,0.02915578159137823,1.2715619370468332,0.013054262827494433 +39157,0.5059747268220625,0.012317896560721978,0.0960202890016604,0.4117729082522886,0.036109237225119696,0.01602543109078341,0.024344885046113866,0.18977289558462102,0.810227104415379,0.37605841016053687,0.4438041986562702,1.2201639558558268,0.010098041051706573,1.139151307817636,0.08405206988062329,1.0362091202796753,0.48829110990902336,1.2339711779485936,0.02915578159137823,1.2248726881410041,0.013054262827494433 +39159,0.4764930673039183,0.007897025163183687,0.07365955132430231,0.40381512114857565,0.022533112788748106,0.010248415605263052,0.0165732215326163,0.15458682692086376,0.8454131730791362,0.305908906362206,0.4548157949300547,0.7821850117187694,0.010098041051706573,0.8795251668347799,0.08405206988062329,0.9753986670353059,0.48829110990902336,0.7735240021251248,0.02915578159137823,0.7817614437315663,0.013054262827494433 +39161,0.5028340930449722,0.012123631939487945,0.09424162782851431,0.4104794723510154,0.03556670751186075,0.01577685567948811,0.024110600508553105,0.1874209190109263,0.8125790809890737,0.37739912108245094,0.4435849361155193,1.2011215071410706,0.010098041051706573,1.118174155032635,0.08405206988062329,1.029243627878917,0.48829110990902336,1.2146736291746794,0.02915578159137823,1.204525043872047,0.013054262827494433 +39163,0.49805755738381724,0.010731072366938457,0.0884604600282766,0.41127552465377404,0.030583448367066064,0.013832423582475254,0.021545847880125205,0.17761091808934537,0.8223890819106546,0.3457301528534895,0.4522846284845618,1.063417264052843,0.010098041051706573,1.0520151747915514,0.08405206988062329,1.019823479135006,0.48829110990902336,1.050893944572108,0.02915578159137823,1.0575273721451142,0.013054262827494433 +39165,0.4828471913655021,0.008722779826756313,0.0778713633008257,0.4055658249339648,0.024840922593176915,0.011291297877482596,0.01806530095388586,0.1612753779940271,0.8387246220059729,0.3189994567992046,0.4545442237553604,0.8643747292361044,0.010098041051706573,0.9292906799905162,0.08405206988062329,0.9884686387629467,0.48829110990902336,0.8529358499787576,0.02915578159137823,0.8611980241949215,0.013054262827494433 +39167,0.5100180022124214,0.012551826650917447,0.09818683574617904,0.41311580044697593,0.036371412728573804,0.016218903566300596,0.024610556091095855,0.19251641181340973,0.8074835881865903,0.370430643295165,0.44592448710574384,1.2444453237827484,0.010098041051706573,1.1664521879715006,0.08405206988062329,1.0443776488610976,0.48829110990902336,1.245375098401144,0.02915578159137823,1.2436617742512759,0.013054262827494433 +39169,0.49330600787012147,0.010926247469160204,0.0875893563161611,0.4076072624598926,0.03139233706283322,0.014050879481307444,0.022149025746381924,0.177555827252811,0.822444172747189,0.35840355932654594,0.4475894691492372,1.0819499972434743,0.010098041051706573,1.041659768152261,0.08405206988062329,1.0096338975603394,0.48829110990902336,1.076319863245764,0.02915578159137823,1.0771249119652304,0.013054262827494433 +39171,0.5015756679193379,0.011626394962122472,0.09264717551063073,0.4106356593734227,0.033941820109959775,0.015106024473406345,0.02317974277012217,0.18471226065441834,0.8152877393455816,0.36635569215021724,0.44505640606390706,1.151433725696756,0.010098041051706573,1.0998303414605766,0.08405206988062329,1.0270022140851567,0.48829110990902336,1.1619503319331301,0.02915578159137823,1.1550941823574032,0.013054262827494433 +39173,0.4805738032516399,0.009640542654365581,0.08067867101298054,0.40096848821707354,0.027797424019952777,0.01246353501751809,0.020060483091537896,0.1678798770700684,0.8321201229299315,0.34454489236046537,0.44837014424688637,0.9545310856258653,0.010098041051706573,0.9618533899862796,0.08405206988062329,0.9848795453821435,0.48829110990902336,0.954189931318084,0.02915578159137823,0.9538612241018111,0.013054262827494433 +39175,0.5045325401222691,0.012132977548217379,0.0947740488956228,0.41153867521692494,0.03540274465810021,0.015724556060753084,0.02404795842360744,0.18784526538695626,0.8121547346130438,0.3735489310696244,0.44416206180091394,1.2028634480847569,0.010098041051706573,1.1261233188776554,0.08405206988062329,1.0329422837908413,0.48829110990902336,1.210874963620045,0.02915578159137823,1.2041100959108473,0.013054262827494433 +40001,0.4852628041652064,0.00967965023503389,0.08099497935839023,0.4055714878006049,0.027251442059128748,0.012440778815563786,0.019947233029091755,0.16690951513937943,0.8330904848606205,0.3364584110645345,0.456518183095428,0.9605084207108147,0.010098041051706573,0.9662503151155455,0.08405206988062329,0.9935491371251514,0.48829110990902336,0.9364666364182137,0.02915578159137823,0.9480351579920467,0.013054262827494433 +40003,0.5306460132981109,0.014422492537005805,0.1103472243025261,0.42136286981913806,0.0424945796968171,0.018810266063038626,0.02717912162830744,0.2079488426129648,0.7920511573870352,0.3850987640641932,0.4426509497738964,1.4307857614698358,0.010098041051706573,1.3103504440806446,0.08405206988062329,1.085768371731318,0.48829110990902336,1.44995126557169,0.02915578159137823,1.43867618543082,0.013054262827494433 +40005,0.5011212665276354,0.011445656097310897,0.09172801390077198,0.41105945503313235,0.0327485330530409,0.014717552350867648,0.022840092532133042,0.1830455421227138,0.8169544578772863,0.3570177927156154,0.44941104161919193,1.1346375104387916,0.010098041051706573,1.09048717448049,0.08405206988062329,1.0258738037525983,0.48829110990902336,1.1235321842915877,0.02915578159137823,1.1276693217513454,0.013054262827494433 +40007,0.5107132126584115,0.012682545637455528,0.09798560329411593,0.4143029446222015,0.03662521271891321,0.01633268152169655,0.024833008669266986,0.19186032564944272,0.8081396743505573,0.3737815708393211,0.4459409327406411,1.2576114775037635,0.010098041051706573,1.1642557038380066,0.08405206988062329,1.0456593872648798,0.48829110990902336,1.253933978462037,0.02915578159137823,1.2542121533573127,0.013054262827494433 +40009,0.4852122972628062,0.010064370037087598,0.08276937170842527,0.40398262855589867,0.029129835623309445,0.01299898666933401,0.020742199020641103,0.17058382933686198,0.829416170663138,0.3519397939364116,0.4462430491345558,0.9966768423374502,0.010098041051706573,0.9838504471315901,0.08405206988062329,0.9941267297797406,0.48829110990902336,0.9994177062778574,0.02915578159137823,0.9961306721262708,0.013054262827494433 +40011,0.4989195990375655,0.011930329688719446,0.09266268968667725,0.40821144068558096,0.034562365850536535,0.015419298967932558,0.023912329184368575,0.18572669797984892,0.8142733020201511,0.3729911787301141,0.44612973066174505,1.183418775174155,0.010098041051706573,1.1005160539676737,0.08405206988062329,1.0219778366736896,0.48829110990902336,1.1849610557110928,0.02915578159137823,1.1810036513675914,0.013054262827494433 +40013,0.49322690048016016,0.011530662757774564,0.08978191175006386,0.4051799310883186,0.03343772640706844,0.014897394724574724,0.023378008674201214,0.18202963314178625,0.8179703668582138,0.37243277354299215,0.44552654517280654,1.1430003002892073,0.010098041051706573,1.0663080854088611,0.08405206988062329,1.0104468382028817,0.48829110990902336,1.1452167416707617,0.02915578159137823,1.1407678968842183,0.013054262827494433 +40015,0.49461361020428035,0.011164299221008589,0.08845753425154398,0.408077549214675,0.031909407203878554,0.014306789061798542,0.022571759027006196,0.17884169061787472,0.8211583093821253,0.3607313664558945,0.4483564664924132,1.1061061311604794,0.010098041051706573,1.0519185081330904,0.08405206988062329,1.0126027045495745,0.48829110990902336,1.0943158829212967,0.02915578159137823,1.096769651867298,0.013054262827494433 +40017,0.4811286203475615,0.008748354608633945,0.0775112178452699,0.40472582080288855,0.024718103710981036,0.011329860649723151,0.018182985253120548,0.16110290381244985,0.8388970961875502,0.31889711448379016,0.4583628575314154,0.8682707462248791,0.010098041051706573,0.925280485593057,0.08405206988062329,0.9850770917580178,0.48829110990902336,0.849264381435916,0.02915578159137823,0.8603859103869197,0.013054262827494433 +40019,0.4983422646540808,0.011299997966092861,0.090161683893064,0.40988125442514833,0.032584634838021924,0.014546624565191834,0.02267517480969959,0.18092321339762105,0.8190767866023789,0.3614022435147599,0.4464258886896551,1.1190692780964084,0.010098041051706573,1.071171449381874,0.08405206988062329,1.0198608544252443,0.48829110990902336,1.1161800179744785,0.02915578159137823,1.1163770518105414,0.013054262827494433 +40021,0.484231513771619,0.01025597143409281,0.08294354100986329,0.402834413012393,0.029009935877212033,0.0131602711177057,0.021179892556373137,0.1712890190971388,0.8287109809028612,0.349755213293369,0.45364702539874946,1.0165158503606695,0.010098041051706573,0.9870761811793188,0.08405206988062329,0.9921943307004006,0.48829110990902336,0.9966125417234943,0.02915578159137823,1.0042565395461893,0.013054262827494433 +40023,0.5099080013599103,0.013184644948244421,0.09909785524866585,0.41302330081965244,0.03817298021131134,0.017008513343721558,0.02585690931125094,0.1943445778147718,0.8056554221852282,0.38520490797226675,0.4455641988015814,1.3072008053118547,0.010098041051706573,1.1763824106984744,0.08405206988062329,1.0443014063431533,0.48829110990902336,1.3073511402921674,0.02915578159137823,1.3028596533876677,0.013054262827494433 +40025,0.5215513870693159,0.0152627328622033,0.10867193254641683,0.41405865002268116,0.04464529330154131,0.01972259772055839,0.029264101756045817,0.2083628483035248,0.7916371516964752,0.41082634913547755,0.441762082003782,1.51382724186688,0.010098041051706573,1.2914561415120787,0.08405206988062329,1.0674217177304879,0.48829110990902336,1.5255691494772983,0.02915578159137823,1.5106733703779864,0.013054262827494433 +40027,0.47084604375002104,0.008113159130850565,0.07285830662513798,0.3990934268589367,0.022990207461865222,0.010496664516824374,0.01723102325812035,0.1547391288346887,0.8452608711653113,0.31554682680386387,0.4565711089921921,0.8047262862742497,0.010098041051706573,0.8717567494482418,0.08405206988062329,0.9643554765075975,0.48829110990902336,0.7900537601614461,0.02915578159137823,0.7990302495289017,0.013054262827494433 +40029,0.5079374373219054,0.013308790600913693,0.09921177422871116,0.41072314008247557,0.039338629519553914,0.017329453570777052,0.02620163355369934,0.195322823125234,0.804677176874766,0.39651170262178015,0.4405200125785562,1.3194966760673488,0.010098041051706573,1.1767670072151162,0.08405206988062329,1.0401688671768374,0.48829110990902336,1.3395571873115375,0.02915578159137823,1.3232088552956602,0.013054262827494433 +40031,0.46956276567789756,0.008238065436338225,0.0724257427113798,0.3982948256235879,0.023448010417413154,0.010625146675684753,0.017544119846140502,0.15424081295462244,0.8457591870453776,0.32375243303827267,0.4531363849870273,0.8164471133738309,0.010098041051706573,0.8644050731958792,0.08405206988062329,0.9613127769257273,0.48829110990902336,0.8054577692961716,0.02915578159137823,0.8112599904305275,0.013054262827494433 +40033,0.5061857113920527,0.012802053673949522,0.09711904740116278,0.4115477168697249,0.03769487226142457,0.016643637879562148,0.02529121898510887,0.1918644584693577,0.8081355415306423,0.3881305806647899,0.4415358610087289,1.26949641944946,0.010098041051706573,1.1514185689719718,0.08405206988062329,1.0362221803693203,0.48829110990902336,1.2849930785970702,0.02915578159137823,1.2724908697278012,0.013054262827494433 +40035,0.5082006816489278,0.012442840109393293,0.09724670877845623,0.41252482666279655,0.03638329889541736,0.0161588092763625,0.02448410747703204,0.19135493573705126,0.8086450642629488,0.37413398718001256,0.4441271068577504,1.2335084292889666,0.010098041051706573,1.153633205820741,0.08405206988062329,1.0406531389302136,0.48829110990902336,1.2439877306425882,0.02915578159137823,1.2372906405247721,0.013054262827494433 +40037,0.5004115962932089,0.011276056585333788,0.09075346079293314,0.41112839658197237,0.03213309556036724,0.014489243674829122,0.022533563708077516,0.18135762932991162,0.8186423706700884,0.3540701950053832,0.4509134094351017,1.1175611122205689,0.010098041051706573,1.0797217991805064,0.08405206988062329,1.0244855761972644,0.48829110990902336,1.1027017233479286,0.02915578159137823,1.1087381735323065,0.013054262827494433 +40039,0.47610537575916156,0.01017586448491342,0.08104865784509398,0.39725965463195095,0.030071852779915375,0.013290608899375342,0.021373135030638455,0.1702326038975299,0.8297673961024701,0.3710345560242449,0.44196175728327514,1.0072920767200508,0.010098041051706573,0.9618376258004848,0.08405206988062329,0.9754713759299252,0.48829110990902336,1.0269478845441213,0.02915578159137823,1.0140234022180072,0.013054262827494433 +40041,0.5220397249998999,0.01401268796158802,0.10491471962102686,0.41785048181895246,0.039326423989132726,0.017871106949270073,0.026842187079902217,0.20097075873114248,0.7990292412688575,0.3748418156307114,0.45443000243827125,1.3893123590664054,0.010098041051706573,1.2486090859170167,0.08405206988062329,1.069572489844866,0.48829110990902336,1.3493583741297739,0.02915578159137823,1.3644203446612093,0.013054262827494433 +40043,0.5197612842208601,0.014451544815857746,0.10613131743377643,0.41542014038276165,0.042214295265096395,0.018707110956683235,0.02780419637742181,0.20419242574573615,0.7958075742542638,0.3977553118704775,0.44314635218251863,1.433195259294961,0.010098041051706573,1.260562576374372,0.08405206988062329,1.064675397166138,0.48829110990902336,1.4427927655802986,0.02915578159137823,1.4325578938376662,0.013054262827494433 +40045,0.5244682439495882,0.01480024930012241,0.10837564269242175,0.41748856054119043,0.04296497299940412,0.01910624979187191,0.02821953372937677,0.20663909386826249,0.7933609061317375,0.3964449200208386,0.44469362967217263,1.468265807512378,0.010098041051706573,1.2895344741813166,0.08405206988062329,1.074278922038793,0.48829110990902336,1.470882021049478,0.02915578159137823,1.4631375741401411,0.013054262827494433 +40047,0.4957973931877647,0.011619567966399874,0.09081589321807873,0.4071514872242938,0.03414925190839262,0.015125038433165927,0.0234361215408799,0.18317138102354968,0.8168286189764503,0.3760272645933137,0.4429098029362323,1.1510793492103915,0.010098041051706573,1.0775045348379912,0.08405206988062329,1.015010963884357,0.48829110990902336,1.165742286848277,0.02915578159137823,1.1550172708603321,0.013054262827494433 +40049,0.504101348777261,0.01248397132720563,0.09578634737845537,0.4104649190145213,0.036797922918670914,0.0162667639922932,0.024764804453482465,0.19001406683555397,0.809985933164446,0.38416667850670794,0.4420565809718461,1.2374682071309948,0.010098041051706573,1.1360249071419337,0.08405206988062329,1.032029362381238,0.48829110990902336,1.2545482853886658,0.02915578159137823,1.2417539296833087,0.013054262827494433 +40051,0.49160151591773227,0.010157316331834127,0.08475995327015967,0.40845723899862607,0.028919350616674278,0.013077098720203392,0.0206616863515407,0.172415972135334,0.827584027864666,0.341191205291232,0.4521919905305003,1.0065195871583907,0.010098041051706573,1.0096058752145098,0.08405206988062329,1.0067130579669885,0.48829110990902336,0.9933909589611933,0.02915578159137823,1.0001717349531127,0.013054262827494433 +40053,0.5224258793692902,0.014872819816974692,0.10862174251031756,0.4152707557979213,0.044278614918067574,0.01947062059053786,0.028468765435070372,0.20791799717397896,0.792082002826021,0.40764044006992173,0.43972966694116283,1.4746261604322792,0.010098041051706573,1.2889943223482707,0.08405206988062329,1.0696890593879385,0.48829110990902336,1.507829173278287,0.02915578159137823,1.4851605717145806,0.013054262827494433 +40055,0.5071950348961181,0.013246040750846918,0.09938155391432416,0.40920446634089336,0.039530361351108115,0.017352229390948007,0.026116266602570205,0.19594346765377768,0.8040565323462223,0.3977635667197038,0.4389595439521979,1.313214245840648,0.010098041051706573,1.1806891124144658,0.08405206988062329,1.038266358786515,0.48829110990902336,1.3456506109126924,0.02915578159137823,1.3259085115029272,0.013054262827494433 +40057,0.5119287738227287,0.013128343450709887,0.10002865285141527,0.4131067964491373,0.03849137798799693,0.0170245472269904,0.025644863352134967,0.19539564479736257,0.8046043552026374,0.3848035226983698,0.4422950831300272,1.3015089141123786,0.010098041051706573,1.1896958470055639,0.08405206988062329,1.0482430048170355,0.48829110990902336,1.3135922466108003,0.02915578159137823,1.3030657081730341,0.013054262827494433 +40059,0.5158134840008234,0.014235300358248245,0.1039460340146875,0.41355553685451896,0.04177621379668109,0.018467494278835078,0.027597767021975566,0.2015186443139233,0.7984813556860767,0.40190291233986036,0.4420576352063343,1.412484024370841,0.010098041051706573,1.2348664733022572,0.08405206988062329,1.0559828990363354,0.48829110990902336,1.4266514542191526,0.02915578159137823,1.4132105288527577,0.013054262827494433 +40061,0.5070827368691609,0.012711865104412488,0.09698821263782959,0.41187656314105947,0.03650572867429341,0.016325452231311183,0.02506862131197427,0.1912670370848274,0.8087329629151726,0.3763934573226128,0.44720247545167435,1.2608972046677613,0.010098041051706573,1.1506576454098831,0.08405206988062329,1.0385164254772363,0.48829110990902336,1.2508707641184245,0.02915578159137823,1.2540324199494584,0.013054262827494433 +40063,0.5083063404903885,0.012970163851480143,0.09856431788810019,0.41152689961135924,0.03746139549667481,0.016735560983016626,0.0255164313688615,0.1939073154055294,0.8060926845944706,0.3800705600094005,0.44674152580626975,1.286479021483276,0.010098041051706573,1.1703725999010566,0.08405206988062329,1.0412355275037601,0.48829110990902336,1.2839854884166992,0.02915578159137823,1.2818558075796203,0.013054262827494433 +40065,0.4833084869189695,0.01005087246377722,0.08197922652502077,0.402687142892704,0.02863701060161257,0.01288763420979662,0.020795977591559094,0.16962091240654179,0.8303790875934582,0.34932033169247223,0.4500342018615207,0.9960675806690552,0.010098041051706573,0.9730257427349716,0.08405206988062329,0.9902017329946313,0.48829110990902336,0.9818737376629371,0.02915578159137823,0.9854885374782999,0.013054262827494433 +40067,0.5145140121905207,0.013916544871623256,0.10292814703297529,0.4135798771873782,0.04107033689764805,0.01812293476317508,0.027047941439678543,0.2000492592898748,0.7999507407101252,0.3990194915729929,0.4412657925923396,1.3795738562933684,0.010098041051706573,1.2217558299343088,0.08405206988062329,1.053555991210685,0.48829110990902336,1.3990181654160667,0.02915578159137823,1.3836808314405775,0.013054262827494433 +40069,0.5002689937557343,0.011950658854916604,0.09266394634261194,0.40949376582212776,0.034368062893603765,0.015337471900471873,0.02388846601344983,0.18522824220414677,0.8147717577958532,0.37088926438048164,0.44627106124524485,1.1842209529541274,0.010098041051706573,1.1006169871274536,0.08405206988062329,1.024364987380518,0.48829110990902336,1.1772095770992452,0.02915578159137823,1.1779928649812366,0.013054262827494433 +40071,0.5033435341651381,0.01252669793627712,0.0953971773964051,0.40973739373264234,0.03662553609372859,0.016231928302167863,0.024886974970393345,0.18952697496081666,0.8104730250391834,0.38392683193904187,0.44318609454967856,1.2421517299332931,0.010098041051706573,1.1324458454226543,0.08405206988062329,1.0304329297203285,0.48829110990902336,1.2507210801424178,0.02915578159137823,1.2417279909319592,0.013054262827494433 +40073,0.49387794523724304,0.011063212254208149,0.08836847575248284,0.40756932060615936,0.03178328820202342,0.01422864248858939,0.022400701146704855,0.17892776262773483,0.8210722373722652,0.3596677200933889,0.4476768545201548,1.0958069286586274,0.010098041051706573,1.0503452595378229,0.08405206988062329,1.0113759361145127,0.48829110990902336,1.090005896778044,0.02915578159137823,1.0910117383390185,0.013054262827494433 +40075,0.5137920907200826,0.013424289709434992,0.10103744972501644,0.41424757425145387,0.03846389054562596,0.017159648486914203,0.0261278636863031,0.19665045754871754,0.8033495424512824,0.38068944386768766,0.4461235783353581,1.3301954166965813,0.010098041051706573,1.2011355132284414,0.08405206988062329,1.0524906321903398,0.48829110990902336,1.316803353638151,0.02915578159137823,1.31968106935413,0.013054262827494433 +40077,0.5019994608621798,0.012360274753096652,0.09424428434479104,0.4093916217063293,0.03562618704178784,0.015872622077195815,0.024622087704771603,0.1877378198433267,0.8122621801566733,0.37801960394171036,0.4455324410265397,1.2253398437538818,0.010098041051706573,1.1192241045474614,0.08405206988062329,1.0278145598132373,0.48829110990902336,1.2197458872072966,0.02915578159137823,1.2194654368039202,0.013054262827494433 +40079,0.49663342039812824,0.010976153294398591,0.08877162967894378,0.4097099260367282,0.03154245814100927,0.014135322744324337,0.022101116927651612,0.17874678995179108,0.821253210048209,0.3553213820123322,0.44813637165286724,1.0872431176758823,0.010098041051706573,1.055531698055852,0.08405206988062329,1.0168381755305098,0.48829110990902336,1.0808165522990654,0.02915578159137823,1.0829041354298503,0.013054262827494433 +40081,0.4996356076765526,0.01130380461544907,0.09035454383231628,0.41063818836158883,0.03180734501501755,0.014372647798210491,0.022624097325678952,0.18084088172276305,0.819159118277237,0.3520281733041223,0.4518656867281622,1.1213222643279848,0.010098041051706573,1.0758249165875122,0.08405206988062329,1.0227956294272451,0.48829110990902336,1.0911625905752005,0.02915578159137823,1.103308267838197,0.013054262827494433 +40083,0.48841470555663746,0.009853300081750328,0.08337467582184682,0.4066849114830037,0.028041480140003766,0.012686463859558243,0.020174044658464365,0.17070467959564445,0.8292953204043556,0.33633090460132264,0.452417768114167,0.9765131986697121,0.010098041051706573,0.9940227789863552,0.08405206988062329,1.0005175068744978,0.48829110990902336,0.9628982360220258,0.02915578159137823,0.9697152130609987,0.013054262827494433 +40085,0.511198166731198,0.012570188438833832,0.09783207596224089,0.4149134614489412,0.03598685489039564,0.016111379538187597,0.02458965868209692,0.1913779867166145,0.8086220132833855,0.36784310806493636,0.447701795204323,1.2461096012980022,0.010098041051706573,1.1634256096750282,0.08405206988062329,1.0470031733553724,0.48829110990902336,1.233548509882286,0.02915578159137823,1.237411535912634,0.013054262827494433 +40087,0.4941809901214262,0.010136219264369492,0.08531921728201114,0.41053630267458613,0.028396252833974827,0.013001822435784401,0.02051114767057086,0.1726477120478616,0.8273522879521384,0.33282364440961587,0.4578710617841912,1.005912923701274,0.010098041051706573,1.017451372025749,0.08405206988062329,1.0120018805960436,0.48829110990902336,0.9763318418177286,0.02915578159137823,0.992219522889223,0.013054262827494433 +40089,0.4989261286011877,0.011471434058450185,0.09062157565300619,0.4099403044753098,0.03274970017746534,0.014694150896113365,0.02299224955528392,0.18163325281655826,0.8183667471834417,0.36138965739092105,0.44868047085891266,1.1370127575308957,0.010098041051706573,1.077998181712737,0.08405206988062329,1.0213563986650076,0.48829110990902336,1.1227164959182963,0.02915578159137823,1.1267620646299683,0.013054262827494433 +40091,0.5308451281542482,0.01560158046864717,0.11264388191722027,0.41889826775199346,0.04468776591015544,0.019945819909717666,0.02939007940582211,0.21219726044935883,0.7878027395506412,0.3967172042507873,0.44633737004930274,1.5472131110032985,0.010098041051706573,1.338862174418632,0.08405206988062329,1.087201280209299,0.48829110990902336,1.5304184877198561,0.02915578159137823,1.5330109608538853,0.013054262827494433 +40093,0.5197544099711855,0.014081654086134345,0.1054059445005363,0.41604635280921,0.04154764169091971,0.018360147418718623,0.027092899677205268,0.20279951930832077,0.7972004806916793,0.3941679180220079,0.44190588614639126,1.3961663949968919,0.010098041051706573,1.2511063218585448,0.08405206988062329,1.0644338254377566,0.48829110990902336,1.4167253530353223,0.02915578159137823,1.4014838729509056,0.013054262827494433 +40095,0.5160004515514084,0.013516009923256873,0.10160171280730132,0.4158017676721247,0.03840335259064054,0.017296524992244683,0.026193794758550305,0.19690237189100382,0.8030976281089962,0.3779793817401156,0.45039101602968123,1.3400827999255407,0.010098041051706573,1.207478013034967,0.08405206988062329,1.0570012006280127,0.48829110990902336,1.3152332490988203,0.02915578159137823,1.3222444447025763,0.013054262827494433 +40097,0.5012356860622827,0.011459292850657523,0.09145451716661099,0.41133731878042823,0.032696375517690376,0.014720366712200884,0.022862084981781623,0.18245811244023633,0.8175418875597636,0.35751515103539855,0.45021402155833534,1.135730030168061,0.010098041051706573,1.0874746149761418,0.08405206988062329,1.0264004906965813,0.48829110990902336,1.1218861291896758,0.02915578159137823,1.1268693986423584,0.013054262827494433 +40099,0.5108247596992925,0.013004158905800213,0.0986238407359204,0.41438490394776045,0.037442455808534794,0.016733625962485274,0.0254571820548702,0.1930678551955417,0.8069321448044583,0.3796491348252436,0.4469158232583382,1.289524740820703,0.010098041051706573,1.1707809447168533,0.08405206988062329,1.0463793760194684,0.48829110990902336,1.2830981851477556,0.02915578159137823,1.2816875995588126,0.013054262827494433 +40101,0.49577715663916344,0.011150389828143327,0.08919420993655541,0.40844555939598315,0.032283304719391115,0.014397847703758657,0.022490729310182405,0.17990786534255904,0.820092134657441,0.3619439506483044,0.4459843200349475,1.1042792266392631,0.010098041051706573,1.0598725840209577,0.08405206988062329,1.0150657709394206,0.48829110990902336,1.1053817901027065,0.02915578159137823,1.103726837153419,0.013054262827494433 +40103,0.5047668278098059,0.012235892340536104,0.09515216258347334,0.4116221247921862,0.03570597094575374,0.01585733979054897,0.024240682363434827,0.1885071627950288,0.8114928372049712,0.37525128148748343,0.44410890869317676,1.21282879485756,0.010098041051706573,1.1286911580056618,0.08405206988062329,1.0333443345091855,0.48829110990902336,1.220979225495788,0.02915578159137823,1.2142514455594644,0.013054262827494433 +40105,0.5054680108901428,0.01245556282172083,0.0956953038009423,0.4113122980119297,0.03544915472787287,0.015937046105924873,0.024641644087004137,0.1893201977953467,0.8106798022046533,0.3704377677885987,0.4495747847379259,1.2348762202540438,0.010098041051706573,1.1380635893734445,0.08405206988062329,1.0351672840080737,0.48829110990902336,1.2146125632493905,0.02915578159137823,1.2188788999482252,0.013054262827494433 +40107,0.5050209231848559,0.012235816504201516,0.09542624239897524,0.4110779196083263,0.035238293571265164,0.015717092794351892,0.02422833578267957,0.18895502744159726,0.8110449725584028,0.3692725678533433,0.4460230959415212,1.2136648836864126,0.010098041051706573,1.1329109636218362,0.08405206988062329,1.0342083191600238,0.48829110990902336,1.2065541725963178,0.02915578159137823,1.2088364627799757,0.013054262827494433 +40109,0.4812682080634183,0.009529994524536591,0.08000570410617165,0.40242323273094116,0.027518321361757442,0.012325643541275293,0.01980183682376292,0.16623932926736984,0.8337606707326302,0.3439544926101672,0.44790681012993744,0.943297693156945,0.010098041051706573,0.9535729709493224,0.08405206988062329,0.9857559163387383,0.48829110990902336,0.9442877185511147,0.02915578159137823,0.9433677337083523,0.013054262827494433 +40111,0.49867297621845486,0.011772257502639065,0.09190274245310526,0.40887553303211766,0.03410820758518219,0.015196230136440786,0.023607169556109985,0.18429461157094104,0.8157053884290589,0.371133729796871,0.4455300120503126,1.1665730412540742,0.010098041051706573,1.0912156950875076,0.08405206988062329,1.021047515380856,0.48829110990902336,1.1680513630173048,0.02915578159137823,1.1643202512539723,0.013054262827494433 +40113,0.5028818472433491,0.011428039508791964,0.09221286776739426,0.4119789369927418,0.032446600518924625,0.014710032751742746,0.022725098492691928,0.18336885348492532,0.8166311465150746,0.3518662991890757,0.45336129260022334,1.132768204102577,0.010098041051706573,1.0968783018126653,0.08405206988062329,1.0295932824522147,0.48829110990902336,1.1149157411789359,0.02915578159137823,1.1228065147659423,0.013054262827494433 +40115,0.5021209850437545,0.01258940638251294,0.09516731258152833,0.4089130959963646,0.03647149444680547,0.016240363083617794,0.025072456155991785,0.189530641849664,0.8104693581503359,0.38323551918691534,0.44528921367082297,1.2482969183815324,0.010098041051706573,1.1295839332534636,0.08405206988062329,1.028054660054838,0.48829110990902336,1.2494760816888053,0.02915578159137823,1.2441468117421208,0.013054262827494433 +40117,0.5099869419736198,0.01238510086344959,0.09684856113105252,0.4146304472110992,0.03535429189658751,0.015899205833297833,0.02428513329286426,0.1899040017696418,0.8100959982303582,0.36504715696031004,0.44971077004748233,1.2280955389512782,0.010098041051706573,1.1509723788142963,0.08405206988062329,1.0443874552344623,0.48829110990902336,1.2126120954552002,0.02915578159137823,1.2180775356782183,0.013054262827494433 +40119,0.45843746101241833,0.008218392312492679,0.07014535581284852,0.38903842138838785,0.023845599856800237,0.010658438775373069,0.01792696498742291,0.15300965077753187,0.8469903492224682,0.339945525694125,0.4469771714437923,0.8136889631717776,0.010098041051706573,0.8352842856712406,0.08405206988062329,0.9397915885323573,0.48829110990902336,0.8188665590795658,0.02915578159137823,0.8150449096285977,0.013054262827494433 +40121,0.5106816667134617,0.012903602507029738,0.09927883148417704,0.41308603591774673,0.03765886574149738,0.01672892982066984,0.025267408932206328,0.1944045340869489,0.8055954659130511,0.3793242242934679,0.4442228806226566,1.2798778684748608,0.010098041051706573,1.1781320770037818,0.08405206988062329,1.04595488235468,0.48829110990902336,1.2877217089268043,0.02915578159137823,1.2813825665440144,0.013054262827494433 +40123,0.4903306318162872,0.01121515805831277,0.08789028162433574,0.40407737205574273,0.03218535829507943,0.014411777434240835,0.022872644151905173,0.17924697320820393,0.8207530267917961,0.3661992850659805,0.4477743358365577,1.1113713731592108,0.010098041051706573,1.0446507614983778,0.08405206988062329,1.0046233872536718,0.48829110990902336,1.1034304640319101,0.02915578159137823,1.1037038351012547,0.013054262827494433 +40125,0.4914626490032496,0.010645436512147007,0.08629105535111048,0.4067399917720841,0.03057728616417732,0.013690102219125554,0.021660723421682893,0.17558008838742883,0.8244199116125712,0.354350587552338,0.4477212969659855,1.0544386391191929,0.010098041051706573,1.0263233987701241,0.08405206988062329,1.0062393168453494,0.48829110990902336,1.047952024065419,0.02915578159137823,1.0497141532060419,0.013054262827494433 +40127,0.5202440566912644,0.013956577401678381,0.10427129905504429,0.4170654644516017,0.03970563713727869,0.017869689487239705,0.026826980956672082,0.2004276602758452,0.7995723397241548,0.3807916224033834,0.45005421838357235,1.3836592420210834,0.010098041051706573,1.240218679532982,0.08405206988062329,1.0658396153093463,0.48829110990902336,1.3593385181812363,0.02915578159137823,1.366578520804808,0.013054262827494433 +40129,0.5170906219020165,0.013434593654694862,0.10189184902429518,0.4166054938121338,0.03819892904742918,0.01719956478067487,0.02598112030204366,0.19704834067480473,0.8029516593251953,0.37489680885387594,0.45026301023568654,1.3315260591918394,0.010098041051706573,1.2115117413694452,0.08405206988062329,1.0591647078269477,0.48829110990902336,1.308316791384021,0.02915578159137823,1.3156425231700817,0.013054262827494433 +40131,0.4906832068035914,0.01001084065806649,0.08422246739766255,0.40803718796769634,0.0284837332929049,0.012910644010347113,0.02040184077885834,0.17164326439110186,0.8283567356088981,0.3381963764896232,0.45326375856647505,0.9922660557234713,0.010098041051706573,1.0027521815293823,0.08405206988062329,1.0048865265274816,0.48829110990902336,0.9788114234803912,0.02915578159137823,0.9861999257389911,0.013054262827494433 +40133,0.4998632288117707,0.011949820844767138,0.09234299909346268,0.4092376788748765,0.03409208620384131,0.015279692487790056,0.02390618104310886,0.18473653145675875,0.8152634685432413,0.36918972243186354,0.4481888376214543,1.1843124767167055,0.010098041051706573,1.0976162712750162,0.08405206988062329,1.023458943446837,0.48829110990902336,1.168629914796714,0.02915578159137823,1.172022441139473,0.013054262827494433 +40135,0.4962739664676734,0.010944133875963873,0.08838480352069486,0.4099793341760072,0.03101017468348698,0.014072382924017699,0.022052605245165037,0.1780967963115029,0.8219032036884971,0.35085414514980623,0.45379889238454657,1.0850330734185767,0.010098041051706573,1.0517644687284964,0.08405206988062329,1.0162827605105944,0.48829110990902336,1.0642517330213812,0.02915578159137823,1.0729448755838473,0.013054262827494433 +40137,0.509147929758505,0.012891239970696635,0.09824277537733461,0.4128067268582978,0.03754136384055089,0.016678783981890988,0.02531924263506503,0.19295526827327442,0.8070447317267255,0.3821284943993141,0.4442775188650749,1.2783094220724829,0.010098041051706573,1.1662093977996597,0.08405206988062329,1.0425727623468917,0.48829110990902336,1.2844324912420657,0.02915578159137823,1.2771430119621083,0.013054262827494433 +40139,0.4714258096200006,0.008453994394245677,0.07310826270611405,0.39966115410342296,0.024048599376562587,0.010889723449811074,0.01793282043904244,0.15507904152520627,0.8449209584747938,0.32894502599842795,0.45282152524957603,0.8382211633373795,0.010098041051706573,0.8729777345543053,0.08405206988062329,0.9656192768800914,0.48829110990902336,0.8257578532246359,0.02915578159137823,0.8318300361024482,0.013054262827494433 +40141,0.5080367236329763,0.013169783912224585,0.0987644692311109,0.4107997035228975,0.03860980392218853,0.017085435137345138,0.025922897498525922,0.19440419291905728,0.8055958070809427,0.39092807588365397,0.44251545984998825,1.3056284388786108,0.010098041051706573,1.1732587552505804,0.08405206988062329,1.0402788497286837,0.48829110990902336,1.3180716987820222,0.02915578159137823,1.3078368209708633,0.013054262827494433 +40143,0.4829199240099057,0.009616806487272027,0.08079035426794058,0.40343696459197986,0.02774721917338658,0.012431236516432862,0.019913873934666582,0.16729554994770396,0.832704450052296,0.34344717788169543,0.4480173828862871,0.9518861768358058,0.010098041051706573,0.9623137348237902,0.08405206988062329,0.9891790333385695,0.48829110990902336,0.9523120226494051,0.02915578159137823,0.9517428048890552,0.013054262827494433 +40145,0.4899246521069136,0.009607154562900037,0.08251770735640375,0.40881866275878853,0.026786279205890794,0.012310636982748192,0.01960945325283105,0.1684293839910639,0.8315706160089361,0.32461249911122325,0.4595874211615347,0.9534348303386261,0.010098041051706573,0.9855920282276958,0.08405206988062329,1.0034553399341277,0.48829110990902336,0.9218958530696184,0.02915578159137823,0.9392392272387053,0.013054262827494433 +40147,0.5092144846394304,0.013212984625568441,0.09965073297971182,0.41168182943729587,0.03876935487680398,0.01716993878106353,0.025947778439422087,0.19569500865685996,0.80430499134314,0.38905238042450874,0.44287398734448485,1.3102043560639016,0.010098041051706573,1.1827192560573572,0.08405206988062329,1.0428708473509736,0.48829110990902336,1.3225866935299209,0.02915578159137823,1.3114897147707163,0.013054262827494433 +40149,0.5040769279104296,0.012618582869331745,0.09561072442489138,0.4102627639398636,0.036432186693193785,0.016265789906599257,0.02503304985935394,0.18967486732874358,0.8103251326712564,0.3810470730384823,0.4464675712050523,1.251473528088287,0.010098041051706573,1.1354241807136525,0.08405206988062329,1.0319331591417846,0.48829110990902336,1.2486823464261296,0.02915578159137823,1.2455927638249071,0.013054262827494433 +40151,0.5024205317346424,0.013364465370845935,0.09872958187365552,0.4054602744655679,0.039825381706004755,0.01748856615125,0.02660015769002149,0.19650785674061658,0.8034921432593835,0.4033784094919939,0.4391311621405784,1.3251237822142798,0.010098041051706573,1.1712240608147888,0.08405206988062329,1.0287663713726323,0.48829110990902336,1.3547259132393359,0.02915578159137823,1.3334916783852355,0.013054262827494433 +40153,0.4935388488820308,0.010885498910650057,0.08765500919539111,0.407618615022478,0.031265717594822565,0.014013219734312226,0.022056012278076995,0.17760508497750102,0.822394915022499,0.35669059739790104,0.44819760467077013,1.0776904028812673,0.010098041051706573,1.0419688263490228,0.08405206988062329,1.0109373084328035,0.48829110990902336,1.0727464650810539,0.02915578159137823,1.0733253519774317,0.013054262827494433 +41001,0.5322051202380651,0.015513778205029471,0.11315575994924115,0.420264240383905,0.04479288252719346,0.019978414627925455,0.029149998027245348,0.21261681942974264,0.7873831805702574,0.39585154611030343,0.44601761486987784,1.539011517955371,0.010098041051706573,1.3463911139363351,0.08405206988062329,1.0901948081706128,0.48829110990902336,1.534759095912559,0.02915578159137823,1.5318505174298112,0.013054262827494433 +41003,0.47602920142385935,0.009437979349326112,0.07909060377630969,0.3981171126179429,0.027467025199867885,0.012275064500627868,0.019826471403636595,0.16614653794292533,0.8338534620570747,0.3472855672913093,0.44690185454400466,0.934788256047143,0.010098041051706573,0.944093261070128,0.08405206988062329,0.9752661208715165,0.48829110990902336,0.942508620200726,0.02915578159137823,0.9388679258795491,0.013054262827494433 +41005,0.49920537793186465,0.01064973347717731,0.08904304674998802,0.4115945391111989,0.03055457080956881,0.013729314147979904,0.021333370888946768,0.17836956628728726,0.8216304337127127,0.3431438155452932,0.4493374897506424,1.0546151806216155,0.010098041051706573,1.0587750555814228,0.08405206988062329,1.0222224433929195,0.48829110990902336,1.0489869971995427,0.02915578159137823,1.0530220069538765,0.013054262827494433 +41007,0.5129391867326611,0.012684944765101172,0.09924176561705786,0.41493830243879193,0.03632394600522579,0.01629104962882196,0.02472991943918771,0.19347666971831826,0.8065233302816818,0.3660147094257497,0.44849338853433574,1.2576512596490588,0.010098041051706573,1.1802561868849935,0.08405206988062329,1.0506713892897321,0.48829110990902336,1.2447766166472047,0.02915578159137823,1.249456747688839,0.013054262827494433 +41009,0.5017100372289347,0.01064502928742665,0.0895044816996075,0.41304408711147333,0.030017600950186085,0.013737404698639738,0.02121749316840801,0.17839882613065167,0.8216011738693483,0.33537539551293466,0.457644990398694,1.0551669862732584,0.010098041051706573,1.0658832241708094,0.08405206988062329,1.0272246370684135,0.48829110990902336,1.0313517898361846,0.02915578159137823,1.0450100367674686,0.013054262827494433 +41011,0.5305453001321638,0.014944893660371009,0.11119957644080058,0.42095375460122686,0.04325670266804853,0.019270592362623996,0.02816893045070439,0.20959487608899696,0.790405123911003,0.38900060641037726,0.44549378880092444,1.4816911039103857,0.010098041051706573,1.3221000833955507,0.08405206988062329,1.0874941079799096,0.48829110990902336,1.4807482249028063,0.02915578159137823,1.4779633100961842,0.013054262827494433 +41013,0.5197068173392139,0.01362540365937185,0.10350788228554812,0.41744090370275216,0.03855441286740627,0.01745367331172535,0.0262174810966132,0.1991659120722834,0.8008340879277166,0.3724780375763641,0.4527023500980509,1.3504548785104291,0.010098041051706573,1.231329371648897,0.08405206988062329,1.0650366022282438,0.48829110990902336,1.322082593104021,0.02915578159137823,1.331471695487711,0.013054262827494433 +41015,0.5625178417029818,0.019340747650334753,0.13352620694814377,0.43024673173785666,0.05611561685316164,0.024890987370541788,0.034382460815433065,0.237372394347356,0.762627605652644,0.42025919956637947,0.44356613660105193,1.918677560762881,0.010098041051706573,1.5833783188280062,0.08405206988062329,1.1519846332100783,0.48829110990902336,1.920436577820034,0.02915578159137823,1.9120133717198076,0.013054262827494433 +41017,0.5010607622451833,0.010870504757514164,0.09012380627478378,0.41241108333566134,0.03098324658852641,0.014028255531613434,0.021694983077112148,0.1798660223781076,0.8201339776218924,0.3437853755761243,0.45276906316229365,1.0771430671684774,0.010098041051706573,1.0720191888215522,0.08405206988062329,1.0259988598347674,0.48829110990902336,1.0642892409524862,0.02915578159137823,1.0722344896304752,0.013054262827494433 +41019,0.5259194887842498,0.014737744954147786,0.10886047601127649,0.418356430922908,0.042524380407827876,0.01897076899723525,0.02802281578919338,0.20699076252702778,0.7930092374729723,0.39063195354228397,0.4461151183226439,1.4626011979995643,0.010098041051706573,1.2951686670902005,0.08405206988062329,1.077480826378585,0.48829110990902336,1.4573756562692108,0.02915578159137823,1.4560672270712893,0.013054262827494433 +41021,0.5469694370987388,0.01624591363434353,0.12082911677486101,0.4279668663089525,0.048035939365299235,0.021252926682245734,0.029701684467994913,0.22090652343532854,0.7790934765646714,0.39755268140214783,0.442438036250805,1.609899259836182,0.010098041051706573,1.4354189879254144,0.08405206988062329,1.1196680767465055,0.48829110990902336,1.6374483241117201,0.02915578159137823,1.618916575978798,0.013054262827494433 +41023,0.541160523277639,0.016226037138912464,0.11792294431941053,0.42393235138793206,0.046558927792864066,0.020791065834205154,0.029983778270884328,0.2179075140314899,0.7820924859685101,0.3948250110407081,0.44655379365054304,1.6092379466434739,0.010098041051706573,1.4029414228038621,0.08405206988062329,1.1080720439321896,0.48829110990902336,1.5940988886930922,0.02915578159137823,1.5977997356057827,0.013054262827494433 +41025,0.5210438085585165,0.013220389068398963,0.10304160794815106,0.4189621355161621,0.03793603086103511,0.01698585486121786,0.02537289350961404,0.19775996999795237,0.8022400300020476,0.3681622561647517,0.447749922057987,1.3112334925660893,0.010098041051706573,1.2271769076926944,0.08405206988062329,1.0671312085854276,0.48829110990902336,1.299404255227596,0.02915578159137823,1.303478454859925,0.013054262827494433 +41027,0.48713127612992047,0.009923827851775962,0.08332590793963213,0.40547869698897254,0.02920438479474754,0.012986384554107014,0.020371978433856967,0.1710543174349755,0.8289456825650245,0.35048384730359616,0.4446724231781331,0.9833136874447992,0.010098041051706573,0.9897962170120476,0.08405206988062329,0.9973125676925132,0.48829110990902336,1.000432845374006,0.02915578159137823,0.9916035197673205,0.013054262827494433 +41029,0.5116911965191759,0.012915510642826237,0.09961017316681056,0.4135844339586514,0.037641827394044966,0.01675491366378068,0.025240830271626963,0.1946685302471832,0.8053314697528168,0.3778913960023811,0.4451142472012756,1.2805817129058656,0.010098041051706573,1.1826823320802262,0.08405206988062329,1.0480019307662252,0.48829110990902336,1.287539405721243,0.02915578159137823,1.2816836324354037,0.013054262827494433 +41031,0.4994435860962197,0.011149940318834444,0.08942447449112481,0.41164458696018225,0.031311603361321945,0.014240228173944616,0.022324724211567643,0.1790481987967643,0.8209518012032357,0.35014579106561655,0.45479076908386745,1.1057467975090292,0.010098041051706573,1.0652911839034604,0.08405206988062329,1.0223628767729203,0.48829110990902336,1.0745749497064243,0.02915578159137823,1.088024648561143,0.013054262827494433 +41033,0.5315685583825156,0.01566525613925366,0.11354405725384008,0.4196718807121279,0.04604991595180994,0.020338177811503284,0.02946986967573988,0.21360190602570217,0.7863980939742978,0.4055687022779215,0.4416550473791671,1.553508332860249,0.010098041051706573,1.3486426496699793,0.08405206988062329,1.0890359358688797,0.48829110990902336,1.5710214129921707,0.02915578159137823,1.5564154492769808,0.013054262827494433 +41035,0.5093780764429068,0.012430488085787828,0.09692568433300222,0.41368424796200864,0.035553554477622436,0.015937772638960457,0.024403264805962038,0.1902824028270994,0.8097175971729006,0.3668125195327283,0.44827508453456494,1.2325447509548977,0.010098041051706573,1.1532638658496566,0.08405206988062329,1.0431813030161485,0.48829110990902336,1.2185854788922517,0.02915578159137823,1.2228680736375952,0.013054262827494433 +41037,0.530005932172208,0.014403467112706037,0.10959829606101595,0.4215282202204548,0.04135965461569026,0.01852197860615095,0.027176048867366454,0.20678692333089885,0.7932130766691011,0.37737497846375606,0.4478272069304086,1.4287474985700626,0.010098041051706573,1.3044952467435649,0.08405206988062329,1.085746691134054,0.48829110990902336,1.417147817477551,0.02915578159137823,1.4213255531951217,0.013054262827494433 +41039,0.4978712920389048,0.011339359729283672,0.09117201632430263,0.4086046271601355,0.0329971096350341,0.014715775479802747,0.022775685022621447,0.18312366626107507,0.8168763337389249,0.36192146412186404,0.4459716515345493,1.1236102361485056,0.010098041051706573,1.0840405865358735,0.08405206988062329,1.0200581707971481,0.48829110990902336,1.1301377576773146,0.02915578159137823,1.1260702527448372,0.013054262827494433 +41041,0.5408033286110515,0.015596721267871975,0.11610257080155326,0.4260262007426395,0.04483159730117376,0.0200480409539467,0.02883991359285663,0.2146853849804146,0.7853146150195854,0.3861378520015854,0.4471855155921873,1.546587417350828,0.010098041051706573,1.3810662485451584,0.08405206988062329,1.1078825246927673,0.48829110990902336,1.535327585338674,0.02915578159137823,1.5389813538787291,0.013054262827494433 +41043,0.5003217660954744,0.011576512592944451,0.0918917630493688,0.4102502944368365,0.03362958331671035,0.01498324432536017,0.02313813505114497,0.18366533154552678,0.8163346684544732,0.36596950804657946,0.44553761443470163,1.146216479631257,0.010098041051706573,1.0912386951797366,0.08405206988062329,1.0244741269289532,0.48829110990902336,1.151261516295761,0.02915578159137823,1.1475506514813736,0.013054262827494433 +41045,0.4896697253751908,0.011063518635390075,0.08728969732576755,0.40386289026304995,0.03244711326381234,0.014375634820801496,0.02259383838139692,0.17826239361415522,0.8217376063858448,0.37171755955022756,0.4430481905715284,1.0956365293060668,0.010098041051706573,1.0352172261694852,0.08405206988062329,1.002874410592212,0.48829110990902336,1.108502644955571,0.02915578159137823,1.0990477303518564,0.013054262827494433 +41047,0.48448014765370095,0.010050186730505603,0.08241893791000429,0.40348243570426173,0.029239948443723962,0.013016603610230253,0.020744269459084884,0.17011829753840832,0.8298817024615917,0.3547722063059334,0.4451650670753534,0.9953819805396636,0.010098041051706573,0.9803747916995035,0.08405206988062329,0.9924193335589999,0.48829110990902336,1.0022322162413104,0.02915578159137823,0.9972224035286179,0.013054262827494433 +41049,0.4895923233241788,0.010252304408276057,0.08422157024537813,0.4072527195610032,0.02902200770889056,0.013149968376309606,0.020940492568727622,0.17202387830254365,0.8279761216974564,0.34459114956341264,0.45310333138259296,1.0166238216996926,0.010098041051706573,1.0027231051399377,0.08405206988062329,1.0023107844310957,0.48829110990902336,0.9962889508783148,0.02915578159137823,1.004526799198434,0.013054262827494433 +41051,0.48278813282355226,0.008893635374127108,0.07929759194032487,0.404264320901514,0.02591621722879812,0.01160449925374834,0.01842140427543923,0.16424925665955895,0.8357507433404411,0.3268222476200952,0.4477697941524202,0.8807688201196953,0.010098041051706573,0.9455596053054994,0.08405206988062329,0.9878886079973109,0.48829110990902336,0.8912887228440827,0.02915578159137823,0.8895811159984023,0.013054262827494433 +41053,0.4929669420197593,0.01141751922469889,0.08968715689246538,0.4056450268230639,0.03365617016826408,0.014910382816379452,0.023160821246795183,0.18193341023031623,0.8180665897696837,0.37526186952963314,0.443020781682377,1.1301005179279944,0.010098041051706573,1.063380815520949,0.08405206988062329,1.0098626212083561,0.48829110990902336,1.1507701632653728,0.02915578159137823,1.1378566616584047,0.013054262827494433 +41055,0.5241365133549236,0.014033809944573797,0.10642938887983791,0.4193370339645134,0.041132219653727514,0.01824019561875978,0.026775104551952252,0.20305662011333356,0.7969433798866664,0.3864742632335047,0.4434527426994036,1.3910675339437186,0.010098041051706573,1.2632980211793394,0.08405206988062329,1.0733672090496968,0.48829110990902336,1.4052275202992472,0.02915578159137823,1.3945117916274978,0.013054262827494433 +41057,0.5316127925072935,0.014820022490210354,0.11096738350354388,0.4222298834838344,0.04258023815928537,0.019055866497889228,0.027877475296095376,0.20873723331633603,0.791262766683664,0.38371850191390267,0.4475284150972688,1.4693323246111858,0.010098041051706573,1.3199213265422012,0.08405206988062329,1.0894516211013574,0.48829110990902336,1.4586261605519542,0.02915578159137823,1.4615982217661776,0.013054262827494433 +41059,0.4847133362027431,0.010081102377223726,0.0827227156934747,0.4034416519059353,0.02928934466357013,0.013050152785169435,0.020798070992226754,0.17066317246710522,0.8293368275328947,0.3540665271689155,0.44555973973023433,0.9982184537671897,0.010098041051706573,0.9838423911948233,0.08405206988062329,0.9927185611329472,0.48829110990902336,1.0030143463672663,0.02915578159137823,0.9996514118749167,0.013054262827494433 +41061,0.5036350367230435,0.012323538538301104,0.09530392977392044,0.4101682596151921,0.0361225520441375,0.01602914993049279,0.024469184309506255,0.1892321280783519,0.8107678719216481,0.37902479079117996,0.44374356249544766,1.2204469803680769,0.010098041051706573,1.1313698343961034,0.08405206988062329,1.031366905367356,0.48829110990902336,1.2345660045405342,0.02915578159137823,1.224213346819182,0.013054262827494433 +41063,0.5447618442748268,0.01644202652141094,0.1198172640960458,0.4264224375364162,0.04782201372442198,0.021222942804382264,0.03018204504263354,0.21994430291927572,0.7800556970807243,0.3991245676089527,0.4437902369958969,1.6299174854242535,0.010098041051706573,1.42482049411315,0.08405206988062329,1.115644272253379,0.48829110990902336,1.6350229530722227,0.02915578159137823,1.62701202949851,0.013054262827494433 +41065,0.5128542008386536,0.013338741154108399,0.10129294656876822,0.41376187435883105,0.03915552951579333,0.017350094378788816,0.026008836687495186,0.197508271167765,0.802491728832235,0.38655731560943857,0.44310713182388906,1.3212972401497152,0.010098041051706573,1.200735189960008,0.08405206988062329,1.050718195780573,0.48829110990902336,1.3390083512278368,0.02915578159137823,1.3273287309439243,0.013054262827494433 +41067,0.47640576651728833,0.008203848280202822,0.07456496310466475,0.40275769653267157,0.023652148492028863,0.01064643717570721,0.01722029592583681,0.1565156602737277,0.8434843397262723,0.31720190699791545,0.4501255849672694,0.8123633438079446,0.010098041051706573,0.8906065259373315,0.08405206988062329,0.9746613552019017,0.48829110990902336,0.8123737459731372,0.02915578159137823,0.8149981736505731,0.013054262827494433 +41069,0.5670091991222923,0.01992759123303247,0.13678320429247848,0.43109055016373377,0.05820815689566068,0.02574744277447069,0.03514509334924299,0.24123630534427562,0.7587636946557244,0.4255504701527267,0.44233392960068313,1.9760687338974656,0.010098041051706573,1.6204762826683632,0.08405206988062329,1.160835486131616,0.48829110990902336,1.9894210700930692,0.02915578159137823,1.9757556967965344,0.013054262827494433 +41071,0.487269674867561,0.010192750154836784,0.08393909846236872,0.4048223287316268,0.029682027500172285,0.013224075818130681,0.020918088443749663,0.1722641543108202,0.8277358456891798,0.3536138467519904,0.4455246804839704,1.0093529741458895,0.010098041051706573,0.9979707601934628,0.08405206988062329,0.9980809223030811,0.48829110990902336,1.0174157782564743,0.02915578159137823,1.0124431643094642,0.013054262827494433 +42001,0.5020273254091796,0.011437051846620805,0.09226578871470334,0.4112200425383564,0.03308218127978538,0.014786251341673128,0.02278173172605492,0.18378638780170323,0.8162136121982968,0.35855306436581136,0.4469551513735328,1.1341156313199003,0.010098041051706573,1.0964533097701594,0.08405206988062329,1.02795477531797,0.48829110990902336,1.1344531556434485,0.02915578159137823,1.133674614640349,0.013054262827494433 +42003,0.5074421764700596,0.012793587232662693,0.09849979977414097,0.4106898999721721,0.03806374541590419,0.016810481971780956,0.025211911476612444,0.19411039196493102,0.805889608035069,0.38643474913841414,0.4416402481705604,1.2674241275665417,0.010098041051706573,1.1684832052002425,0.08405206988062329,1.038551116220718,0.48829110990902336,1.2978204954031702,0.02915578159137823,1.2803428213620407,0.013054262827494433 +42005,0.5186154021038584,0.01361844916282674,0.10398276809551779,0.41607492451048966,0.04018170644518598,0.01777477104553411,0.026259245497879558,0.20050073266951318,0.7994992673304868,0.3864265895314055,0.4423597855352815,1.3504339952971476,0.010098041051706573,1.2346750263446464,0.08405206988062329,1.0619336290557362,0.48829110990902336,1.3698725707423616,0.02915578159137823,1.3570155763293255,0.013054262827494433 +42007,0.5185408617648779,0.013767472978875102,0.10443503102487567,0.41542921312806763,0.04062754955657697,0.01797268544765733,0.026550410958968342,0.20140173846555928,0.7985982615344407,0.3890222385906103,0.4423768020423922,1.3658449113365534,0.010098041051706573,1.2400399021319024,0.08405206988062329,1.0618130269472736,0.48829110990902336,1.3848891404854606,0.02915578159137823,1.3715043523670938,0.013054262827494433 +42009,0.5162117193535563,0.013296643369709659,0.10207397349214184,0.4157189592740179,0.03874989271377876,0.017229462107523755,0.0257581199170775,0.19773664499513388,0.8022633550048661,0.3796255929701994,0.4446325112378252,1.3192035911175846,0.010098041051706573,1.2115792372593603,0.08405206988062329,1.057147274582284,0.48829110990902336,1.3255355613382493,0.02915578159137823,1.3199420069507548,0.013054262827494433 +42011,0.49531532983375637,0.011101495570552658,0.08938498792604774,0.4079103973698883,0.03255066670364722,0.014448463621395739,0.02241298603513579,0.18046077426282808,0.8195392257371719,0.36416256755080473,0.4438761194337326,1.099271284129311,0.010098041051706573,1.0603614656435378,0.08405206988062329,1.0142320184172422,0.48829110990902336,1.1133582047086534,0.02915578159137823,1.1051817722771964,0.013054262827494433 +42013,0.5111542532978546,0.013127808938739714,0.10020637290528181,0.41276008575736134,0.038902673045247096,0.01718519534252301,0.025682675736418085,0.19603939957218858,0.8039606004278115,0.38822553813038535,0.4417484454740469,1.3008465164301102,0.010098041051706573,1.1879848166043963,0.08405206988062329,1.0469338390034868,0.48829110990902336,1.3265779617601643,0.02915578159137823,1.3102878009064036,0.013054262827494433 +42015,0.5123536284722126,0.01282982341206786,0.09939105628714423,0.41426295424035364,0.03731790525591981,0.016609332426002474,0.025040953550626965,0.19398917225104553,0.8060108277489545,0.3754654256627184,0.44507676173403926,1.2724685829876607,0.010098041051706573,1.1810605074398595,0.08405206988062329,1.0493487243384398,0.48829110990902336,1.2770478079012242,0.02915578159137823,1.2725236715626678,0.013054262827494433 +42017,0.5021038762340594,0.01111487360431404,0.0916541783520381,0.4119851928948597,0.032279724829347184,0.014406329940458354,0.02213660186748441,0.18254027242226034,0.8174597275777397,0.35219043375592474,0.4462965535369374,1.101056779199884,0.010098041051706573,1.0881761433434778,0.08405206988062329,1.0281989028075065,0.48829110990902336,1.1062668076653184,0.02915578159137823,1.1044147295788682,0.013054262827494433 +42019,0.5019891587373992,0.011553902211182375,0.09302032500619192,0.4104112878829479,0.033863859604063434,0.015053936123370958,0.02301623851846262,0.18530345404302395,0.814696545956976,0.3640479605055054,0.4445428341418173,1.1443426212726893,0.010098041051706573,1.1038805280008632,0.08405206988062329,1.0280192157949415,0.48829110990902336,1.1588591334548226,0.02915578159137823,1.1507585585753781,0.013054262827494433 +42021,0.5175640893666491,0.014006917588668406,0.10505580169156292,0.41425670108045276,0.04162411747725859,0.018341511221360116,0.02706315580319508,0.20298124203346735,0.7970187579665327,0.396209602963807,0.4406462486893814,1.3879072636126843,0.010098041051706573,1.2458231760346183,0.08405206988062329,1.0601797400273076,0.48829110990902336,1.4187871103273073,0.02915578159137823,1.399361834741693,0.013054262827494433 +42023,0.5307882476537101,0.01574930095879046,0.11384074652784086,0.4186147064019099,0.04680014485085661,0.02059026524504636,0.029671532910550448,0.21447488152019398,0.785525118479806,0.4111018794084522,0.43996157085974247,1.562063639678343,0.010098041051706573,1.3509951238950428,0.08405206988062329,1.0874181781886105,0.48829110990902336,1.5928520776614266,0.02915578159137823,1.5703456566079654,0.013054262827494433 +42025,0.5159542341089551,0.01306844628444258,0.10163711784431931,0.415756419211352,0.03840062734141242,0.01704098120671677,0.025328692780303627,0.1969886302412946,0.8030113697587054,0.3778209000400015,0.44376830240841536,1.2955794916422367,0.010098041051706573,1.206662220456487,0.08405206988062329,1.056379259041699,0.48829110990902336,1.3116832886022913,0.02915578159137823,1.3016286950993283,0.013054262827494433 +42027,0.46266350542318957,0.008573728524291748,0.07257830489122974,0.39092869880164716,0.02484340334324736,0.011120663200147953,0.018531240142767517,0.15687060691083413,0.8431293930891659,0.34229792746577914,0.4476304251273463,0.8487826839951054,0.010098041051706573,0.8646869038248095,0.08405206988062329,0.9482104688388637,0.48829110990902336,0.8524778998639544,0.02915578159137823,0.8498925721148316,0.013054262827494433 +42029,0.49267974851028135,0.010065014900239228,0.08525286964717306,0.40902419443572735,0.02902948387775213,0.013023182238759576,0.020429122428256636,0.1730391190320947,0.8269608809679053,0.3405103429115448,0.4486191450596335,0.9966320702640195,0.010098041051706573,1.013587238318779,0.08405206988062329,1.0088270699131883,0.48829110990902336,0.9967309452732602,0.02915578159137823,0.997445944842384,0.013054262827494433 +42031,0.4990134590481313,0.011976386150389864,0.09325147766422213,0.40786597373151817,0.034713157918926346,0.015476303039594717,0.024000126516096044,0.18687166843575606,0.8131283315642439,0.37225316733232605,0.4458339133460603,1.1872827147591885,0.010098041051706573,1.108606271865944,0.08405206988062329,1.0223187253367123,0.48829110990902336,1.1893343554920626,0.02915578159137823,1.1853794384962704,0.013054262827494433 +42033,0.5129150852955489,0.012961400276243333,0.100213648713104,0.41430868888685485,0.0380319520135249,0.01686754147635693,0.025270070325139282,0.19538058362108707,0.8046194163789129,0.37950870467160047,0.44350974860187314,1.2854035338430663,0.010098041051706573,1.1887960199940029,0.08405206988062329,1.0500907937483348,0.48829110990902336,1.298988194089168,0.02915578159137823,1.2899590942257069,0.013054262827494433 +42035,0.4989083753449644,0.012162290901730353,0.09373481686602153,0.40749338358233733,0.035854208132864746,0.015858944837028967,0.02437780462859714,0.18787982222429053,0.8121201777757094,0.3825068350441483,0.44231753155056613,1.2049205581821862,0.010098041051706573,1.1123995381516605,0.08405206988062329,1.0221849621317345,0.48829110990902336,1.2235804215430095,0.02915578159137823,1.2111582678757076,0.013054262827494433 +42037,0.4984578269522979,0.011881154264119082,0.09313397071688098,0.40711401676876185,0.03481932766488149,0.015463365795410435,0.02383582646653094,0.18684423371647416,0.8131557662835258,0.3738628064160301,0.4441029403048086,1.1781773645474674,0.010098041051706573,1.1061150265543347,0.08405206988062329,1.0210559126803753,0.48829110990902336,1.1903124646646677,0.02915578159137823,1.1817856637899815,0.013054262827494433 +42039,0.5064103129562503,0.012269310204631885,0.09600580420439728,0.41178554031321324,0.035470657481841736,0.015817694603077206,0.02422800225573576,0.1895810605513703,0.8104189394486296,0.36946367749104386,0.4459374515731674,1.2164995974866115,0.010098041051706573,1.1410304942020395,0.08405206988062329,1.037184382564083,0.48829110990902336,1.2147352636694002,0.02915578159137823,1.2142603024418037,0.013054262827494433 +42041,0.502285622227902,0.011838595358673994,0.09373255273211206,0.41000322922057064,0.03463385443868228,0.015390564500053477,0.023569449004260907,0.18661205613722068,0.8133879438627794,0.36949654553488953,0.44437919918217006,1.173630069179299,0.010098041051706573,1.113123718053159,0.08405206988062329,1.0283440570007456,0.48829110990902336,1.184773940324829,0.02915578159137823,1.1774852264445177,0.013054262827494433 +42043,0.4975772059024355,0.010851039777539947,0.08916357343636952,0.40997391616511375,0.03136200671982267,0.01402489936901245,0.021807750935575635,0.17919545425047592,0.8208045457495241,0.3517356417102751,0.44719394056337186,1.0748581927428842,0.010098041051706573,1.0599825334055568,0.08405206988062329,1.0188483049955177,0.48829110990902336,1.0753087996761392,0.02915578159137823,1.0750861918142545,0.013054262827494433 +42045,0.4946923934499052,0.01119218504792803,0.08963306072946337,0.40740420035068037,0.03314217098022976,0.014667337873167713,0.02262453434926608,0.1811894864693124,0.8188105135306876,0.36975386883486805,0.44255814991471726,1.1079559026260088,0.010098041051706573,1.0623495212078715,0.08405206988062329,1.0132729803180456,0.48829110990902336,1.1314756415502867,0.02915578159137823,1.1178623900555062,0.013054262827494433 +42047,0.5195941499084006,0.013725005078326451,0.10468518785152126,0.41656859100964716,0.04059265271666708,0.017943425973005682,0.026414856827672206,0.20147491627836117,0.7985250837216389,0.38775927664419046,0.44203629898861546,1.361542638035853,0.010098041051706573,1.2431553676559048,0.08405206988062329,1.064081958977623,0.48829110990902336,1.3834694592151568,0.02915578159137823,1.3693519109438583,0.013054262827494433 +42049,0.49468555491259814,0.011234035263961245,0.0897515743859604,0.4070492260323037,0.03297380252056065,0.014643421862591613,0.022709446743287447,0.1814315649500173,0.8185684350499827,0.3673896836479188,0.4440926051358736,1.1124934834970612,0.010098041051706573,1.0654187276929132,0.08405206988062329,1.0134129931630902,0.48829110990902336,1.1272820574585738,0.02915578159137823,1.1182894501908676,0.013054262827494433 +42051,0.5157624675029544,0.013521933050557464,0.10322475518246671,0.4143013823726188,0.04003888005587638,0.017698368046306222,0.026217365362050132,0.20014010651497322,0.7998598934850267,0.3878806007832238,0.44202954781969955,1.3403760346736444,0.010098041051706573,1.2234953706261602,0.08405206988062329,1.0563250313927097,0.48829110990902336,1.3653639812525191,0.02915578159137823,1.3501145473688285,0.013054262827494433 +42053,0.5157279908183733,0.012761620424302794,0.10131199297960436,0.4148177097498216,0.0367648253517697,0.016501755622967493,0.024744866773766257,0.19644462736808085,0.8035553726319191,0.3628871989436731,0.4488462943880997,1.265427892076818,0.010098041051706573,1.2030825260660514,0.08405206988062329,1.0556846742821793,0.48829110990902336,1.260749136507183,0.02915578159137823,1.2645089621364836,0.013054262827494433 +42055,0.5029858680948676,0.012107182331935126,0.09450765367144036,0.410232749084233,0.035294644830407645,0.01567856944762385,0.02407062126376005,0.18789325837205306,0.8121067416279469,0.3734580582553757,0.4442194991041865,1.2002531326775356,0.010098041051706573,1.1211621480743355,0.08405206988062329,1.0299252539437695,0.48829110990902336,1.2073805524407308,0.02915578159137823,1.2018127909002536,0.013054262827494433 +42057,0.5082770164472354,0.012194431662528683,0.09577433443208286,0.41416974103896964,0.034595453140097265,0.015688504583832946,0.023991703869999,0.1884294023395513,0.8115705976604487,0.3612184135263314,0.4534845813494911,1.209337818047334,0.010098041051706573,1.1381592656799584,0.08405206988062329,1.0409390720911833,0.48829110990902336,1.1866318630617547,0.02915578159137823,1.1955433778045461,0.013054262827494433 +42059,0.5041713157268666,0.011798110048424258,0.09460730030784228,0.41112702819645364,0.03450719757008526,0.015371533404675284,0.023400994226367,0.1876491132214581,0.8123508867785418,0.3647413831469922,0.44545875895761144,1.169310878186213,0.010098041051706573,1.122896148223242,0.08405206988062329,1.0324598471042399,0.48829110990902336,1.1815360344293402,0.02915578159137823,1.1746199423195733,0.013054262827494433 +42061,0.5066161272234306,0.012054971839898353,0.09562820187938166,0.4124860606667645,0.0346201462199158,0.01550554654489367,0.023795081111939818,0.18875870060332126,0.8112412993966788,0.3620286227234837,0.4478764025547025,1.1956141894321188,0.010098041051706573,1.1366988068774033,0.08405206988062329,1.0376994633495265,0.48829110990902336,1.1871513206077366,0.02915578159137823,1.1899780879553374,0.013054262827494433 +42063,0.4958626056003367,0.011775268809735047,0.09178456416361762,0.40629788868841377,0.03454555488625874,0.015330409160593542,0.023747039354739864,0.1851007983400862,0.8148992016599138,0.3763765203991916,0.44377371303106644,1.1674493738128353,0.010098041051706573,1.0909547999889728,0.08405206988062329,1.0159261460088251,0.48829110990902336,1.1801640508820543,0.02915578159137823,1.1705683554315014,0.013054262827494433 +42065,0.5135733385944516,0.013290620705258646,0.10132311169054742,0.4137510810609094,0.039118215352301644,0.01731353224308015,0.025878720148581776,0.19729044340161558,0.8027095565983844,0.3860739637741607,0.44259514620370977,1.3184431503892617,0.010098041051706573,1.2030592228566341,0.08405206988062329,1.051751176346078,0.48829110990902336,1.3339615687123212,0.02915578159137823,1.3224924144665133,0.013054262827494433 +42067,0.5043803950457555,0.012196796639826894,0.09510057289872034,0.4109299736110714,0.03544506176177976,0.015766419699185172,0.024181742112955137,0.18854930491517852,0.8114506950848215,0.3727113379172577,0.4448128713993673,1.2093338116654806,0.010098041051706573,1.1287610343176502,0.08405206988062329,1.0326640287065572,0.48829110990902336,1.2133876988307337,0.02915578159137823,1.2090330301002625,0.013054262827494433 +42069,0.5109881800818683,0.013307100781426957,0.10103207482883017,0.41184077667125646,0.03981162208448007,0.017514875960754718,0.026041895488257576,0.1977190055798223,0.8022809944201776,0.39404933682624477,0.4399437913780111,1.318021551947754,0.010098041051706573,1.1970050644219064,0.08405206988062329,1.045828880265588,0.48829110990902336,1.3579627425733531,0.02915578159137823,1.3351433660590972,0.013054262827494433 +42071,0.4930078224957728,0.011202217574202932,0.08891188845131345,0.40606287624017035,0.03300924232522943,0.014615330991479488,0.022722190324472962,0.18034579654580596,0.819654203454194,0.3712579150009247,0.4427648125782271,1.1092706630111295,0.010098041051706573,1.0544863115805887,0.08405206988062329,1.0090461828407855,0.48829110990902336,1.1267246968023175,0.02915578159137823,1.1158834156218032,0.013054262827494433 +42073,0.5161302178701785,0.013875428416340384,0.1041308410795086,0.41361560149878396,0.04136293166878965,0.01819040091272948,0.026883580801755052,0.20175304113990178,0.7982469588600982,0.39722075842263854,0.43977542642256734,1.3749501803034745,0.010098041051706573,1.233687933960721,0.08405206988062329,1.057048521113723,0.48829110990902336,1.4095796233726996,0.02915578159137823,1.3881600142224655,0.013054262827494433 +42075,0.5068778601265567,0.012510290299511138,0.09680446281475444,0.41181537687238423,0.036715786145595786,0.016273851934001732,0.024681074640718347,0.19098183296185872,0.8090181670381413,0.3792778254020718,0.4432385532878982,1.2399680434481772,0.010098041051706573,1.148050748192912,0.08405206988062329,1.0379107704850958,0.48829110990902336,1.2538595686341916,0.02915578159137823,1.2439969890719,0.013054262827494433 +42077,0.49769402500836335,0.011377550931183894,0.09094694356595955,0.40855159681751807,0.03350167564802994,0.014845469144696033,0.022860533499458234,0.18273665946548434,0.8172633405345157,0.36836505257301744,0.44312616779719255,1.1267032541896087,0.010098041051706573,1.0787531734576892,0.08405206988062329,1.019019083230929,0.48829110990902336,1.1442747585839173,0.02915578159137823,1.134183183675931,0.013054262827494433 +42079,0.5133656751361333,0.013427505463677292,0.10207493198184572,0.41290940558935846,0.039986637615152115,0.017613755064010368,0.02615583026683,0.1988347428074105,0.8011652571925895,0.3917380774964791,0.44049102686583474,1.3304792864110886,0.010098041051706573,1.2099124275612656,0.08405206988062329,1.0509104346761282,0.48829110990902336,1.3627018383617497,0.02915578159137823,1.343745007911025,0.013054262827494433 +42081,0.5045784420513061,0.0122599310471426,0.0958904452251908,0.4104927381005613,0.03619853776347289,0.016041366329842422,0.024297373857870837,0.19004070969690884,0.8099592903030912,0.37749890177758183,0.4431495668322104,1.2146478731822417,0.010098041051706573,1.1379916111768549,0.08405206988062329,1.0331978645576436,0.48829110990902336,1.2356640652870021,0.02915578159137823,1.2231070991057207,0.013054262827494433 +42083,0.5065388927073199,0.012532426837231932,0.09744919532021472,0.4105535897418474,0.0372043010185973,0.016436963357911793,0.024741292362071822,0.1923824541870297,0.8076175458129703,0.3817815108308,0.44180277300991233,1.241500904947841,0.010098041051706573,1.1551296623195109,0.08405206988062329,1.0370495194006037,0.48829110990902336,1.2688005434020588,0.02915578159137823,1.2534040623178133,0.013054262827494433 +42085,0.5126966167385849,0.013542130417578232,0.10180638693232727,0.41296620514532034,0.040162660713651266,0.01772000387496942,0.02641353575477782,0.19857042860931648,0.8014295713906835,0.3945004034014898,0.44120592510810425,1.342682611330138,0.010098041051706573,1.2073376682100445,0.08405206988062329,1.0500577639979238,0.48829110990902336,1.3683121996756973,0.02915578159137823,1.3511085265154363,0.013054262827494433 +42087,0.5117063900792447,0.013335853919191114,0.10050182349226593,0.4129908464627188,0.03886974429105115,0.017260345761873252,0.026061534852292692,0.1964052539517864,0.8035947460482136,0.3867566073967042,0.44405606665766106,1.3226256662611093,0.010098041051706573,1.1922755929995328,0.08405206988062329,1.047754645002253,0.48829110990902336,1.3298603817177719,0.02915578159137823,1.3221890210328768,0.013054262827494433 +42089,0.4923766629341737,0.010006608161287078,0.08522963005811027,0.4085967848675518,0.028575759895090626,0.012913723918465445,0.02032307563412052,0.1730984355558393,0.8269015644441607,0.3352796424859223,0.4519118289723609,0.9911609968814639,0.010098041051706573,1.0141007913856903,0.08405206988062329,1.0086161829505838,0.48829110990902336,0.9808961963441314,0.02915578159137823,0.9876690950264135,0.013054262827494433 +42091,0.501315073657334,0.011559530785332391,0.09285410464997962,0.4102072079868793,0.03417608979037117,0.015136284535652416,0.023058414543572506,0.1852210506509696,0.8147789493490304,0.36806224042760904,0.4428910571248832,1.1441446289665702,0.010098041051706573,1.1003291681282321,0.08405206988062329,1.026551515326591,0.48829110990902336,1.1671268291095185,0.02915578159137823,1.1546722584149571,0.013054262827494433 +42093,0.5172418145631941,0.013653861079949101,0.10335243029078389,0.415413028583676,0.0399066381081444,0.01769872342145204,0.02639744254141491,0.1998145304204844,0.8001854695795156,0.3861219131070877,0.4435032430817562,1.354750534535525,0.010098041051706573,1.2280446931958764,0.08405206988062329,1.059194182630106,0.48829110990902336,1.3641145973831712,0.02915578159137823,1.355510510858473,0.013054262827494433 +42095,0.5017272591548498,0.011816298698155024,0.0937528753636292,0.4095919899647183,0.034864901379070175,0.015447824061976888,0.023551239209245595,0.1868602386116197,0.8131397613883803,0.37188087558747857,0.4430766602211129,1.1702549109663454,0.010098041051706573,1.1116393599092427,0.08405206988062329,1.0273138483258144,0.48829110990902336,1.1903075015721347,0.02915578159137823,1.1789432333012462,0.013054262827494433 +42097,0.5168561162598364,0.01368798368034659,0.1038130166635436,0.4148477230422544,0.04064425710098831,0.01793108890532316,0.026483160883144702,0.20085477059800183,0.7991452294019982,0.39151407412343797,0.44117152543273197,1.3565437120916832,0.010098041051706573,1.230453466193811,0.08405206988062329,1.0586228636597417,0.48829110990902336,1.3855403657599057,0.02915578159137823,1.368055396804429,0.013054262827494433 +42099,0.5012845828750966,0.01062962369992336,0.0894743107429378,0.41283872562119117,0.030199796394858733,0.013721557996827775,0.0212047688340176,0.1784900509601984,0.8215099490398016,0.33752477268725317,0.45435928830181643,1.0533176978194807,0.010098041051706573,1.0645622458134036,0.08405206988062329,1.0264683194225808,0.48829110990902336,1.036958050108121,0.02915578159137823,1.0464275273004509,0.013054262827494433 +42101,0.47903254860337174,0.009689183832358127,0.08025998111923546,0.4000258954140393,0.028285429234107103,0.012573806161916307,0.020226566776322657,0.16754598691307077,0.8324540130869292,0.35242257523193077,0.4445329804914035,0.9591260295518638,0.010098041051706573,0.9557943073553922,0.08405206988062329,0.9813138738694509,0.48829110990902336,0.9697761213875415,0.02915578159137823,0.9636746553296222,0.013054262827494433 +42103,0.5083202309461655,0.011746812903461419,0.09466491221415796,0.414195947903908,0.033277670282910385,0.015119956410178752,0.02310908004113156,0.18623085695006225,0.8137691430499377,0.35153120099691404,0.4543574199045883,1.1648005700493265,0.010098041051706573,1.1272828392911016,0.08405206988062329,1.0408008084914175,0.48829110990902336,1.1416526731346286,0.02915578159137823,1.152721191218211,0.013054262827494433 +42105,0.5184001370942422,0.01384989927640142,0.10437033338122413,0.4155800992024985,0.040670298361491206,0.017997968611518107,0.026716619625205825,0.20133160837156608,0.798668391628434,0.3896729754894857,0.4425334786469021,1.373110020744476,0.010098041051706573,1.2387304824791323,0.08405206988062329,1.0616611187214422,0.48829110990902336,1.3889361496186436,0.02915578159137823,1.377983229548157,0.013054262827494433 +42107,0.5160586625304695,0.013521200410729038,0.10332331595282629,0.41478840038036435,0.040244496419916356,0.017751952102721798,0.02620089806152747,0.20021622240809842,0.7997837775919016,0.3895006277023721,0.44110260239053806,1.3394566686475051,0.010098041051706573,1.2238166527673071,0.08405206988062329,1.0567294101084541,0.48829110990902336,1.3729224309259793,0.02915578159137823,1.3537323397665948,0.013054262827494433 +42109,0.4965818749955978,0.011347380866902627,0.0904053635850175,0.40823351635368627,0.03285412790129799,0.014662179809056618,0.02285097672363338,0.18205530273495973,0.8179446972650403,0.3634090567027239,0.44628120561000645,1.1245845406422021,0.010098041051706573,1.074741994389955,0.08405206988062329,1.0172593246350514,0.48829110990902336,1.1262661229183784,0.02915578159137823,1.123736812192464,0.013054262827494433 +42111,0.5189403317990123,0.013678105218661453,0.10452684634323783,0.41617234097367606,0.04038114213838425,0.017861583989082372,0.0263577609611562,0.20142363184775836,0.7985763681522416,0.3863231653022758,0.44232488342879395,1.3560562571996693,0.010098041051706573,1.2397591088110347,0.08405206988062329,1.0624748582617658,0.48829110990902336,1.377204188472658,0.02915578159137823,1.3636875548560088,0.013054262827494433 +42113,0.5388484789505082,0.01654789606352498,0.1187474597965581,0.4210992486998768,0.04852013123720946,0.021461948782281935,0.030709738841157345,0.22037263615893907,0.7796273638410609,0.4085993192640557,0.44233080651321577,1.6411068290728024,0.010098041051706573,1.4106969601417108,0.08405206988062329,1.1035710565503212,0.48829110990902336,1.6562271549847805,0.02915578159137823,1.6429842265610912,0.013054262827494433 +42115,0.5171067522675925,0.01296851020779207,0.10131517000365145,0.41664595487429046,0.03717143607204458,0.01664977156198999,0.025078980599118388,0.195926991011757,0.804073008988243,0.3668891447421438,0.44791843741844933,1.285559752625896,0.010098041051706573,1.2050860191545087,0.08405206988062329,1.0592345255680393,0.48829110990902336,1.274040911453156,0.02915578159137823,1.2786375846783418,0.013054262827494433 +42117,0.5106665799671619,0.012933013628237247,0.09927336223639867,0.4127160644495943,0.037408920568941816,0.016693926432528847,0.025325749002546624,0.19439956741007483,0.8056004325899252,0.3768273757048777,0.4462552294649401,1.282695905108149,0.010098041051706573,1.1794648737884945,0.08405206988062329,1.045559514056477,0.48829110990902336,1.281781394187279,0.02915578159137823,1.2796455020926318,0.013054262827494433 +42119,0.49434911954717053,0.011165386038295037,0.08985067297027349,0.4061132409337638,0.0329306107705738,0.01458011952734262,0.02258603403303855,0.18175550318078393,0.8182444968192161,0.3665037743397723,0.442752781869784,1.1067935614119904,0.010098041051706573,1.06596684233529,0.08405206988062329,1.0121598589925727,0.48829110990902336,1.1248923226962182,0.02915578159137823,1.1146496193308604,0.013054262827494433 +42121,0.5169142504942789,0.013402136790673539,0.10261385589419883,0.4155657467754052,0.03908769378717776,0.01738823973634133,0.02592719542527271,0.19851233699995383,0.8014876630000461,0.380920231937094,0.44485202506486404,1.3293180329968513,0.010098041051706573,1.2200117957208212,0.08405206988062329,1.0586440890021,0.48829110990902336,1.3366571173947204,0.02915578159137823,1.3300716238887251,0.013054262827494433 +42123,0.5203414722255457,0.013608987624085082,0.10414365261296084,0.4177102520416493,0.03953351175823528,0.017619795654554203,0.02615395533605703,0.2001448244506235,0.7998551755493765,0.3796055810060504,0.4456926508908938,1.3502564863934965,0.010098041051706573,1.2389459042421889,0.08405206988062329,1.065840762466919,0.48829110990902336,1.3532351431702208,0.02915578159137823,1.3490111472166726,0.013054262827494433 +42125,0.5152589360833404,0.013182093580427812,0.10164541880255339,0.4148774101944285,0.038869840375415236,0.017206431006053225,0.0255834351571453,0.19727055987654482,0.8027294401234552,0.38240621990962576,0.4426679101295232,1.3067010896093003,0.010098041051706573,1.2069209317275287,0.08405206988062329,1.0550600905476497,0.48829110990902336,1.3262707072969069,0.02915578159137823,1.3138712610849868,0.013054262827494433 +42127,0.5232569589063139,0.013695558742377732,0.10538961925828808,0.41886342522728814,0.03928112501191385,0.017583551850592606,0.02617367721397059,0.2014108316467846,0.7985891683532154,0.37272290466904495,0.4476336114421256,1.3584785175065532,0.010098041051706573,1.2544044373447367,0.08405206988062329,1.0715322533734826,0.48829110990902336,1.3459663356658473,0.02915578159137823,1.3503137072039746,0.013054262827494433 +42129,0.5221350741914793,0.013983732742081707,0.10610782640929972,0.41772594737341356,0.0412567900051765,0.018250428403829014,0.026781829900501073,0.20321911255168326,0.7967808874483168,0.3888194811006004,0.44236181248078504,1.3863658162421377,0.010098041051706573,1.2598286251278155,0.08405206988062329,1.069389895889155,0.48829110990902336,1.4068290979484517,0.02915578159137823,1.3928007365972346,0.013054262827494433 +42131,0.5077074260490856,0.01190359750823055,0.0953093331358424,0.4135303696591178,0.034006646122498235,0.015330938499674325,0.023445781758330436,0.1877249144798363,0.8122750855201637,0.35680289645956575,0.4508218318398541,1.1794790249270024,0.010098041051706573,1.1326416218988715,0.08405206988062329,1.0397127204162744,0.48829110990902336,1.1667069124440737,0.02915578159137823,1.172557442110996,0.013054262827494433 +42133,0.497961479528517,0.010795728766981417,0.08926612045569399,0.41032388466842346,0.03128353812861077,0.013979286861015398,0.021679847158465142,0.17926310392565606,0.820736896074344,0.35045253416314787,0.4468576029841861,1.0693064347621255,0.010098041051706573,1.0600726704698071,0.08405206988062329,1.0197594938058834,0.48829110990902336,1.072261990975281,0.02915578159137823,1.071452900790651,0.013054262827494433 +44001,0.5086701983232156,0.0128008830980217,0.09856194987496779,0.411819742464558,0.03794574748144075,0.016769409787116694,0.025165388379776582,0.1937639558988676,0.8062360441011324,0.3849938797840078,0.44193120178535433,1.268091580367733,0.010098041051706573,1.1693927897579988,0.08405206988062329,1.0411480535196969,0.48829110990902336,1.2941733513426248,0.02915578159137823,1.2786893797918832,0.013054262827494433 +44003,0.5086310056100417,0.012087505321587873,0.0968258145476335,0.4134800221783322,0.035657439279561415,0.01581919662035945,0.02376478269760681,0.1903655370586435,0.8096344629413565,0.36826376773747377,0.44364365304905384,1.197356644689139,0.010098041051706573,1.1485053613873675,0.08405206988062329,1.041443540490878,0.48829110990902336,1.2182293493022929,0.02915578159137823,1.207315954476395,0.013054262827494433 +44005,0.5125543176223221,0.012536399076725538,0.0991161349037109,0.41437443210901703,0.03661000433800458,0.016294497874794478,0.024458674223798146,0.19337684123606402,0.806623158763936,0.3693647293003341,0.4450831997820683,1.2429746884372874,0.010098041051706573,1.1768486118750063,0.08405206988062329,1.0490729070284806,0.48829110990902336,1.2526649584801737,0.02915578159137823,1.2472602719947283,0.013054262827494433 +44007,0.48778153668540175,0.010522684320932,0.08574067571361246,0.4039942942026374,0.031251382499406635,0.013824550862853165,0.021572535099291145,0.17577679609655159,0.8242232039034484,0.36448724294862384,0.44236605734532386,1.0413665135804737,0.010098041051706573,1.0166571614009499,0.08405206988062329,0.998881495460571,0.48829110990902336,1.0672301657737142,0.02915578159137823,1.053221213211939,0.013054262827494433 +44009,0.5025689899541244,0.011407702615764577,0.09270925710668437,0.4112271116311239,0.033019393969578315,0.014754345693600195,0.02269877935923961,0.18447070742495889,0.8155292925750411,0.35616070066855926,0.44683877926995824,1.130809581124526,0.010098041051706573,1.1015508015334756,0.08405206988062329,1.0289454658746635,0.48829110990902336,1.1317951462067066,0.02915578159137823,1.1313253513581834,0.013054262827494433 +45001,0.5071019642706821,0.01228921720468557,0.09575158023286376,0.41251977110150007,0.03509377079753828,0.015752275767044965,0.02423421337434576,0.18882115822717116,0.8111788417728288,0.36650852875943907,0.44886244507386874,1.218225188636345,0.010098041051706573,1.1406209615894438,0.08405206988062329,1.0383456695386073,0.48829110990902336,1.2031092241035823,0.02915578159137823,1.2070358490312492,0.013054262827494433 +45003,0.5015589329860547,0.011434299736419486,0.09184157641626967,0.4113478655751731,0.03270529978601669,0.014704524267929817,0.02279751986141458,0.18311223343084834,0.8168877665691516,0.3561056012124697,0.44960677211761285,1.1336256079251579,0.010098041051706573,1.0920022181699527,0.08405206988062329,1.0270836174999625,0.48829110990902336,1.1220607970380312,0.02915578159137823,1.1265469746919061,0.013054262827494433 +45005,0.492802211462685,0.010297638918300083,0.08637800720654151,0.4079396134157728,0.029890875335709315,0.013372807107861758,0.020896089097765382,0.17527926051744608,0.824720739482554,0.3460472903043038,0.44738760433308067,1.0203896742557443,0.010098041051706573,1.0275490487113863,0.08405206988062329,1.009112057395991,0.48829110990902336,1.0271023776649049,0.02915578159137823,1.0264485334285665,0.013054262827494433 +45007,0.49982584095543514,0.011303310365881593,0.0910036277271058,0.4106121350998315,0.03263704452337577,0.014573117027189591,0.022614497770413203,0.1820706739634531,0.8179293260365469,0.35863454390241517,0.446520732499287,1.1198297112987334,0.010098041051706573,1.0807014998687525,0.08405206988062329,1.023352584337268,0.48829110990902336,1.1175964284622695,0.02915578159137823,1.1184396398987713,0.013054262827494433 +45009,0.49954240614374157,0.012209563685160454,0.09381503993804537,0.40811313047238323,0.03608682944313595,0.01597907669407448,0.02444149592706889,0.18780195391670196,0.812198046083298,0.38465931973132855,0.4427952508062148,1.2080441815674148,0.010098041051706573,1.111512428648715,0.08405206988062329,1.0231995597510766,0.48829110990902336,1.2342652605184692,0.02915578159137823,1.2170614582564254,0.013054262827494433 +45011,0.49472824723276276,0.01072088885769881,0.08777015213088625,0.40902068286652626,0.030752376845469262,0.013809399719217031,0.021670258202691185,0.17741083639720215,0.8225891636027979,0.3503739722315865,0.44905145994435763,1.0621887201170115,0.010098041051706573,1.0438755351559825,0.08405206988062329,1.0133674367993617,0.48829110990902336,1.0550303842378184,0.02915578159137823,1.0578755493254093,0.013054262827494433 +45013,0.5115216267553453,0.013583589445476284,0.10088799022210529,0.4121064933599976,0.038931752675464115,0.017371987900047813,0.026555259318435727,0.1972311334362385,0.8027688665637616,0.3858908537057356,0.446216435331362,1.346621642641749,0.010098041051706573,1.1988541883390367,0.08405206988062329,1.0475454715791765,0.48829110990902336,1.3330836924875453,0.02915578159137823,1.3363759102214077,0.013054262827494433 +45015,0.4756686890194369,0.008146065072970242,0.07391714369383955,0.4025267470004502,0.022707018289992924,0.010433477169605507,0.01712550197441601,0.1553962777037425,0.8446037222962575,0.3071955591796682,0.45948248406544784,0.808710910758837,0.010098041051706573,0.8851936563137577,0.08405206988062329,0.9734594863653881,0.48829110990902336,0.7808499133997266,0.02915578159137823,0.7968682606395197,0.013054262827494433 +45017,0.5112615176859426,0.01199397943392744,0.09654637315979997,0.41548640795766967,0.03391611479602828,0.015427477348087958,0.02345957796357185,0.1888395074144939,0.811160492585506,0.35129351508514556,0.454871598379381,1.1886497901857733,0.010098041051706573,1.148449503782002,0.08405206988062329,1.0470045124380827,0.48829110990902336,1.1662325371058917,0.02915578159137823,1.177214638173694,0.013054262827494433 +45019,0.48631883443135304,0.009865093501685573,0.08284290202036226,0.404545587832534,0.02823038148148148,0.012725208569378211,0.02028523841405549,0.17034689211087106,0.8296531078891289,0.3407700695292233,0.4507628980403851,0.9776706067495086,0.010098041051706573,0.9881296120253424,0.08405206988062329,0.9958210275845665,0.48829110990902336,0.970094541219817,0.02915578159137823,0.9748626757535892,0.013054262827494433 +45021,0.49244189515324877,0.010273626528172682,0.08542197867572537,0.4084493819803533,0.02926900381921235,0.013228754058527645,0.020862616745830512,0.1734661074057111,0.8265338925942889,0.34264019954772845,0.45197144871204026,1.0181372237184503,0.010098041051706573,1.0175360814256478,0.08405206988062329,1.0084549111581795,0.48829110990902336,1.0056061150097717,0.02915578159137823,1.0120177429505026,0.013054262827494433 +45023,0.49963182616565255,0.011071883568103916,0.08995894451121471,0.41120135848829437,0.03157312488895897,0.01423614480992072,0.02216008466288743,0.18005046876535222,0.8199495312346478,0.350972602674578,0.4508943875523407,1.097744670955913,0.010098041051706573,1.070871021866509,0.08405206988062329,1.0228861741267485,0.48829110990902336,1.0837540569384214,0.02915578159137823,1.0894589864343127,0.013054262827494433 +45025,0.4953570260667812,0.010521822901500298,0.08700858303345765,0.41013527091083574,0.02965058032072437,0.013541916386345786,0.021240887577683828,0.17564822633953647,0.8243517736604635,0.34077764844558783,0.45671674010645313,1.043260534490416,0.010098041051706573,1.0357785018261707,0.08405206988062329,1.0143072105885134,0.48829110990902336,1.0194637190862563,0.02915578159137823,1.032018639309089,0.013054262827494433 +45027,0.5072286349848915,0.012232836339164664,0.09579872073678602,0.41287202413234636,0.03454306457184464,0.01571016892003618,0.024117006603006624,0.18886694111746968,0.8111330588825303,0.3605796017543306,0.4547995122830307,1.2128081822837733,0.010098041051706573,1.1385128023788877,0.08405206988062329,1.0387631508881014,0.48829110990902336,1.1872018538194544,0.02915578159137823,1.1976627675223055,0.013054262827494433 +45029,0.501249853070917,0.011348684987039826,0.0913242664504664,0.41135549442789116,0.03218717047471783,0.014600706266110562,0.022640774690529858,0.18219310368066247,0.8178068963193376,0.3524492637690762,0.4536188192615139,1.1247416041273763,0.010098041051706573,1.0860049943626162,0.08405206988062329,1.0264792891536745,0.48829110990902336,1.1067410053296673,0.02915578159137823,1.1145577080300977,0.013054262827494433 +45031,0.49835364189478537,0.010859962328858275,0.0888030270285357,0.41144032536912634,0.030859333691224778,0.013975143595509245,0.021791678470669384,0.17819279235303387,0.8218072076469661,0.347503173301835,0.4528660189277918,1.0765835579448049,0.010098041051706573,1.057022340305015,0.08405206988062329,1.020404942142426,0.48829110990902336,1.06023731171302,0.02915578159137823,1.0677488290220845,0.013054262827494433 +45033,0.4896470132564186,0.010025448722252896,0.08374047585658617,0.4077978523291653,0.028662296603311196,0.012922010692187819,0.020474849127697557,0.17102213143232822,0.8289778685676717,0.3422753012820014,0.45083654220140235,0.9937224278281435,0.010098041051706573,0.9967918352988732,0.08405206988062329,1.0025932638604687,0.48829110990902336,0.9848967818561021,0.02915578159137823,0.9895527146732652,0.013054262827494433 +45035,0.47815759442661554,0.008322670627714909,0.07542225929183638,0.4037927684060171,0.023360090399533368,0.010736699181812292,0.017405706245647044,0.15773514876884737,0.8422648512311526,0.3097240870118278,0.4596171931777611,0.8258021799225904,0.010098041051706573,0.9011937839591664,0.08405206988062329,0.9790859637360614,0.48829110990902336,0.8033148440586781,0.02915578159137823,0.8171627304867952,0.013054262827494433 +45037,0.499276175754943,0.010406795144786075,0.08844589503789801,0.4120724977354798,0.029304440796130742,0.013435986644316222,0.020843764734117788,0.1771482384557228,0.8228517615442772,0.33132618290056465,0.4584966059509405,1.0317684728968208,0.010098041051706573,1.0537174916207124,0.08405206988062329,1.0227116296421823,0.48829110990902336,1.0079728233193532,0.02915578159137823,1.0230499507304796,0.013054262827494433 +45039,0.5056948329905884,0.011592852880447677,0.09351597317237342,0.41315273561450805,0.033246387666812816,0.014907430114444052,0.022924602199096297,0.18492570434096936,0.8150742956590307,0.3555156037945664,0.44839247691636996,1.1491182618575326,0.010098041051706573,1.1137869775856721,0.08405206988062329,1.0353387415494395,0.48829110990902336,1.1401808927161545,0.02915578159137823,1.143087734283104,0.013054262827494433 +45041,0.4910783619354556,0.010147176148146163,0.08468485474699697,0.40775877726060306,0.02894494656800345,0.013062776277517556,0.02066304878136709,0.1724467240080259,0.8275532759919741,0.34179602308439777,0.45129730147636593,1.0054733024412261,0.010098041051706573,1.009186964555717,0.08405206988062329,1.0057546239717832,0.48829110990902336,0.9938201387706713,0.02915578159137823,0.9997222427174404,0.013054262827494433 +45043,0.5238504289692143,0.013949565003267654,0.10558477766457085,0.4197291043363871,0.039694504532763734,0.01786172399085796,0.026628908237636365,0.2015551993960014,0.7984448006039986,0.37594912269331127,0.44997976926793337,1.3819819035857468,0.010098041051706573,1.2551337947353045,0.08405206988062329,1.0732404203184187,0.48829110990902336,1.3611857016836493,0.02915578159137823,1.368254352924506,0.013054262827494433 +45045,0.48780393413355594,0.009824939363888228,0.0830638455273573,0.40601325401880817,0.028141181738312017,0.01267910294001422,0.02014116466965241,0.1702812128296924,0.8297187871703076,0.33878977742541,0.45055332281062715,0.9735615816016899,0.010098041051706573,0.9892994298956928,0.08405206988062329,0.9988833986218062,0.48829110990902336,0.9662478497858158,0.02915578159137823,0.9707394805260591,0.013054262827494433 +45047,0.4952927375535162,0.011281576759896734,0.08953505264809761,0.40774577384777594,0.032713479030718695,0.014574451996564798,0.02277759374308969,0.1807719876741043,0.8192280123258957,0.36537063488747246,0.44551825205992485,1.1176539850429632,0.010098041051706573,1.063871757631557,0.08405206988062329,1.014264272519505,0.48829110990902336,1.1210568749517453,0.02915578159137823,1.1171739557934668,0.013054262827494433 +45049,0.491918452398464,0.010358226581685294,0.08587636879841487,0.4077801402870883,0.029715652666783162,0.013360949271162355,0.021056796164448246,0.17457440024805831,0.8254255997519417,0.34602828557571313,0.44962664697240623,1.0260213060143952,0.010098041051706573,1.0215795505888596,0.08405206988062329,1.007598463711206,0.48829110990902336,1.0200119920158695,0.02915578159137823,1.0233143911053881,0.013054262827494433 +45051,0.5086915397524416,0.012152881345418549,0.09623814710357223,0.41396770711144953,0.03426104506965383,0.015583230330336519,0.023890472704407143,0.1891876305833732,0.8108123694166268,0.3560027504767089,0.4548381492349489,1.2051080159771335,0.010098041051706573,1.1444105505882414,0.08405206988062329,1.0418990215145636,0.48829110990902336,1.1758122704208687,0.02915578159137823,1.1893807522967292,0.013054262827494433 +45053,0.48122466561569066,0.009027609102261407,0.07859370539307711,0.4037934294884239,0.02585514282604988,0.011699031209729135,0.01875965582668391,0.16332019326674038,0.8366798067332596,0.3289721829087768,0.45248372010314286,0.8948716592216726,0.010098041051706573,0.9375984622159259,0.08405206988062329,0.9854312825243823,0.48829110990902336,0.8905014669965725,0.02915578159137823,0.8951885667457228,0.013054262827494433 +45055,0.500175463054064,0.010926462390095593,0.08977801775533367,0.41176200408854763,0.03102462215668505,0.014073514067446167,0.021845258708571538,0.17949304671434785,0.8205069532856522,0.3455703626831512,0.45362402792111584,1.0834035244154774,0.010098041051706573,1.0685709038230062,0.08405206988062329,1.02422950450245,0.48829110990902336,1.0649718948370102,0.02915578159137823,1.0738062861292943,0.013054262827494433 +45057,0.5000164793452486,0.0111428375093451,0.09033204698722612,0.41113699722156805,0.031408664541935985,0.014318409039459155,0.02228494053623232,0.18065813971873945,0.8193418602812605,0.34770234473240147,0.45587449349658304,1.1044751485098052,0.010098041051706573,1.0741822097435167,0.08405206988062329,1.0240927518125136,0.48829110990902336,1.0795011187025774,0.02915578159137823,1.0915996920997482,0.013054262827494433 +45059,0.5017063894537785,0.011299113292322367,0.09132304178392492,0.41179398600127143,0.03225768313830328,0.014548126756056204,0.022521366141308306,0.18202487292089464,0.8179751270791054,0.3532261136748669,0.450997261448747,1.1198340388890298,0.010098041051706573,1.0862428385315601,0.08405206988062329,1.0271064045734843,0.48829110990902336,1.1073639313172694,0.02915578159137823,1.1127861737292821,0.013054262827494433 +45061,0.49211669246226725,0.01030638075921012,0.08593086402043174,0.4075361380790404,0.029500052365055797,0.013282046934993744,0.020942961125018852,0.17461481257724343,0.8253851874227566,0.34329984576951983,0.45023807994073106,1.0211845711383882,0.010098041051706573,1.023494073115173,0.08405206988062329,1.0078867935364402,0.48829110990902336,1.0125147136844492,0.02915578159137823,1.0175816348128182,0.013054262827494433 +45063,0.488040440797047,0.009433922454698767,0.08197495003079468,0.40735429814294544,0.02683959467373454,0.012203925685879129,0.019330206405214462,0.167967535429885,0.832032464570115,0.327412150463672,0.4546985837242168,0.9349921066202098,0.010098041051706573,0.9776832556061972,0.08405206988062329,0.999425570031748,0.48829110990902336,0.9217357887810552,0.02915578159137823,0.9306016413488036,0.013054262827494433 +45065,0.5450817803887313,0.015205694107404053,0.11589516793813544,0.42956685147108165,0.04196061028235466,0.019356649072868378,0.027896170179381043,0.21261977946774055,0.7873802205322594,0.3620565984662375,0.46130523227895626,1.507284334200458,0.010098041051706573,1.3790210860140086,0.08405206988062329,1.1157402196387185,0.48829110990902336,1.444914970253155,0.02915578159137823,1.4754589272037804,0.013054262827494433 +45067,0.5003748382881924,0.011196447772606078,0.09046897804057304,0.4114824612747372,0.031657219485057286,0.014390412251698518,0.02237612069165926,0.18080241274735553,0.8191975872526445,0.34992347841997096,0.45456968381228247,1.1100661371670983,0.010098041051706573,1.0766483587760582,0.08405206988062329,1.024759960775674,0.48829110990902336,1.0887303593616224,0.02915578159137823,1.0983895209466388,0.013054262827494433 +45069,0.4949096154425222,0.010137129402570165,0.08593907945066964,0.4102122020085538,0.02870470957815667,0.013109977927724004,0.02048278935438762,0.17364600882491932,0.8263539911750807,0.33401229989475995,0.45671870993950975,1.0053233306191072,0.010098041051706573,1.0249562809304624,0.08405206988062329,1.0133821140298958,0.48829110990902336,0.9867332335821668,0.02915578159137823,0.9982548871280441,0.013054262827494433 +45071,0.501178863845639,0.011742629979049405,0.09291859130934381,0.410021890916915,0.03391170089906996,0.015127257369588287,0.023430018355016034,0.18540005976381785,0.8145999402361821,0.3649614186053618,0.4460778129239503,1.163933225012309,0.010098041051706573,1.1033690080222898,0.08405206988062329,1.02654665436686,0.48829110990902336,1.1614218600610062,0.02915578159137823,1.1617219935307757,0.013054262827494433 +45073,0.5170353029853475,0.013244833020662258,0.10167754580544089,0.4166859290163948,0.03748332677503872,0.016987106979646404,0.02561688330407413,0.19665493868282796,0.803345061317172,0.3686490117175206,0.45319101694459607,1.3129266822144863,0.010098041051706573,1.2088882949132893,0.08405206988062329,1.0591953104735814,0.48829110990902336,1.285739317064027,0.02915578159137823,1.2955001100923127,0.013054262827494433 +45075,0.49345997625413723,0.010976432025837911,0.0881362270235905,0.40753523545944226,0.03156417978305448,0.014128563830553836,0.0222438141977799,0.17860866385280938,0.8213913361471906,0.35812946445513294,0.4476138435296483,1.0872979541387857,0.010098041051706573,1.0485324484837932,0.08405206988062329,1.011109595214451,0.48829110990902336,1.0810879365889745,0.02915578159137823,1.0828325258231977,0.013054262827494433 +45077,0.4824860575694182,0.01006131955655333,0.08232555269407858,0.4013350153712143,0.028844526482176336,0.012943015756323631,0.020853078340208303,0.17062783763908848,0.8293721623609115,0.3503714890243431,0.4487165273564606,0.9965002447746795,0.010098041051706573,0.9802383131232886,0.08405206988062329,0.9888941976491388,0.48829110990902336,0.9900933786167206,0.02915578159137823,0.9918614434697184,0.013054262827494433 +45079,0.47076560544723306,0.008168861966548506,0.07298108668885195,0.39896842513171,0.023297965672809846,0.010552701238076875,0.017352291399427934,0.15502637797746296,0.844973622022537,0.3192329236222331,0.4529451792605448,0.8090518911126758,0.010098041051706573,0.8725473497822069,0.08405206988062329,0.9643069271772475,0.48829110990902336,0.8000168495914245,0.02915578159137823,0.806291394212221,0.013054262827494433 +45081,0.5052368714639983,0.012034481727687165,0.09418832708387045,0.4125028043137785,0.03411650824443867,0.015455091608114627,0.02381948430013724,0.1864240961095058,0.8135759038904942,0.3622158849265839,0.4530091853885417,1.1933836548996126,0.010098041051706573,1.1189517055578264,0.08405206988062329,1.034450903633937,0.48829110990902336,1.1704338017584028,0.02915578159137823,1.1790455693558406,0.013054262827494433 +45083,0.49148609914574004,0.01026948135504666,0.08530989944525685,0.4079642050090906,0.029275746196663753,0.013237961740033478,0.020894754445540193,0.1735754064937653,0.8264245935062347,0.34316939050490763,0.45218187270465093,1.017641428738303,0.010098041051706573,1.0153872858926722,0.08405206988062329,1.0067112486237015,0.48829110990902336,1.0060569313209569,0.02915578159137823,1.0118961915164146,0.013054262827494433 +45085,0.48449856614289527,0.009841586438418287,0.08176042719939208,0.403933015846625,0.027990720576460668,0.012659366361840197,0.02031293202117685,0.16875267113851092,0.8312473288614891,0.3423504687444782,0.4522701131347913,0.9759744185680042,0.010098041051706573,0.9747740825691271,0.08405206988062329,0.99235228074106685,0.48829110990902336,0.9609967222283295,0.02915578159137823,0.9675479116652843,0.013054262827494433 +45087,0.5093002852494799,0.012490266532902559,0.09767421417076622,0.41311582455897095,0.0364627346492013,0.016211822838458893,0.024524365869507066,0.19178118881853887,0.8082188111814611,0.37330973132225675,0.4446134661711119,1.2380463828979869,0.010098041051706573,1.159270197848789,0.08405206988062329,1.0430144777062276,0.48829110990902336,1.2468423597866427,0.02915578159137823,1.2411558709558599,0.013054262827494433 +45089,0.5005441967419212,0.011090930326118954,0.0904395211762055,0.4114885693222955,0.0316403697138869,0.014267133555674664,0.022157744307716744,0.18068238881777665,0.8193176111822233,0.34985114143009677,0.4509155134623109,1.0988241178380012,0.010098041051706573,1.0760581394593471,0.08405206988062329,1.0248524714489426,0.48829110990902336,1.08560379208626,0.02915578159137823,1.091598194148668,0.013054262827494433 +45091,0.48390115955122126,0.008970645538948954,0.07900303089830811,0.4060193621439586,0.02527567040081806,0.01156701910710629,0.01853817739818705,0.16326274351476439,0.8367372564852356,0.31993292046418625,0.4576345127024571,0.8904787471641751,0.010098041051706573,0.9430515376224353,0.08405206988062329,0.9907927392644162,0.48829110990902336,0.8680621565967876,0.02915578159137823,0.8813541074703448,0.013054262827494433 +46003,0.5120910152453906,0.013508419707231182,0.10093980306712803,0.41311842014850975,0.03974986821768611,0.017550055143564135,0.026378943010273357,0.1971130132380049,0.8028869867619951,0.3937977587617369,0.441512284957853,1.3396615157258096,0.010098041051706573,1.1973048863277915,0.08405206988062329,1.048349788098034,0.48829110990902336,1.3546995691902621,0.02915578159137823,1.3414986637885162,0.013054262827494433 +46005,0.5087984447602358,0.013299763934853104,0.10013780909883016,0.4110123996209343,0.03959131558950822,0.01739638177339734,0.02613955304269932,0.19681233331210105,0.803187666687899,0.395368302400484,0.4393989316689294,1.3180993552396372,0.010098041051706573,1.1870923556238462,0.08405206988062329,1.0420526115361946,0.48829110990902336,1.3495738618097999,0.02915578159137823,1.329503391974721,0.013054262827494433 +46007,0.4838366150582605,0.011193275061987985,0.08478080823907377,0.40128699157319847,0.03331650388548525,0.014622971041905693,0.023134410901581234,0.17522611063419624,0.8247738893658038,0.3929722372017957,0.438910730014393,1.1092068539083424,0.010098041051706573,1.003901168624746,0.08405206988062329,0.9902448097801668,0.48829110990902336,1.1354632401354103,0.02915578159137823,1.1159144043011904,0.013054262827494433 +46009,0.5191259968828954,0.014530342331672507,0.10714644277513741,0.41401603898770556,0.0436520975409086,0.01915338018273493,0.02799001093938716,0.20639775973174299,0.793602240268257,0.4074059428414153,0.4387734212493528,1.4394383259881653,0.010098041051706573,1.2693469841435814,0.08405206988062329,1.0630748515657624,0.48829110990902336,1.4864455571382824,0.02915578159137823,1.458908774510125,0.013054262827494433 +46011,0.45379665646121814,0.00802363315866229,0.0682189187780474,0.38646501892115714,0.023527933349557804,0.010452893670931695,0.017681120044453207,0.15032926709956365,0.8496707329004364,0.34488868734649325,0.44427589604371914,0.7941962053017362,0.010098041051706573,0.8126341367696707,0.08405206988062329,0.9302217521725897,0.48829110990902336,0.8071931954769158,0.02915578159137823,0.799027231558922,0.013054262827494433 +46013,0.49855803435747875,0.01254287509935727,0.09515871450401103,0.406101130915354,0.037896598737672364,0.016582594524579546,0.0251583050216451,0.19086787885516218,0.8091321211448378,0.39824622406048776,0.4375747448832412,1.2418781734887763,0.010098041051706573,1.1262245640806778,0.08405206988062329,1.0211683299217613,0.48829110990902336,1.289199721143222,0.02915578159137823,1.260734871369797,0.013054262827494433 +46015,0.5024306569972049,0.012691046402036731,0.09548165809749098,0.4087825686164567,0.037770115171692986,0.016628578557799045,0.025259299418322185,0.1900394746374367,0.8099605253625632,0.39557456295038396,0.440257555006383,1.2567623384858146,0.010098041051706573,1.1313506887884985,0.08405206988062329,1.0282889453653299,0.48829110990902336,1.2882508667199088,0.02915578159137823,1.2670107150133663,0.013054262827494433 +46017,0.4405861412416304,0.0052139206891940945,0.052853830734343674,0.38700117876452067,0.013945087687723907,0.006525369345370078,0.011834055139593297,0.11996253578334203,0.880037464216658,0.2638425161236721,0.4679331884814513,0.5162611906309811,0.010098041051706573,0.6353396761908477,0.08405206988062329,0.9020702206345623,0.48829110990902336,0.4830359858984185,0.02915578159137823,0.49964112195952937,0.013054262827494433 +46019,0.5054544641057902,0.012072463993346608,0.09422627783080209,0.4124341419455835,0.03417334663746413,0.015460073290130112,0.02388437505385228,0.18641892499159093,0.813581075008409,0.3626732098961574,0.4524015003312928,1.1965406630694824,0.010098041051706573,1.1225376053395724,0.08405206988062329,1.034854946081624,0.48829110990902336,1.172142964247882,0.02915578159137823,1.179684081085484,0.013054262827494433 +46021,0.5429352101220211,0.017331369258301657,0.12158426371485087,0.42271177197933596,0.050153280902633476,0.022234226813931002,0.031921615940890165,0.22393880788745607,0.776061192112544,0.41249812574641204,0.44332546971545217,1.7196032039136093,0.010098041051706573,1.4426925726325064,0.08405206988062329,1.1114624353348352,0.48829110990902336,1.7145293843532576,0.02915578159137823,1.7068478301275003,0.013054262827494433 +46023,0.5007395705045259,0.01279169926347351,0.09514561581492559,0.4074674107968763,0.0381911629611946,0.016782289607852635,0.02554561296321177,0.1900101797808001,0.8099898202192,0.40139698118600553,0.4394286087832633,1.2661892876271414,0.010098041051706573,1.1260654044552354,0.08405206988062329,1.024449314659281,0.48829110990902336,1.302716528115454,0.02915578159137823,1.2780192427568915,0.013054262827494433 +46025,0.5232897462749713,0.015311797624766766,0.11048170726531939,0.41497840995564284,0.046363109720190455,0.02029556408496299,0.029260649064430412,0.2111291269354721,0.788870873064528,0.41964512377465774,0.4377524330755702,1.5157425468576786,0.010098041051706573,1.30693232750092,0.08405206988062329,1.0710729653864228,0.48829110990902336,1.5804888719389758,0.02915578159137823,1.5417196809741738,0.013054262827494433 +46027,0.45141602892867383,0.008012329980822602,0.0676243158501611,0.38447657778774136,0.023476431454493116,0.010425388686380875,0.01774932538358888,0.1498048618491704,0.8501951381508296,0.34715961498983783,0.4440789353607478,0.7932229810675688,0.010098041051706573,0.805864019952071,0.08405206988062329,0.9254835115883748,0.48829110990902336,0.8050904286850997,0.02915578159137823,0.7969661351610637,0.013054262827494433 +46029,0.4944483570693111,0.011248869772108282,0.08948914517646936,0.4070059283709517,0.033423743884511775,0.0147839798720532,0.022750343107180007,0.18098785019104613,0.8190121498089539,0.3734949509083069,0.44231968516560904,1.1134622034757968,0.010098041051706573,1.0603241046225746,0.08405206988062329,1.012244591526974,0.48829110990902336,1.14130947389237,0.02915578159137823,1.1246483897699058,0.013054262827494433 +46031,0.4666116903789018,0.008271117921453925,0.07079478218103655,0.3969943822648158,0.02352729924428114,0.010612031156429433,0.017725912342096584,0.15172097836543527,0.8482790216345647,0.3323309786322541,0.45105182053604964,0.8189374371868985,0.010098041051706573,0.8443725865261764,0.08405206988062329,0.9554779421789716,0.48829110990902336,0.8076408799264609,0.02915578159137823,0.8116410752256795,0.013054262827494433 +46033,0.5475422817154428,0.01573920695611445,0.11799933544261322,0.43055396583859673,0.04405925214059368,0.020100941382895858,0.02874519006423343,0.21550725739923288,0.7844927426007671,0.3733855955656723,0.4562252059738435,1.5603549030173247,0.010098041051706573,1.4038891302798482,0.08405206988062329,1.1212027026331088,0.48829110990902336,1.5141979501858338,0.02915578159137823,1.5341032925459013,0.013054262827494433 +46035,0.4992922537793554,0.01242224934511158,0.09444037308594815,0.407173576321535,0.03713740498335628,0.016339386916484337,0.024879715739794264,0.18914848442187676,0.8108515155781233,0.39323653401451863,0.4399711537143507,1.229794877423185,0.010098041051706573,1.1196614284007596,0.08405206988062329,1.022427165404832,0.48829110990902336,1.2647804907540325,0.02915578159137823,1.2413740189682136,0.013054262827494433 +46037,0.5344009013421679,0.01674840385593705,0.1180731573270215,0.4186092559252681,0.050913050413530614,0.02220903714241841,0.03134052321744369,0.22094490677406484,0.7790550932259351,0.43119919519488414,0.4362150168184807,1.6593431345476386,0.010098041051706573,1.3960157226201246,0.08405206988062329,1.0939643905971856,0.48829110990902336,1.7325062716742416,0.02915578159137823,1.688006221682619,0.013054262827494433 +46039,0.518992780032597,0.014221605275084882,0.10507642204290576,0.4157318192832773,0.04182938193838906,0.018478890103837978,0.027402318148224816,0.20246220387941835,0.7975377961205816,0.39808532804161245,0.44176818416910224,1.4099556863068894,0.010098041051706573,1.247416256072595,0.08405206988062329,1.0628027694015996,0.48829110990902336,1.4263790415914934,0.02915578159137823,1.4130662704300074,0.013054262827494433 +46041,0.45932226376116037,0.007552121000040533,0.06680582096491666,0.3934640279949102,0.02199586214570471,0.009793795899647316,0.016441878819894316,0.14544433448071337,0.8545556655192866,0.32925068247055783,0.4452562866038793,0.747384996654981,0.010098041051706573,0.797178444264564,0.08405206988062329,0.9407429610478483,0.48829110990902336,0.7565790716892352,0.02915578159137823,0.7524678684448383,0.013054262827494433 +46043,0.5364535518053075,0.01711340177705257,0.11973245698934047,0.41888629084585877,0.05204443277126135,0.022710220039936932,0.03190099444669807,0.22319258878314668,0.7768074112168533,0.43467272016220926,0.43636213963076165,1.6951536061934818,0.010098041051706573,1.4154977998064273,0.08405206988062329,1.0978746828187589,0.48829110990902336,1.7728815289841504,0.02915578159137823,1.7257489997124718,0.013054262827494433 +46045,0.5377694133178559,0.017443898624065562,0.12020689131282727,0.41899947891513944,0.05161452188815605,0.022662847528235427,0.03243750609846438,0.2235286878277277,0.7764713121722723,0.4293807228891233,0.4390789006501648,1.7287902254017347,0.010098041051706573,1.4230195762544011,0.08405206988062329,1.1005816938203523,0.48829110990902336,1.7594700958914817,0.02915578159137823,1.7327054359923846,0.013054262827494433 +46047,0.5479185054983282,0.01768261224460137,0.12498903023228158,0.42461796427427184,0.05299514370466461,0.023239063516039625,0.032272339895728024,0.2281160956931084,0.7718839043068916,0.4239983589454019,0.4385130766990284,1.7541069591484764,0.010098041051706573,1.4827726193787583,0.08405206988062329,1.1218411322859663,0.48829110990902336,1.804273749676062,0.02915578159137823,1.7698285520758223,0.013054262827494433 +46049,0.5207965025786234,0.014937029657709006,0.10859707737166978,0.4142504530612473,0.045178739648940466,0.019749976283331926,0.028681125129971466,0.2085211341358329,0.7914788658641672,0.4160216899237332,0.43715199752800327,1.4791375597096224,0.010098041051706573,1.2838106936421996,0.08405206988062329,1.0659772302954915,0.48829110990902336,1.537651164778655,0.02915578159137823,1.5030424890355054,0.013054262827494433 +46051,0.5184264196774626,0.013896299754511123,0.10495769140397225,0.4155225055467967,0.04169226867892671,0.01831381860469728,0.02680476771063609,0.2024543646314772,0.7975456353685229,0.39722928468821883,0.43926174288409425,1.3754140756799456,0.010098041051706573,1.2431504355157548,0.08405206988062329,1.0618083575185744,0.48829110990902336,1.4225531419891417,0.02915578159137823,1.395190843353759,0.013054262827494433 +46053,0.5382894854669682,0.017710242395478283,0.12218643121294832,0.41810292776070135,0.05425593943812279,0.023550180221073084,0.03290096290867465,0.22699018745824306,0.7730098125417569,0.4440422631181095,0.43405718277040123,1.75320117287339,0.010098041051706573,1.446195849959869,0.08405206988062329,1.1019444384149961,0.48829110990902336,1.844310720740432,0.02915578159137823,1.7900151814947254,0.013054262827494433 +46055,0.5469576906892706,0.01803690586771382,0.12683230793344652,0.42331382949177854,0.05643799615179063,0.02440831036991598,0.03297678444741108,0.23188687185952853,0.7681131281404715,0.44498122813791013,0.43248010266469333,1.7849901019610122,0.010098041051706573,1.498899629635647,0.08405206988062329,1.1201180456669277,0.48829110990902336,1.9257500741374824,0.02915578159137823,1.8458970269547101,0.013054262827494433 +46057,0.4999596041644436,0.013224551498107195,0.09599823563187787,0.4059893535810487,0.039506883105229165,0.017309855925331054,0.026451240036099912,0.19201198423283558,0.8079880157671644,0.41153759592754663,0.4381478508245037,1.309426485054352,0.010098041051706573,1.1367558839954104,0.08405206988062329,1.0233212573336907,0.48829110990902336,1.3451044170400126,0.02915578159137823,1.3194774604334545,0.013054262827494433 +46059,0.539113838465662,0.018121967933013343,0.12332344603729774,0.4175507491584264,0.055178815112237344,0.024016903195636676,0.03361436238511172,0.22875214331036436,0.7712478566896357,0.4474316675804628,0.4352558703332921,1.7965654048634387,0.010098041051706573,1.4596015541498186,0.08405206988062329,1.1032777691975642,0.48829110990902336,1.8736284399158019,0.02915578159137823,1.8229151779055366,0.013054262827494433 +46061,0.48573891763427035,0.010149906366453874,0.0825988432025074,0.4053428632149869,0.02969583021403073,0.013172394188620611,0.020895806364224844,0.17004781829052235,0.8299521817094777,0.35951871797072904,0.44357723268490734,1.005124611364869,0.010098041051706573,0.9799014661718753,0.08405206988062329,0.9943898712169088,0.48829110990902336,1.016413549347849,0.02915578159137823,1.0079192055935429,0.013054262827494433 +46063,0.5185254803392317,0.013489053583673097,0.10390046450047055,0.4153520122914105,0.039629367796894646,0.017530065310993874,0.026014254062979192,0.20037677691845807,0.7996232230815419,0.3814166566764018,0.44235036503326525,1.3366990644682653,0.010098041051706573,1.2334498241769318,0.08405206988062329,1.0612900844600852,0.48829110990902336,1.3526675622748774,0.02915578159137823,1.3409026212614203,0.013054262827494433 +46065,0.49919162554626473,0.011001338458578213,0.09034578276369884,0.4105814374830128,0.032255370782693166,0.01437525668089002,0.02203830732644896,0.18098417148892185,0.8190158285110781,0.35702132181485124,0.44567017312363866,1.0885568249703987,0.010098041051706573,1.0720305128392809,0.08405206988062329,1.022285926996906,0.48829110990902336,1.1049611499874383,0.02915578159137823,1.0970179427126747,0.013054262827494433 +46067,0.5326491591047025,0.017714947061480635,0.12007706850167472,0.4152724851955355,0.05449788709053967,0.023500707929125345,0.03325819023399307,0.22543369579988629,0.7745663042001137,0.45385757472734756,0.4312223681274581,1.7531278980699625,0.010098041051706573,1.4221572838354823,0.08405206988062329,1.0899750281537086,0.48829110990902336,1.8515088012278718,0.02915578159137823,1.7903029056320425,0.013054262827494433 +46069,0.5283945847542018,0.016674158300586567,0.11552894479675607,0.41543914443243934,0.050713336572578274,0.02208879694960851,0.03155626265235675,0.2186414246665638,0.7813585753334362,0.4389665002289734,0.43556189441403015,1.650677316005408,0.010098041051706573,1.365689044454384,0.08405206988062329,1.0813162156916478,0.48829110990902336,1.7237440310418153,0.02915578159137823,1.676609108912216,0.013054262827494433 +46071,0.4573703794316265,0.0077324163382945016,0.06701979789822923,0.3913599795421675,0.022144472997835077,0.0099734267538918,0.0169062464165335,0.14653287775547388,0.8534671222445261,0.3304168871332894,0.4503799550735228,0.7656925453950394,0.010098041051706573,0.7983772533429554,0.08405206988062329,0.9370851558579796,0.48829110990902336,0.7605925680514438,0.02915578159137823,0.7619848217381291,0.013054262827494433 +46073,0.5521196173131728,0.019758507271952826,0.13254093246458398,0.42185552755987166,0.06063451394677098,0.026135001769064338,0.035786642336864155,0.2400583647246213,0.7599416352753787,0.45747764723907475,0.4310251714396092,1.956656783662992,0.010098041051706573,1.5677522565647402,0.08405206988062329,1.1300007138395158,0.48829110990902336,2.057652984056177,0.02915578159137823,1.9941070310089783,0.013054262827494433 +46075,0.5087606554173724,0.01207251232587834,0.0957975456080534,0.4140127131134601,0.03422250842250187,0.015507145529056143,0.023729256964602354,0.18829590021945367,0.8117040997805464,0.3572378415885521,0.45312708634940196,1.1962815229996322,0.010098041051706573,1.1395528386790872,0.08405206988062329,1.0418526389525744,0.48829110990902336,1.1759512676215877,0.02915578159137823,1.1844600056078487,0.013054262827494433 +46077,0.5307662092019836,0.01595138706460061,0.11456475264232908,0.41824051900260883,0.047817637899391884,0.02092153506083564,0.030053509036650626,0.215847864193501,0.784152135806499,0.4173852497956195,0.4375275730862002,1.5816074137833094,0.010098041051706573,1.360031138077014,0.08405206988062329,1.0867388762017414,0.48829110990902336,1.6249642348107158,0.02915578159137823,1.5941205392000004,0.013054262827494433 +46079,0.4994464055644719,0.012436883988058676,0.09465172204084946,0.4071921198524484,0.03701981914598607,0.016299658178131695,0.024901338460935705,0.18951327106634103,0.810486728933659,0.39111617145231853,0.4402954567080593,1.2307703708173616,0.010098041051706573,1.1223796912795292,0.08405206988062329,1.0228660160391172,0.48829110990902336,1.263758028757943,0.02915578159137823,1.2432433171680435,0.013054262827494433 +46081,0.5003902205760413,0.011958263665591775,0.09381193230130541,0.4083311910898753,0.03463839490589829,0.015448037921675718,0.023897876444958516,0.18747754940796124,0.8125224505920388,0.36923229333606095,0.4459801894297705,1.1863530560604334,0.010098041051706573,1.1156004600783889,0.08405206988062329,1.025259106486283,0.48829110990902336,1.1873362069561892,0.02915578159137823,1.1841473177980797,0.013054262827494433 +46083,0.467299884088763,0.007561174944768144,0.06947318771801841,0.39826656871720306,0.02179589959726701,0.009798720056759585,0.016180562423019795,0.148669387867475,0.851330612132525,0.31373109991344295,0.4495671313327323,0.7480564975994619,0.010098041051706573,0.8308939468801286,0.08405206988062329,0.9563745788046542,0.48829110990902336,0.7474931755888528,0.02915578159137823,0.7486050966913134,0.013054262827494433 +46085,0.4881217864130496,0.01069219617126534,0.08515167766776519,0.4050138475779096,0.03150175307196629,0.013949857389429336,0.021904771450249473,0.17444760721192165,0.8255523927880783,0.3699487072336511,0.44282797079770925,1.0587921694018916,0.010098041051706573,1.009135695902162,0.08405206988062329,0.9994105273133512,0.48829110990902336,1.076785631398752,0.02915578159137823,1.0652177854764644,0.013054262827494433 +46087,0.5126945392098132,0.013876933573935244,0.10292184896052416,0.4122808424291149,0.042099213566237983,0.018369078949060987,0.027066669357007328,0.2007469186606741,0.7992530813393259,0.40904058750815103,0.436328315733487,1.3739108345302784,0.010098041051706573,1.217272938125208,0.08405206988062329,1.049508856576389,0.48829110990902336,1.4308223584549422,0.02915578159137823,1.3971962113661158,0.013054262827494433 +46089,0.5435345082708557,0.019827893989633905,0.12942408705788133,0.4160294459038931,0.06152418920424797,0.02649947282705046,0.03647954948198655,0.23811567635257916,0.7618843236474209,0.4753689255442303,0.4307163275094536,1.964490581524478,0.010098041051706573,1.5320013735267308,0.08405206988062329,1.1112654051729582,0.48829110990902336,2.090877637284194,0.02915578159137823,2.0112614984684525,0.013054262827494433 +46091,0.5177517545165746,0.01447458924548729,0.1052313491272366,0.41369246414222716,0.0427315871709643,0.01882640709448971,0.027956620367230293,0.20324672627230636,0.7967532737276937,0.40607278653528406,0.44057355087624905,1.4350644148841225,0.010098041051706573,1.2491310646098361,0.08405206988062329,1.0598105214445521,0.48829110990902336,1.457295198923174,0.02915578159137823,1.438521071211663,0.013054262827494433 +46093,0.48641206642431967,0.009500324638365705,0.08152057729089776,0.40619375848241446,0.02714691580481337,0.01224260028726597,0.019531432902567293,0.16759571342497,0.83240428657503,0.33300691318637754,0.45097573423406195,0.94098182692291,0.010098041051706573,0.9724659310976875,0.08405206988062329,0.996385310307627,0.48829110990902336,0.9319908500255054,0.02915578159137823,0.9369092858091359,0.013054262827494433 +46095,0.4857570327562816,0.010823944952178473,0.08379597747637507,0.40370126764433534,0.030700571852755383,0.01375591629143745,0.02228263148504771,0.17250594808869796,0.8274940519113021,0.3663728591436375,0.44806710303029273,1.0723069434542452,0.010098041051706573,0.9972341341398955,0.08405206988062329,0.9939973413881427,0.48829110990902336,1.0520110366390223,0.02915578159137823,1.0539185478069324,0.013054262827494433 +46097,0.5419096644502401,0.017702599160272718,0.12284174188351074,0.4212885259145717,0.053236992308824296,0.023280686001491715,0.03266706671162944,0.22668306166514302,0.773316938334857,0.43337868295052556,0.4373028037805364,1.7556694927392433,0.010098041051706573,1.4567436039332824,0.08405206988062329,1.1094809609153145,0.48829110990902336,1.8076800893172515,0.02915578159137823,1.770036256214833,0.013054262827494433 +46099,0.47864910742092237,0.009019591568724672,0.0781439668089076,0.401942764224547,0.026350922975463174,0.011758264400706025,0.01884384913475431,0.16325940150597223,0.8367405984940277,0.33720994788889375,0.4462183131746393,0.8931959830113259,0.010098041051706573,0.9309090468033479,0.08405206988062329,0.9798286905544565,0.48829110990902336,0.9046439585001218,0.02915578159137823,0.9001762114204361,0.013054262827494433 +46101,0.5007123357068578,0.011356860108947358,0.09130904948859701,0.4112788660191675,0.03286312677997397,0.01465452789138333,0.02268140666619453,0.1823582983225201,0.81764170167748,0.35991095038261267,0.44592615880706343,1.124738972172295,0.010098041051706573,1.0846356527082106,0.08405206988062329,1.0250455669263299,0.48829110990902336,1.126129591200546,0.02915578159137823,1.1243731092514389,0.013054262827494433 +46103,0.48970691149212964,0.010427382797789183,0.08541807887746694,0.4058103864589648,0.030239629691201364,0.013490045168640092,0.02129310931311364,0.17442694165209827,0.8255730583479017,0.3540190799020475,0.4461048401186343,1.032921417575762,0.010098041051706573,1.015952226340585,0.08405206988062329,1.0028823411097108,0.48829110990902336,1.0371649678620898,0.02915578159137823,1.0338258180776885,0.013054262827494433 +46105,0.5329901380559251,0.01610871209448441,0.11544970820379041,0.41965082646128987,0.04812736695859656,0.021169370127345006,0.030223283592527128,0.2166075879469211,0.7833924120530789,0.4168686756110524,0.439861381686573,1.5960449099233243,0.010098041051706573,1.3686126386928987,0.08405206988062329,1.0913358642293345,0.48829110990902336,1.6415136427698127,0.02915578159137823,1.611720166008985,0.013054262827494433 +46107,0.5498534390033901,0.018997971578930642,0.12977445525024417,0.4216280877548895,0.05844842606508095,0.02525628992481774,0.03455097346188192,0.2360164473745231,0.7639835526254769,0.45038467664822646,0.43211240447596405,1.8807666010341997,0.010098041051706573,1.5354751594344611,0.08405206988062329,1.1251760796926455,0.48829110990902336,1.9853958067724067,0.02915578159137823,1.9239495089141916,0.013054262827494433 +46109,0.5021305812317808,0.012326997916852947,0.09409867661936244,0.40960626463421124,0.035662705880860665,0.01588981140669153,0.024549386907711305,0.18739881643641018,0.8126011835635898,0.378992640089079,0.4455582102988775,1.2216695671366873,0.010098041051706573,1.1168350311986146,0.08405206988062329,1.0278041307110757,0.48829110990902336,1.2211986854063428,0.02915578159137823,1.2173842691611687,0.013054262827494433 +46111,0.5149657156955468,0.014299871133600213,0.1045762994249107,0.41247547273293006,0.04287518755824869,0.01880151350590878,0.02776858866087009,0.20307429453563336,0.7969257054643666,0.4099895272067312,0.43851734713383395,1.4163984344252873,0.010098041051706573,1.2391712619582171,0.08405206988062329,1.0542424219631248,0.48829110990902336,1.458822684179883,0.02915578159137823,1.43082107920533,0.013054262827494433 +46113,0.43259620601426885,0.004815048268776635,0.049368661430286016,0.3821101875496673,0.012865925206632758,0.0060242232224635255,0.011130583675571614,0.1141218086148856,0.8858781913851144,0.2606091563734387,0.46823085986524027,0.4766653109149913,0.010098041051706573,0.5951434486227936,0.08405206988062329,0.8860701328366387,0.48829110990902336,0.44435393053883565,0.02915578159137823,0.4595920509057698,0.013054262827494433 +46115,0.5202836535146782,0.0149709372252465,0.10818178075653623,0.41398765164319984,0.04499728698892601,0.019724588255472752,0.028774567726879665,0.20792846368655749,0.7920715363134425,0.41594145219510376,0.4383506112341182,1.4829320200444793,0.010098041051706573,1.2819524694518658,0.08405206988062329,1.0652450846465005,0.48829110990902336,1.531806951169767,0.02915578159137823,1.5009010528647213,0.013054262827494433 +46117,0.5100146391854765,0.011338350746904698,0.0939706437942784,0.41676813778251204,0.03106679625660405,0.01438756596093615,0.022231422150965536,0.18425087551281874,0.8157491244871813,0.33060107925423854,0.46311714417213845,1.1245138545150875,0.010098041051706573,1.118715926503289,0.08405206988062329,1.0449223380938648,0.48829110990902336,1.0719417513613423,0.02915578159137823,1.1006456013327726,0.013054262827494433 +46119,0.5277057170349608,0.01318501526142994,0.10543881673909637,0.422283720662912,0.03750011802604611,0.01702829437109364,0.024985545609611852,0.1998060914168777,0.8001939085831223,0.35565761439488147,0.45408642072183497,1.3070219273892723,0.010098041051706573,1.2527781715896968,0.08405206988062329,1.079790592292575,0.48829110990902336,1.2875512486601175,0.02915578159137823,1.2980179905089049,0.013054262827494433 +46121,0.4411873189241209,0.005366441090192036,0.05365701642659307,0.3872881543275385,0.014437324748674669,0.006704298183539813,0.012163634039343278,0.12161957999482177,0.8783804200051782,0.2690668566789591,0.4643726105943042,0.5317543743301179,0.010098041051706573,0.6447449750222388,0.08405206988062329,0.9035187840693606,0.48829110990902336,0.4993673034158169,0.02915578159137823,0.513043944561878,0.013054262827494433 +46123,0.5185050686896144,0.01482043672250121,0.10708969558972269,0.41335742142346676,0.04417589822766996,0.01936320209203731,0.02858301223545601,0.20653548452354342,0.7934645154764566,0.4125130619188116,0.438320506631125,1.469483131286003,0.010098041051706573,1.2698952032936281,0.08405206988062329,1.0617559270232213,0.48829110990902336,1.501221663830667,0.02915578159137823,1.4773243718551492,0.013054262827494433 +46125,0.5168246305260319,0.013935050018285699,0.10418587899267318,0.4148042715587657,0.04146018981327869,0.018240087704257293,0.026962821032934122,0.20158845542371157,0.7984115445762885,0.39794442600224506,0.4399422141192281,1.381278505118265,0.010098041051706573,1.2348619996843855,0.08405206988062329,1.0581832426410882,0.48829110990902336,1.41245539089119,0.02915578159137823,1.3919504401821006,0.013054262827494433 +46127,0.5010354533421459,0.011398317704952065,0.09185274995402136,0.4111035386251343,0.03314464480914218,0.01475030166738304,0.022749523270099627,0.18332584918156913,0.8166741508184309,0.3608454273359628,0.4450282014581889,1.1284443953714658,0.010098041051706573,1.0895776971541342,0.08405206988062329,1.025796543621143,0.48829110990902336,1.1344526391496361,0.02915578159137823,1.130993170780239,0.013054262827494433 +46129,0.5373031261513423,0.01729675169597553,0.11998995617640541,0.41967896518560677,0.05229648152612391,0.022838946462864877,0.03219179426680564,0.2233189243395688,0.7766810756604312,0.43584049192616825,0.4367205172580498,1.7135236613356954,0.010098041051706573,1.4186154689650499,0.08405206988062329,1.0999334570406583,0.48829110990902336,1.7800007343382236,0.02915578159137823,1.7368984779605894,0.013054262827494433 +46135,0.505578527337753,0.012340599704752025,0.096450223510413,0.4107971654753204,0.03663391242709392,0.01618718973346212,0.02440886833096821,0.19077199345924592,0.8092280065407541,0.3798219547219487,0.44186352647090743,1.2231628961725558,0.010098041051706573,1.1442569408718657,0.08405206988062329,1.0352982164348679,0.48829110990902336,1.2485792468532015,0.02915578159137823,1.2337436761154499,0.013054262827494433 +46137,0.45125418094024483,0.006372558589285029,0.05956785704904767,0.39137080383966716,0.01769890932187381,0.008107321645530768,0.01412188265160669,0.1320051083514186,0.8679948916485813,0.2971218069386092,0.4580689972523365,0.6309025047010675,0.010098041051706573,0.714888274243749,0.08405206988062329,0.9242056796977003,0.48829110990902336,0.6083754665533226,0.02915578159137823,0.6181945130682641,0.013054262827494433 +47001,0.5110095824351044,0.012867829341789094,0.09945503230848024,0.41298430601100805,0.03783189245619041,0.016777295795068894,0.02518118991129338,0.19462459360262685,0.8053754063973732,0.38039193772364394,0.4434696417710829,1.2762002016042522,0.010098041051706573,1.1805637172940155,0.08405206988062329,1.0465075600961136,0.48829110990902336,1.291509031804964,0.02915578159137823,1.2808966682985097,0.013054262827494433 +47003,0.48632907261272706,0.009822240910578255,0.08202503989534204,0.4056454247982766,0.028307184157285115,0.01267586799980593,0.020196696976822293,0.16866160078540096,0.8313383992145991,0.34510418030156415,0.4477968535963927,0.972243173280621,0.010098041051706573,0.9760071807678415,0.08405206988062329,0.9955277068454345,0.48829110990902336,0.9709832498994304,0.02915578159137823,0.9711046670118397,0.013054262827494433 +47005,0.5248816244251753,0.014100128066821744,0.10679437932571462,0.4198654429587254,0.04039244585105768,0.01806162908862167,0.026863443890350544,0.20346374183449575,0.7965362581655042,0.37822632713528714,0.44715363747027775,1.3979693505937694,0.010098041051706573,1.2696958579132862,0.08405206988062329,1.0751794556470633,0.48829110990902336,1.3834070580503666,0.02915578159137823,1.3876540081651294,0.013054262827494433 +47007,0.5090357978304327,0.011458906766938913,0.0945535266884738,0.41506796790386097,0.03229354837961984,0.014796242029417121,0.022511003775722748,0.18575024996566344,0.8142497500343365,0.34153721717876934,0.45817950556201165,1.1357608904321563,0.010098041051706573,1.12334186138752,0.08405206988062329,1.0417313431502537,0.48829110990902336,1.1112789496351405,0.02915578159137823,1.1262682229134038,0.013054262827494433 +47009,0.5059796491405457,0.011724461863474214,0.0941696281699226,0.4129981017246809,0.03341088656203087,0.015099319202609415,0.023171805196887506,0.1861134698399009,0.813886530160099,0.3547947168458946,0.45192812152936807,1.1627150008498017,0.010098041051706573,1.1197482353882795,0.08405206988062329,1.0361222235427288,0.48829110990902336,1.1468679571941605,0.02915578159137823,1.1543033633429243,0.013054262827494433 +47011,0.4945616817693267,0.01069948523204197,0.08729383377170485,0.4086987634374765,0.030079037944577766,0.013684491078909643,0.02163427864804217,0.1765074751836929,0.8234925248163071,0.3445723099210186,0.45495108933085054,1.0609474685482132,0.010098041051706573,1.037860727986295,0.08405206988062329,1.0126357330862406,0.48829110990902336,1.0326039406530907,0.02915578159137823,1.0457608833910848,0.013054262827494433 +47013,0.5089530974713545,0.012392055083212412,0.09699066491421496,0.41352917770721087,0.035067886107781124,0.01593470033734605,0.024348127842781966,0.19056896479478425,0.8094310352052158,0.3615593948015256,0.4543958049929431,1.2286092895231042,0.010098041051706573,1.152391136739054,0.08405206988062329,1.0427067029557562,0.48829110990902336,1.203377711827783,0.02915578159137823,1.2139459773845693,0.013054262827494433 +47015,0.5060055877748574,0.011845195398420189,0.09418438064172666,0.41296292062733675,0.03363985752133311,0.015184979434755958,0.023409218563196187,0.18613308413430632,0.8138669158656937,0.3571702366371945,0.4513984467718457,1.1749197344610423,0.010098041051706573,1.1214198773219775,0.08405206988062329,1.0361649047650956,0.48829110990902336,1.1530185887668827,0.02915578159137823,1.1610706796145078,0.013054262827494433 +47017,0.5089996853612282,0.012894482602089466,0.09864783842967548,0.41194418459693993,0.03747285637152653,0.01668355874522854,0.02533298737294597,0.19380726799402012,0.8061927320059799,0.3798649516100685,0.4452171614519735,1.2786227508058985,0.010098041051706573,1.1706635245640404,0.08405206988062329,1.042295878012137,0.48829110990902336,1.2825511994696064,0.02915578159137823,1.2780625929071188,0.013054262827494433 +47019,0.5106402696248034,0.012520321017618734,0.09806618454233862,0.41404114486514354,0.03597230166446258,0.016084334898065534,0.024518867316943357,0.1920455365073214,0.8079544634926786,0.3668165722194695,0.44713110237133974,1.2414331240789456,0.010098041051706573,1.1648954441098804,0.08405206988062329,1.0456612445168796,0.48829110990902336,1.232922460622241,0.02915578159137823,1.23558156321842,0.013054262827494433 +47021,0.48932327222372196,0.008995649044469915,0.08101037244491582,0.4089688568582827,0.025414018088710653,0.011641730081415277,0.018383856961450718,0.16555593621526615,0.8344440637847339,0.31371313724043526,0.45808301704903304,0.8925087141777288,0.010098041051706573,0.9669681300346034,0.08405206988062329,1.0019519231782739,0.48829110990902336,0.8725197472910378,0.02915578159137823,0.8858638100926048,0.013054262827494433 +47023,0.4913160356943358,0.010649674316252675,0.08593768440914289,0.4071362924031765,0.030146974398558023,0.013686462804005518,0.021675812598305248,0.17491324965140687,0.8250867503485931,0.3508004038720724,0.4539912570682437,1.0558698900026238,0.010098041051706573,1.0229257613083567,0.08405206988062329,1.0063481486213397,0.48829110990902336,1.03737634099566,0.02915578159137823,1.0449348114328831,0.013054262827494433 +47025,0.5060935120417984,0.011768965782874213,0.09433027756507822,0.4127677940723674,0.03332221527221023,0.015150727401071307,0.023254528072081292,0.18638902756233605,0.8136109724376639,0.353250474103835,0.4546734746566078,1.1670227033074232,0.010098041051706573,1.1220668680555281,0.08405206988062329,1.0363799453804892,0.48829110990902336,1.1450211804094745,0.02915578159137823,1.15569751764628,0.013054262827494433 +47027,0.537007513446377,0.015525504878456362,0.1143673226918305,0.4231424896933563,0.043634916590902496,0.01976811472421862,0.028911150197541258,0.212971550356624,0.787028449643376,0.38153307748996934,0.4530343190421063,1.5393824498814697,0.010098041051706573,1.3604643514002122,0.08405206988062329,1.0997484236838164,0.48829110990902336,1.4949658469657792,0.02915578159137823,1.5104301690357849,0.013054262827494433 +47029,0.510450504297258,0.011859839429992206,0.09552928415794047,0.4161507340011834,0.03328802059650391,0.015181577176313117,0.023234063499104105,0.18714700711179927,0.8128529928882007,0.3484588091487021,0.45606728499523846,1.1758643348618796,0.010098041051706573,1.1371861702022121,0.08405206988062329,1.0453441863158575,0.48829110990902336,1.1436009229684956,0.02915578159137823,1.159640006026656,0.013054262827494433 +47031,0.4995746204063921,0.011519632733370005,0.09128046004468737,0.41005893831195217,0.03285823383337299,0.01478493113700869,0.023058883023319033,0.18271636771786542,0.8172836322821346,0.3599700726451956,0.44996122469589767,1.1418444018161273,0.010098041051706573,1.0849005494012591,0.08405206988062329,1.0228315076502834,0.48829110990902336,1.1264805231678587,0.02915578159137823,1.1313239517817046,0.013054262827494433 +47033,0.5015922753598683,0.01208561830906748,0.09412121858837616,0.40913661319998773,0.035455198772478866,0.01572459222447782,0.024094506440308777,0.18764487256277765,0.8123551274372224,0.3766971922403216,0.44350596721752433,1.197723272290756,0.010098041051706573,1.1158922183985336,0.08405206988062329,1.0268435653565833,0.48829110990902336,1.211635276547518,0.02915578159137823,1.2033237156792465,0.013054262827494433 +47035,0.540617363601234,0.016852771541375926,0.11910412469433412,0.422685715488783,0.04815186245866046,0.021536930754758286,0.03117319693380536,0.22031131945326637,0.7796886805467336,0.4042837524077038,0.4472709809147728,1.6714325938910697,0.010098041051706573,1.4148433047237425,0.08405206988062329,1.1071494375806537,0.48829110990902336,1.650251537760338,0.02915578159137823,1.6546764874238895,0.013054262827494433 +47037,0.47767706216043854,0.008669750399054453,0.07654220447781618,0.40227431258130375,0.025025991446188528,0.011238438376908891,0.018149815190712515,0.16023839229715361,0.8397616077028464,0.3269567634864982,0.4490706552455292,0.8583353631403954,0.010098041051706573,0.9137502222275325,0.08405206988062329,0.9777479377972689,0.48829110990902336,0.8593939916984071,0.02915578159137823,0.86021108788854606,0.013054262827494433 +47039,0.5216355872238241,0.01407823126610142,0.10589630644211058,0.41752266627365164,0.04115493346004464,0.01826559296963954,0.026988632698598292,0.2030082092475651,0.7969917907524349,0.3886342672635372,0.4438251124223717,1.3962112586193554,0.010098041051706573,1.2576903438353748,0.08405206988062329,1.0684585804620705,0.48829110990902336,1.4064854119494552,0.02915578159137823,1.3975795049283462,0.013054262827494433 +47041,0.5026280051630725,0.011590646473021552,0.09292417048194061,0.4110889435731889,0.03329837879819579,0.01493008794897878,0.02306008888076399,0.18487662750067482,0.8151233724993252,0.3583392633530926,0.44837281837239895,1.1490290178778222,0.010098041051706573,1.1035051862971708,0.08405206988062329,1.029074860561298,0.48829110990902336,1.1412155762322675,0.02915578159137823,1.144749088118477,0.013054262827494433 +47043,0.49189515696955066,0.01005096557747938,0.08467552225737496,0.409117951210679,0.028682973813781473,0.012969426571917485,0.020433146037462525,0.1721414026091266,0.8278585973908734,0.3387398512476642,0.4521646415088937,0.9965125588651822,0.010098041051706573,1.0080706822866339,0.08405206988062329,1.0075440547183852,0.48829110990902336,0.9848938086481818,0.02915578159137823,0.9913091436044544,0.013054262827494433 +47045,0.4968539773524707,0.01107859160088169,0.08922137454763777,0.40937001832818576,0.0314820236717452,0.014249880995802225,0.02229747995560974,0.17957262820569853,0.8204273717943015,0.35285293273458895,0.4526354831691252,1.0980665787542878,0.010098041051706573,1.0615976494675796,0.08405206988062329,1.0173334960680243,0.48829110990902336,1.0798989453171186,0.02915578159137823,1.0874260889805507,0.013054262827494433 +47047,0.5034438791654993,0.010948591055399288,0.0907099295969521,0.4138489550427125,0.030773590669854106,0.014094304553907644,0.021747391334953764,0.18017883094995904,0.819821169050041,0.33925272356167846,0.4580000008810952,1.0854898125694972,0.010098041051706573,1.0799879086620436,0.08405206988062329,1.0311297763873,0.48829110990902336,1.0586653358640956,0.02915578159137823,1.0732203279346084,0.013054262827494433 +47049,0.5105652278058666,0.01212892827701058,0.09643629998245878,0.4155022016630942,0.03448782139028159,0.01560200120855626,0.023755883903677028,0.18888144889319997,0.8111185511068,0.3576228183428307,0.45239161476731576,1.2019239172043663,0.010098041051706573,1.1463240841710383,0.08405206988062329,1.0457280990179116,0.48829110990902336,1.1842796541422873,0.02915578159137823,1.1918890971202731,0.013054262827494433 +47051,0.5073061964377142,0.01258752276887485,0.0969566907650421,0.41171993552557784,0.035999279688472594,0.016121354833559844,0.024812475891806525,0.19112065148399227,0.8088793485160077,0.3712923719283146,0.44782437240604284,1.2476785648384192,0.010098041051706573,1.1521896970128112,0.08405206988062329,1.0389133534728174,0.48829110990902336,1.2336611785560951,0.02915578159137823,1.2369241968304268,0.013054262827494433 +47053,0.5038674259534868,0.012369488279986829,0.09532081209935003,0.4105750340783312,0.036121284447196436,0.016022570707248027,0.02454909296146619,0.18917835761851637,0.8108216423814836,0.3789443632682053,0.4435769921379865,1.2263652356830899,0.010098041051706573,1.1305946036220358,0.08405206988062329,1.0313443111513,0.48829110990902336,1.2348360095808903,0.02915578159137823,1.2274484061935498,0.013054262827494433 +47055,0.5088622282603743,0.012080351894295445,0.09604031134577234,0.4137309661001345,0.034309284760264055,0.015546786455222297,0.02373992649364845,0.18873539046924603,0.811264609530754,0.3572383750063128,0.4531364195976508,1.197490954310826,0.010098041051706573,1.141240601819376,0.08405206988062329,1.0419528494002723,0.48829110990902336,1.1791259906857716,0.02915578159137823,1.187496164142975,0.013054262827494433 +47057,0.508076501679555,0.011472523926978399,0.0939384264843249,0.4151965649171574,0.03233823429957612,0.01478357266382108,0.022580308061981868,0.18489031902438205,0.815109680975618,0.34424926528838823,0.4571546030271312,1.1371173430235326,0.010098041051706573,1.1166425576799968,0.08405206988062329,1.0404154891685005,0.48829110990902336,1.112201107895781,0.02915578159137823,1.1256785807886605,0.013054262827494433 +47059,0.5123415007194142,0.012466694634760436,0.09808778232239074,0.4154130455200551,0.03562633904687419,0.016018306553140606,0.024332783148066448,0.19145000392249872,0.8085499960775013,0.3632087320496151,0.4496197751911877,1.2363057310335708,0.010098041051706573,1.1663901273646342,0.08405206988062329,1.0491326206111786,0.48829110990902336,1.2214534717871954,0.02915578159137823,1.2266502654593752,0.013054262827494433 +47061,0.5073265485216338,0.0122075586042947,0.09582442361253686,0.4128182439200581,0.03496006184315094,0.015675082097834737,0.024062526670184964,0.18888115335531397,0.811118846644686,0.3648345643539781,0.4483711203990807,1.2105266913414363,0.010098041051706573,1.141032633214491,0.08405206988062329,1.0390748501837357,0.48829110990902336,1.198892438593136,0.02915578159137823,1.202047146968472,0.013054262827494433 +47063,0.5001145301514787,0.011514006195870853,0.09176021765757543,0.41024163875511027,0.03329732750338712,0.01485327141764651,0.023022738796218137,0.183478407695498,0.8165215923045019,0.36287324020572653,0.44607998693395395,1.141023621434262,0.010098041051706573,1.0887482107619226,0.08405206988062329,1.0241212515399853,0.48829110990902336,1.1402722333932127,0.02915578159137823,1.1400554433786705,0.013054262827494433 +47065,0.4985586663681323,0.011224261783508997,0.09073715465347044,0.4093601980197249,0.0323859588681617,0.014485008949988961,0.022513422272397283,0.18199895172711883,0.8180010482728812,0.35692059103952767,0.4472620066293304,1.1126735184168246,0.010098041051706573,1.0787135380656732,0.08405206988062329,1.0207261067928122,0.48829110990902336,1.109943115251312,0.02915578159137823,1.1108655288135474,0.013054262827494433 +47067,0.5138116988738777,0.012523625154385534,0.09938813039485322,0.41558686009584567,0.0362078038269934,0.016182956836267477,0.024373958751491242,0.19343298452075425,0.8065670154792457,0.36430712282387806,0.44694665585331267,1.24104571180216,0.010098041051706573,1.1801946819373121,0.08405206988062329,1.052171705280702,0.48829110990902336,1.2402568150013509,0.02915578159137823,1.2410526265542126,0.013054262827494433 +47069,0.4971024417749734,0.01064370227772346,0.08882042492723116,0.40980051477868223,0.030721855326429508,0.01378490277047642,0.02141148661374231,0.17867629981877675,0.8213237001812232,0.3458872815751481,0.44870020459400756,1.0546986137374188,0.010098041051706573,1.0555095150536449,0.08405206988062329,1.01803302762736,0.48829110990902336,1.0540867253449695,0.02915578159137823,1.0566040925421083,0.013054262827494433 +47071,0.5158752398142024,0.012983232540668615,0.10060784432139665,0.4163742873323766,0.03715231516409888,0.01664671113641384,0.025167388427761443,0.19502359593306237,0.8049764040669376,0.36927851316855576,0.44806658919872466,1.2870133933870163,0.010098041051706573,1.195648211476078,0.08405206988062329,1.0565621279802135,0.48829110990902336,1.2733016233063632,0.02915578159137823,1.2780114719279676,0.013054262827494433 +47073,0.5098333144668057,0.012057367560447424,0.09611155378797875,0.41486381854512916,0.034273080122016214,0.01552907676513748,0.023649626688395736,0.188515640427488,0.811484359572512,0.3565968790560012,0.4530983707869889,1.1959357572611187,0.010098041051706573,1.143324648248468,0.08405206988062329,1.043970446187544,0.48829110990902336,1.176449748802981,0.02915578159137823,1.1852591026125263,0.013054262827494433 +47075,0.4942779026703383,0.010543974781973482,0.08690102673010043,0.40902201546570355,0.03034297591599521,0.013602792780752028,0.021332078017264413,0.17581410429359132,0.8241858957064087,0.3491670588684211,0.44830120876777135,1.0446070880488896,0.010098041051706573,1.0335101209883208,0.08405206988062329,1.0120525674260317,0.48829110990902336,1.0411970017264265,0.02915578159137823,1.042875353374549,0.013054262827494433 +47077,0.5013182225787348,0.01121208529018095,0.09073865415085906,0.4123590388487,0.03157790216787687,0.01432314178208511,0.022365205941461724,0.18100011143442538,0.8189998885655746,0.34800937333031745,0.4535811690700453,1.1116932177022985,0.010098041051706573,1.079853735550043,0.08405206988062329,1.0265605576563055,0.48829110990902336,1.0834472425195742,0.02915578159137823,1.096225242247924,0.013054262827494433 +47079,0.5202826566597016,0.013947113265108523,0.1046639619841466,0.4174149653530925,0.040176174991195024,0.017934297572206125,0.026806800277855182,0.20116750125038968,0.7988324987496103,0.38385872490934836,0.4463913644376696,1.3836477044426996,0.010098041051706573,1.243513569872407,0.08405206988062329,1.0655845143455478,0.48829110990902336,1.3769443627161815,0.02915578159137823,1.3770622122806424,0.013054262827494433 +47081,0.4958767788435267,0.010230809647842044,0.08681052063913516,0.41014381137121797,0.028799737193985535,0.013085544101488284,0.02063175789699635,0.17506470224637827,0.8249352977536217,0.3317539968882791,0.45436331635071436,1.0149469423256785,0.010098041051706573,1.0354832432690488,0.08405206988062329,1.0157721817735095,0.48829110990902336,0.9894323685799072,0.02915578159137823,1.0035010190485925,0.013054262827494433 +47083,0.5106071566445938,0.01302948201174619,0.09894999530995172,0.4134511805150284,0.03735684373427081,0.01667961328676046,0.02551762512959706,0.19378889234571675,0.8062111076542833,0.37753254679046677,0.4464941793639472,1.2910461665227664,0.010098041051706573,1.175383937126766,0.08405206988062329,1.0457379563484368,0.48829110990902336,1.2793709108024967,0.02915578159137823,1.2817489921532252,0.013054262827494433 +47085,0.5098109594589073,0.01219635333790181,0.09631727161595087,0.41505215929147876,0.034437974274436345,0.015670253255248873,0.023923285899633318,0.18892742462456696,0.8110725753754331,0.35754723630204194,0.4550283106193345,1.2096209558640636,0.010098041051706573,1.1451707758284337,0.08405206988062329,1.0442353943877287,0.48829110990902336,1.1835507655475435,0.02915578159137823,1.195113909159089,0.013054262827494433 +47087,0.5201015819300115,0.012826104039966342,0.10124285495050807,0.41933187898054325,0.03620144379226255,0.016415704197595325,0.024660767214686748,0.19465977122163802,0.805340228778362,0.3575703570386216,0.45345440617768695,1.2721190508046822,0.010098041051706573,1.2075241343519556,0.08405206988062329,1.0648035450274977,0.48829110990902336,1.240855439825574,0.02915578159137823,1.254914684360028,0.013054262827494433 +47089,0.5022233127458681,0.011345410980658714,0.0915659262341367,0.411862388946557,0.03180243415687778,0.01453255249533295,0.022590371041576178,0.18232113864549002,0.81767886135451,0.34731734243104845,0.45696352749747166,1.1247148858762541,0.010098041051706573,1.0896780902232068,0.08405206988062329,1.0287410759638553,0.48829110990902336,1.0938221119702374,0.02915578159137823,1.1088495821950803,0.013054262827494433 +47091,0.5202541358856028,0.013216907521298452,0.10319391383779028,0.41887606641266895,0.03808598043916696,0.017005663495423623,0.025404713984253036,0.19835289471006012,0.8016471052899399,0.3690719638663383,0.4465071740134408,1.3108470702090824,0.010098041051706573,1.2245001535349607,0.08405206988062329,1.0655334729977342,0.48829110990902336,1.3048475712843197,0.02915578159137823,1.308130275095825,0.013054262827494433 +47093,0.48965972893501636,0.010149015870169066,0.08473154226998149,0.4061972850448414,0.029069376504924634,0.013102093251875689,0.020726670523309385,0.17304168029964,0.82695831970036,0.34307621136294686,0.45071806922505087,1.005649959598856,0.010098041051706573,1.0093559381858723,0.08405206988062329,1.002451902218586,0.48829110990902336,0.9985652852564533,0.02915578159137823,1.0027530728900267,0.013054262827494433 +47095,0.4980809046868511,0.010640213019268485,0.0895978926651222,0.4102251814435628,0.030151746041431178,0.013699706575320759,0.021362419075186396,0.17988622294495182,0.8201137770550482,0.33652293758878055,0.45435864830169853,1.0558433390292918,0.010098041051706573,1.0637947819491853,0.08405206988062329,1.019923781740147,0.48829110990902336,1.0357506853701524,0.02915578159137823,1.0482310685356504,0.013054262827494433 +47097,0.48417250325735744,0.009562946974470108,0.08128533661382481,0.40419717691794665,0.02740711926942044,0.01235028372892224,0.01975111537754347,0.16788507415634535,0.8321149258436547,0.3371717509103494,0.4506231978456086,0.947294372283426,0.010098041051706573,0.9680673718092891,0.08405206988062329,0.9913762946772586,0.48829110990902336,0.9411634315842654,0.02915578159137823,0.9450433560670966,0.013054262827494433 +47099,0.5008540734964431,0.011898391334094626,0.09256190873348233,0.41015748509893724,0.0341005604285695,0.01524399923755836,0.023756203580480865,0.18480813800177603,0.8151918619982239,0.3684081378092232,0.44703075392235825,1.1793202224021617,0.010098041051706573,1.099006135357723,0.08405206988062329,1.0252930369225117,0.48829110990902336,1.1680444373678278,0.02915578159137823,1.170609131188045,0.013054262827494433 +47101,0.5049219595434924,0.011781416275135397,0.09324959261902965,0.41290841264627953,0.03316521052262202,0.015068720723961562,0.023333142978743,0.18468119846349726,0.8153188015365027,0.3556606478498859,0.45435323601166866,1.1681679470338344,0.010098041051706573,1.1111641144507338,0.08405206988062329,1.0339462002889572,0.48829110990902336,1.1378314160103837,0.02915578159137823,1.150761197335393,0.013054262827494433 +47103,0.5076172738669276,0.012566486587425376,0.09687489258734976,0.4123962040014726,0.03614378185315911,0.016169679028725552,0.024755829311513333,0.1908423877094963,0.8091576122905038,0.37309751668182894,0.44737097779136403,1.245714088588773,0.010098041051706573,1.1508023196238637,0.08405206988062329,1.0394386722287947,0.48829110990902336,1.2386426026197936,0.02915578159137823,1.2392268445100258,0.013054262827494433 +47105,0.5293756939068243,0.01469051067468452,0.10922884641989786,0.4210679445321652,0.04136871558724764,0.01871639696683312,0.027750633139704006,0.20633521273669073,0.7936647872633092,0.3787343448471286,0.45242876654847497,1.4565448013731308,0.010098041051706573,1.2997501810246794,0.08405206988062329,1.084555813402782,0.48829110990902336,1.4179008928470693,0.02915578159137823,1.4306771320281948,0.013054262827494433 +47107,0.5083764063789147,0.012098993451204184,0.09573494997217041,0.41405192873308116,0.03478441872196147,0.015552052969062462,0.023799281987500982,0.18831509246087053,0.8116849075391295,0.3633408565218146,0.4470982566468339,1.1997838907516565,0.010098041051706573,1.1368815864302504,0.08405206988062329,1.0409076683163985,0.48829110990902336,1.1920632574214656,0.02915578159137823,1.195006458316151,0.013054262827494433 +47109,0.5110043289148418,0.012620817607488798,0.09787327384827788,0.41488757310870616,0.03568680672668267,0.016199617243409643,0.024698063975876886,0.19153120298632212,0.8084687970136779,0.3646225912704625,0.4539385484243215,1.2514130248596769,0.010098041051706573,1.1627003448459,0.08405206988062329,1.0467694649609187,0.48829110990902336,1.2244559654927727,0.02915578159137823,1.235055222402005,0.013054262827494433 +47111,0.49176356084095496,0.010369569075699605,0.08575535018464264,0.4078086151841443,0.02957744371707309,0.013372468223709588,0.021086493391187452,0.17438329517135054,0.8256167048286495,0.3449049377489443,0.45211710490012874,1.0279538193802735,0.010098041051706573,1.0202309324656196,0.08405206988062329,1.0072021778790687,0.48829110990902336,1.0165956781045073,0.02915578159137823,1.022768657123663,0.013054262827494433 +47113,0.4865162890350401,0.009945040184965396,0.08310024383714376,0.4046460731226847,0.028686484143196085,0.012852688529025921,0.020441330350296102,0.17080670413310392,0.829193295866896,0.3452033690709092,0.44803986660994655,0.9848408254282262,0.010098041051706573,0.9895233469095874,0.08405206988062329,0.9963592497216759,0.48829110990902336,0.9847016620931538,0.02915578159137823,0.9848518915822049,0.013054262827494433 +47115,0.5085561339300619,0.011921668939483735,0.09530428972368114,0.4143996967691067,0.03372719122669535,0.015330143947068562,0.023442188863900787,0.187401711168403,0.812598288831597,0.35388953975190096,0.45453366822122526,1.1820376755796422,0.010098041051706573,1.1348318834284856,0.08405206988062329,1.0413046382503934,0.48829110990902336,1.1571506685198574,0.02915578159137823,1.1685591733686558,0.013054262827494433 +47117,0.4949311683173726,0.010339512479240906,0.0866750867025066,0.40992457136763316,0.02960726259157212,0.013346045227263778,0.0208908089470145,0.17512553714727166,0.8248744628527284,0.3415890738383985,0.4507693065505761,1.0242552950244515,0.010098041051706573,1.0306457435870822,0.08405206988062329,1.0135861756851383,0.48829110990902336,1.0162690928309637,0.02915578159137823,1.0214207373441513,0.013054262827494433 +47119,0.4925230587176946,0.010116622688851794,0.08529204947618303,0.40904602691043757,0.028779475031750393,0.013038170000880447,0.02054040416948369,0.17317371840060572,0.8268262815993943,0.33742271651927863,0.4530371032305607,1.0028926583168667,0.010098041051706573,1.016578799070871,0.08405206988062329,1.0088896493142423,0.48829110990902336,0.988045303869436,0.02915578159137823,0.9958643973243753,0.013054262827494433 +47121,0.5090508781774339,0.011594646648389663,0.09468290850435856,0.41516477904331456,0.032499139276464126,0.014953518810363838,0.022776989777332734,0.18599891005660157,0.8140010899433985,0.3432418774394545,0.4601204568267805,1.149362698668969,0.010098041051706573,1.1265645085994822,0.08405206988062329,1.0421771683416774,0.48829110990902336,1.1196590018097716,0.02915578159137823,1.1366935643241118,0.013054262827494433 +47123,0.5065987633038057,0.01181227283394875,0.09411981606063767,0.4136030202305653,0.033190545340151395,0.015116212006047389,0.023316821298406856,0.1857876940852189,0.8142123059147811,0.3526414173904467,0.4554372894789694,1.1713015652415588,0.010098041051706573,1.1201724899720649,0.08405206988062329,1.037511222975958,0.48829110990902336,1.1393554618800223,0.02915578159137823,1.1541868298511613,0.013054262827494433 +47125,0.4577140657397577,0.006823436922940682,0.06457173508562683,0.3936281158933383,0.0193487180105169,0.008804365520580736,0.014907640891290154,0.1410743953897636,0.8589256046102364,0.2996468653793969,0.4550361174210698,0.6756542035747009,0.010098041051706573,0.7732125464818482,0.08405206988062329,0.9375905347445319,0.48829110990902336,0.6646427632261027,0.02915578159137823,0.6720787199818782,0.013054262827494433 +47127,0.5162412383068611,0.01330774018575665,0.10158229819593348,0.41606095088905026,0.037923037339192,0.017087681364237394,0.025778142461851027,0.1967729244744131,0.8032270755255869,0.3733232857760854,0.45058841704585545,1.3191349840167323,0.010098041051706573,1.2056013445769587,0.08405206988062329,1.057509518719883,0.48829110990902336,1.3000302488104958,0.02915578159137823,1.3073976304849397,0.013054262827494433 +47129,0.49825089673524037,0.010449987615360121,0.08831071665844512,0.41107646089159733,0.029513748087172054,0.013445949511636222,0.020973344320769013,0.177241460551493,0.822758539448507,0.33420347160493424,0.45558258042733685,1.036815791579132,0.010098041051706573,1.052692374459085,0.08405206988062329,1.020391221284949,0.48829110990902336,1.012943498018176,0.02915578159137823,1.0270368306021922,0.013054262827494433 +47131,0.5076947362985127,0.012232974660121722,0.09632196658324252,0.41315443591927126,0.035383752138480794,0.015788879561739487,0.0240951378564796,0.18972417812621845,0.8102758218737816,0.3673487304466709,0.44621835185671704,1.2123722303730646,0.010098041051706573,1.142525719730403,0.08405206988062329,1.039803702752474,0.48829110990902336,1.2118541429292926,0.02915578159137823,1.211656868065746,0.013054262827494433 +47133,0.5099426188132088,0.012336344299411217,0.09659413270610023,0.4147960975378155,0.03476009201402891,0.015716335502398163,0.024191632243097533,0.18942157243280447,0.8105784275671956,0.359857178073029,0.45213733887859586,1.2234031194116675,0.010098041051706573,1.1500471023527354,0.08405206988062329,1.0443763457055202,0.48829110990902336,1.191108056412693,0.02915578159137823,1.204287739772489,0.013054262827494433 +47135,0.5155885349593231,0.0129012683522926,0.10028499327133922,0.4163675730573081,0.03626184469411177,0.016459977598078095,0.025022411239827964,0.19450586363261765,0.8054941363673823,0.3615879456261096,0.4539200290808945,1.279818234776554,0.010098041051706573,1.1940517120751437,0.08405206988062329,1.056400458572344,0.48829110990902336,1.2436525626255541,0.02915578159137823,1.2592101464248457,0.013054262827494433 +47137,0.5148557504018352,0.013614622362422864,0.10220426780815237,0.41408022538491995,0.0398358331317268,0.017637423706785574,0.026443566672406608,0.19851049100332252,0.8014895089966775,0.38976682663098416,0.4427527258803192,1.350445938851293,0.010098041051706573,1.215275538555553,0.08405206988062329,1.0541512999582996,0.48829110990902336,1.3608227144327059,0.02915578159137823,1.3497088354516704,0.013054262827494433 +47139,0.5130502305943572,0.012632305509824715,0.09885196634596388,0.4152828510517278,0.03550946012995837,0.016187272323798227,0.024621966342731144,0.19267502566258687,0.8073249743374131,0.3592185511584233,0.4558580238774586,1.2522652591674055,0.010098041051706573,1.1751068542581136,0.08405206988062329,1.0509735105927178,0.48829110990902336,1.2194762994999149,0.02915578159137823,1.2346673674120265,0.013054262827494433 +47141,0.48791154611897364,0.010657076125832773,0.08565358458750719,0.4038470521283237,0.030495547930632357,0.013675551227216443,0.021842229827523128,0.17555146064655988,0.8244485393534401,0.3560335282813163,0.448444187929463,1.0558458049826975,0.010098041051706573,1.018306586720262,0.08405206988062329,0.9997828298880129,0.48829110990902336,1.0461937456790142,0.02915578159137823,1.048737369620668,0.013054262827494433 +47143,0.502097918275824,0.011601147763919954,0.09233652570086705,0.41119673342866914,0.032852122883309326,0.014917046695104425,0.023105349258880904,0.18390143105541143,0.8160985689445885,0.355786863691806,0.4540664464238657,1.1500998170461982,0.010098041051706573,1.0980270169586355,0.08405206988062329,1.0282126329367653,0.48829110990902336,1.1288526708496498,0.02915578159137823,1.1381981968836188,0.013054262827494433 +47145,0.5209406920606374,0.013277844158554823,0.10327428182383724,0.4189698584273845,0.03799951163642205,0.017054583178184847,0.025488206932026886,0.19824575695042101,0.801754243049579,0.36794747894002,0.4488105884455169,1.316327802144046,0.010098041051706573,1.227303728590917,0.08405206988062329,1.0670180807746585,0.48829110990902336,1.3028808417253364,0.02915578159137823,1.3083815479443026,0.013054262827494433 +47147,0.48559152153878393,0.009138811712881202,0.08003990405402873,0.4066894895646207,0.025802013565576182,0.011788114660647796,0.018819957325287216,0.16482969842717074,0.8351703015728292,0.3223643740022382,0.4568680126722721,0.9071552849790758,0.010098041051706573,0.9552100647283036,0.08405206988062329,0.9942844136942527,0.48829110990902336,0.8857170844191394,0.02915578159137823,0.8979641788297803,0.013054262827494433 +47149,0.4631090229981063,0.007016331078891575,0.06687009568678454,0.3965919368510714,0.01979170199510321,0.00907948589491475,0.015150495305551985,0.14439385191391094,0.855606148086089,0.2959723893293998,0.45875215265272096,0.6953714495408296,0.010098041051706573,0.8018759698997535,0.08405206988062329,0.9480949374059072,0.48829110990902336,0.6801723357906335,0.02915578159137823,0.6913846493522731,0.013054262827494433 +47151,0.4929488114931011,0.010648979958631488,0.08654600529119257,0.4077604770839103,0.03023805407039981,0.013709689280468831,0.021602608040328996,0.17556793580463637,0.8244320641953636,0.3493870568452108,0.4533919163101609,1.0553625042391273,0.010098041051706573,1.029241598122886,0.08405206988062329,1.0094290742810332,0.48829110990902336,1.0396759740553199,0.02915578159137823,1.0464448027882305,0.013054262827494433 +47153,0.5020364551721246,0.01087115917646356,0.0897688214247269,0.4132293098420089,0.029643830579697845,0.013787540448031172,0.021654123051156424,0.17880936832356012,0.8211906316764399,0.3302241258069188,0.46510657288244783,1.0778459966012846,0.010098041051706573,1.069801197828956,0.08405206988062329,1.0281603383334565,0.48829110990902336,1.0238004426874827,0.02915578159137823,1.0527240771606206,0.013054262827494433 +47155,0.5049305214881143,0.011271899177446611,0.09242290425846184,0.4134992475046944,0.03172250254163219,0.014459975133263315,0.022323663747294276,0.18304083497681253,0.8169591650231874,0.34323204617028485,0.4558270620133527,1.1176977114823368,0.010098041051706573,1.1001570822565028,0.08405206988062329,1.0336772682653905,0.48829110990902336,1.0895560596169702,0.02915578159137823,1.1042079819602169,0.013054262827494433 +47157,0.4757381294901236,0.008488736314688421,0.07514317836962645,0.40167166791993303,0.02423975033834709,0.010939447334157066,0.017843296108693864,0.1579507163955132,0.8420492836044868,0.32258084984258556,0.45130198048496184,0.8403028345267634,0.010098041051706573,0.8974303459431094,0.08405206988062329,0.974091814797349,0.48829110990902336,0.8319203408479249,0.02915578159137823,0.8372778347870296,0.013054262827494433 +47159,0.4963704028217195,0.01052896420741738,0.08762980580513123,0.41026067185481296,0.03010259657975228,0.013581770780205839,0.021211909790679138,0.17654115818949237,0.8234588418105077,0.34352006492737885,0.45118269928054183,1.0430003547362292,0.010098041051706573,1.0421298761623983,0.08405206988062329,1.0165079477763794,0.48829110990902336,1.0333601735099989,0.02915578159137823,1.0389547189130743,0.013054262827494433 +47161,0.5121072813098164,0.012248929828374062,0.09719897021101001,0.4157811698442514,0.03481072772020263,0.015772130075940638,0.023918679299081598,0.18980196876405325,0.8101980312359467,0.3581388531651287,0.45308245787654644,1.2147418208129555,0.010098041051706573,1.156912452740811,0.08405206988062329,1.0487099465846486,0.48829110990902336,1.194752954631939,0.02915578159137823,1.2035524702671982,0.013054262827494433 +47163,0.5175013622622145,0.013378112732301177,0.1026482317453265,0.4164836344988085,0.03867566543014189,0.017262033340904107,0.02585135751878963,0.19835354886141404,0.8016464511385859,0.37677868164448697,0.4463280243253665,1.326903484461167,0.010098041051706573,1.2184615225882676,0.08405206988062329,1.0598364537479408,0.48829110990902336,1.3253354161233275,0.02915578159137823,1.324168166206972,0.013054262827494433 +47165,0.4913211438438042,0.009818353684805478,0.0839284566122277,0.4091494993360179,0.02785000007022574,0.012692093114911863,0.019983576542203174,0.17082199222207578,0.8291780077779243,0.3318302420226827,0.4557304518099768,0.9733742731304262,0.010098041051706573,1.0000001275948638,0.08405206988062329,1.006175610080934,0.48829110990902336,0.9558996654336513,0.02915578159137823,0.9662075026471184,0.013054262827494433 +47167,0.48154045470180606,0.008908441681330134,0.0784088488708694,0.4041478993699884,0.025244121070144863,0.011528639098146139,0.018499882189226838,0.16282920387119723,0.8371707961288027,0.32195500168251556,0.4566860959869411,0.8837089500909399,0.010098041051706573,0.9346631679726194,0.08405206988062329,0.9860135622739924,0.48829110990902336,0.8666023283566263,0.02915578159137823,0.8766819224485118,0.013054262827494433 +47169,0.49566607605148016,0.01035927307935467,0.0864488046209373,0.41042478278937544,0.028617034730663512,0.013160396943367462,0.02089970159321283,0.1744093630728093,0.8255906369271907,0.33102869213917,0.45987982567830243,1.0278848391076303,0.010098041051706573,1.0313028024714663,0.08405206988062329,1.015028776659582,0.48829110990902336,0.9850197984514424,0.02915578159137823,1.0067755250891568,0.013054262827494433 +47171,0.5235675804080758,0.014093112667304439,0.10625623710777214,0.4186269217570954,0.04015521636817161,0.01807034929630676,0.026917466234865177,0.2029465556766417,0.7970534443233583,0.37790926406930375,0.4500124997615486,1.398039291698677,0.010098041051706573,1.2635447719912039,0.08405206988062329,1.0724708194639925,0.48829110990902336,1.3745622562497521,0.02915578159137823,1.3813414332982514,0.013054262827494433 +47173,0.4985061074637275,0.010549784163716167,0.08821736265083607,0.41197496344103257,0.029770147122946587,0.013625928947188719,0.021162798220047473,0.1769634540681229,0.8230365459318771,0.3374635811861288,0.45770445442931534,1.0459632155791827,0.010098041051706573,1.0500815960895147,0.08405206988062329,1.021012307034995,0.48829110990902336,1.0249689768438808,0.02915578159137823,1.0376268940974067,0.013054262827494433 +47175,0.5145699860905109,0.011943465926962951,0.09699139412291195,0.41812315263703614,0.03345897221001889,0.015287504012513147,0.02321057630606178,0.188490189371153,0.811509810628847,0.34496846356923316,0.4569029770715876,1.1840790392512586,0.010098041051706573,1.1538993585270032,0.08405206988062329,1.0538596550209012,0.48829110990902336,1.1503025631044215,0.02915578159137823,1.1678389595583045,0.013054262827494433 +47177,0.4994917842846061,0.011319954049047317,0.09054149332620327,0.4109717563586486,0.03217029613833977,0.014553785168056957,0.022662943426107095,0.181267232364754,0.818732767635246,0.3553099795078097,0.45239823424292674,1.1220678722569966,0.010098041051706573,1.0761580939607944,0.08405206988062329,1.0229021868467647,0.48829110990902336,1.1037980575936857,0.02915578159137823,1.1109617204944304,0.013054262827494433 +47179,0.49970052004904997,0.011246108305188532,0.09120403331570817,0.40999907465694263,0.03247309367005334,0.014516507945212318,0.0225056966202169,0.18251738722776534,0.8174826127722347,0.3560488773303018,0.4470318748410297,1.1152330523678193,0.010098041051706573,1.0841806146077668,0.08405206988062329,1.0234167477496436,0.48829110990902336,1.1124923688265878,0.02915578159137823,1.1138659404387596,0.013054262827494433 +47181,0.5054773935938768,0.01159102077977972,0.09401852413875095,0.41276240975339495,0.03289759482457557,0.014963867243514926,0.022930839097212854,0.18599946373524598,0.814000536264754,0.34990545880113855,0.4548620445752597,1.1495356006993203,0.010098041051706573,1.1172042656742005,0.08405206988062329,1.0353083622403794,0.48829110990902336,1.1301379731560592,0.02915578159137823,1.1405150058887765,0.013054262827494433 +47183,0.49385582544007317,0.01157765546273355,0.09044441492649473,0.4055469907628393,0.03379907178293573,0.015012559521567147,0.023443391504831886,0.1831393096272582,0.8168606903727418,0.3736999328306192,0.44417076356358987,1.1476398543310098,0.010098041051706573,1.0748841117474859,0.08405206988062329,1.0121304393992365,0.48829110990902336,1.1558578604078338,0.02915578159137823,1.1486132775308344,0.013054262827494433 +47185,0.5109663046315928,0.012715359887713114,0.09820665904915397,0.4144052424365634,0.03636896477418407,0.01628630759776501,0.024884928365053155,0.1921979162989252,0.8078020837010749,0.3703309442181597,0.44780784107788485,1.2602358941316165,0.010098041051706573,1.1662899769219561,0.08405206988062329,1.04641869665102,0.48829110990902336,1.2461412385000825,0.02915578159137823,1.2501482709642393,0.013054262827494433 +47187,0.48350883008509293,0.008271313679236251,0.07668321237529799,0.40780247577374756,0.02314651192317189,0.010649621724852095,0.017106851342881535,0.15859733598205947,0.8414026640179405,0.30184588264103673,0.4600961803748407,0.8202062504721943,0.010098041051706573,0.9159503079426641,0.08405206988062329,0.9901338836095563,0.48829110990902336,0.7963540141079334,0.02915578159137823,0.8122534047856775,0.013054262827494433 +47189,0.4923708580154581,0.009535801627838594,0.0832373066992578,0.4104706180124194,0.026877001607457224,0.012305642583967432,0.019367112152562073,0.16905408868988048,0.8309459113101195,0.3228960987957684,0.45785027525366295,0.9464302371174627,0.010098041051706573,0.992714301798509,0.08405206988062329,1.0083181321842902,0.48829110990902336,0.9231679235209007,0.02915578159137823,0.9372104113785212,0.013054262827494433 +48001,0.4928103992122166,0.009733061377481578,0.08500561568568074,0.40857322660170603,0.02818587070556256,0.012657403114880963,0.019750113619843232,0.17249152173242832,0.8275084782675717,0.3315765726558992,0.4490690831269225,0.9643271621423082,0.010098041051706573,1.0109533939121549,0.08405206988062329,1.0086381231181911,0.48829110990902336,0.9683131159526724,0.02915578159137823,0.9698608094381236,0.013054262827494433 +48003,0.4804966786460819,0.009362832402865994,0.07849919169729855,0.4032516231595673,0.02626552292232895,0.011914938718979532,0.01948573802684357,0.16337093508843684,0.8366290649115632,0.3345960939777784,0.453634171084801,0.9299487003253535,0.010098041051706573,0.937310429784671,0.08405206988062329,0.9837354549542103,0.48829110990902336,0.9035114172638361,0.02915578159137823,0.9145577211812006,0.013054262827494433 +48005,0.4876567702055486,0.01033974525538569,0.08393875569277884,0.4051573318167642,0.029798239664864726,0.013317446865423157,0.021202915425592182,0.17212671046768904,0.827873289532311,0.3549997783375318,0.44692059045104715,1.0242848961045308,0.010098041051706573,0.9984865891212427,0.08405206988062329,0.9985045364770951,0.48829110990902336,1.0208073691189807,0.02915578159137823,1.0211149295813864,0.013054262827494433 +48007,0.5362230140206627,0.016231411715689616,0.11592144696136503,0.42135572263513255,0.046416971326198306,0.020744475017247,0.030269890122739413,0.21618140947023606,0.7838185905297639,0.40041745977919363,0.44691573845832905,1.609508505389785,0.010098041051706573,1.37735286912249,0.08405206988062329,1.0983197171455967,0.48829110990902336,1.5905691842393472,0.02915578159137823,1.5937897316201055,0.013054262827494433 +48009,0.5055836226259577,0.011931656312250289,0.09435597538263006,0.41285854684054757,0.03436642304190837,0.015369758284412068,0.023599768224845368,0.1866278319945438,0.8133721680054562,0.3642209505285329,0.4472318304895831,1.1830867958717641,0.010098041051706573,1.1222927325350394,0.08405206988062329,1.0351667545302639,0.48829110990902336,1.178241905074044,0.02915578159137823,1.179202144872101,0.013054262827494433 +48011,0.5217586004730288,0.014873315089888872,0.10765259053570535,0.4162518972964256,0.04402496308505353,0.019351407228792833,0.028506123476267867,0.20632643225834132,0.7936735677416586,0.4089540517880216,0.4395553311744317,1.4741950490523161,0.010098041051706573,1.27686762387943,0.08405206988062329,1.0684779210808448,0.48829110990902336,1.5014898381089457,0.02915578159137823,1.480247580413664,0.013054262827494433 +48013,0.48505509630355537,0.009753329259863063,0.08135853757975342,0.40518997231589693,0.027909993959803897,0.012556798808126707,0.020107672992593962,0.16773050772945167,0.8322694922705484,0.34304935646667123,0.44990331514263554,0.966023950101188,0.010098041051706573,0.9685360598856729,0.08405206988062329,0.9930920143942107,0.48829110990902336,0.9580369989920384,0.02915578159137823,0.9609605821506909,0.013054262827494433 +48015,0.5042069533780984,0.012070844803124871,0.0941196748432453,0.411495264525412,0.03445094685868948,0.015466563531031156,0.023940258503482196,0.1866687363445901,0.8133312636554099,0.3660334241067762,0.44894451216309783,1.196471869639317,0.010098041051706573,1.1200632002904758,0.08405206988062329,1.032498753912991,0.48829110990902336,1.1812365273774512,0.02915578159137823,1.184778957470039,0.013054262827494433 +48017,0.4788803299573279,0.00945811102282878,0.07813414022351585,0.40210815466055505,0.026407404768965585,0.012059786468419535,0.0197504688147696,0.16316005343230164,0.8368399465676983,0.3379752396765711,0.45668200165555056,0.9389375228944121,0.010098041051706573,0.9328733917666562,0.08405206988062329,0.9810380033770909,0.48829110990902336,0.9078294712579493,0.02915578159137823,0.9202951111105686,0.013054262827494433 +48019,0.5344525103208508,0.014699485925877314,0.11129845541179442,0.4240689011599178,0.0417994443415276,0.018859009169765344,0.027503820530382934,0.20824760528298014,0.7917523947170199,0.3755617648679253,0.451178465811063,1.4581081952193102,0.010098041051706573,1.3262906425315626,0.08405206988062329,1.0943170223850838,0.48829110990902336,1.431985373000451,0.02915578159137823,1.4410143070208157,0.013054262827494433 +48021,0.4883549695845847,0.009509706275820557,0.08211135291198032,0.40776480003741733,0.027130832270816696,0.012269070808754771,0.019472938473237847,0.16813866557317456,0.8318613344268254,0.3304151168949771,0.45221874088809316,0.9424651541548943,0.010098041051706573,0.978376814160808,0.08405206988062329,1.0000753866959693,0.48829110990902336,0.9314569310336422,0.02915578159137823,0.9382563692774515,0.013054262827494433 +48023,0.5336997691769199,0.016637487107685076,0.11737039097455879,0.41641532304318685,0.04958280075682444,0.021762619712630257,0.031173869783274723,0.2199183843672431,0.7800816156327569,0.4224472658319082,0.4389146917973348,1.6489124039283338,0.010098041051706573,1.389543610203102,0.08405206988062329,1.0918589811835058,0.48829110990902336,1.6935662175271058,0.02915578159137823,1.6655816315157945,0.013054262827494433 +48025,0.4782537411836182,0.008446880692537656,0.07625169635421716,0.40262027092334624,0.024295358079553755,0.010966356945516604,0.017661922877242282,0.1594377414915851,0.8405622585084149,0.31862055850787746,0.45137663374245807,0.8361434109882873,0.010098041051706573,0.9103001578751272,0.08405206988062329,0.9784285626726544,0.48829110990902336,0.833910583015901,0.02915578159137823,0.8381832754159859,0.013054262827494433 +48027,0.45871760536138273,0.007210695965364826,0.06579096678818203,0.39363510311057015,0.02047867695618421,0.009298371473341428,0.015719248359094832,0.14342367944729564,0.8565763205527044,0.31126882543186424,0.4540513771097639,0.7137141899305894,0.010098041051706573,0.786939617386647,0.08405206988062329,0.9397436403704074,0.48829110990902336,0.703584640616056,0.02915578159137823,0.7094301552194116,0.013054262827494433 +48029,0.4708226472924996,0.00828331688815161,0.07292056223922222,0.3991033841386933,0.02375272364506533,0.01069589995602944,0.01759328472363306,0.1548790455568722,0.8451209544431277,0.32573423621093955,0.45030204181454075,0.820437477642267,0.010098041051706573,0.8706977678955096,0.08405206988062329,0.9642083788675595,0.48829110990902336,0.8149608229359853,0.02915578159137823,0.8182938147360748,0.013054262827494433 +48031,0.5230541179116037,0.01342204407208757,0.1043530005524253,0.4204336001238837,0.038471978463097,0.017287132564896633,0.025660908904947956,0.19950708154076896,0.8004929184592311,0.36867151169045004,0.449343476875741,1.3296360505495852,0.010098041051706573,1.2376902936075784,0.08405206988062329,1.0713107894301952,0.48829110990902336,1.318281571997044,0.02915578159137823,1.3233954326539568,0.013054262827494433 +48033,0.5205532848994525,0.016040072421721382,0.11183045894431301,0.40942213988838894,0.04737542771712647,0.020711808630226244,0.030813507256648286,0.2148299937554205,0.7851700062445794,0.42363617358234656,0.4371846256226794,1.5908814430016087,0.010098041051706573,1.3260910054983561,0.08405206988062329,1.0651519325439267,0.48829110990902336,1.6147508065064224,0.02915578159137823,1.5918808825685198,0.013054262827494433 +48035,0.5223495846673509,0.014421288051445533,0.10728068505380112,0.41707128183949704,0.04275199465010551,0.018847535099525952,0.027608499125407505,0.20538100958215735,0.7946189904178427,0.3985059810968344,0.44085744428487,1.4282678918828953,0.010098041051706573,1.27156662945275,0.08405206988062329,1.0696390442160912,0.48829110990902336,1.460606355133934,0.02915578159137823,1.440764584486241,0.013054262827494433 +48037,0.49217524379061284,0.010779667900219985,0.08736661444939281,0.4066920462385321,0.031373263212363514,0.013957832974524631,0.021902092874882595,0.17751119251044933,0.8224888074895507,0.3590989923334674,0.4448957980572501,1.0678155729273087,0.010098041051706573,1.0375995799809985,0.08405206988062329,1.0079753706009713,0.48829110990902336,1.074859120456279,0.02915578159137823,1.0704119326753887,0.013054262827494433 +48039,0.4744975244763179,0.007903483066498606,0.07279531432088271,0.40253619364737014,0.02231798864653228,0.010213523706784869,0.016656531717886905,0.15341558293949734,0.8465844170605027,0.3065855110969683,0.45763638778317167,0.7837400546087578,0.010098041051706573,0.8710504780625534,0.08405206988062329,0.9708739679750444,0.48829110990902336,0.7664729425667208,0.02915578159137823,0.777865393167669,0.013054262827494433 +48041,0.434866609524595,0.005900835849463803,0.056352495718720086,0.3780644108584672,0.01678222955478375,0.0076081913837520755,0.013569300838973857,0.12958570394798943,0.8704142960520106,0.2978080977735429,0.45334807028565355,0.5834703159100243,0.010098041051706573,0.6703075440511851,0.08405206988062329,0.8914744215422534,0.48829110990902336,0.5772867092815479,0.02915578159137823,0.5797504836694591,0.013054262827494433 +48043,0.5072673423090599,0.011965828263795227,0.09543966997257887,0.41294461503706137,0.034344494987499904,0.015428978861310285,0.02358880074819576,0.18814471583788828,0.8118552841621117,0.3598555506045605,0.4492416868242159,1.1860483011234904,0.010098041051706573,1.1358605130646988,0.08405206988062329,1.0386725596068587,0.48829110990902336,1.1772395448019766,0.02915578159137823,1.1805499017548515,0.013054262827494433 +48045,0.5289224000199733,0.016213009503496224,0.1138575871346737,0.4168067832782981,0.04680219929722047,0.020732204239431916,0.030652907690965604,0.21526331108376992,0.78473668891623,0.41105911757871366,0.4429750001227651,1.6083423729446116,0.010098041051706573,1.3495414292315033,0.08405206988062329,1.0826768178470116,0.48829110990902336,1.5987228196245917,0.02915578159137823,1.5930026700351498,0.013054262827494433 +48047,0.49563070639248175,0.01214215968004566,0.0908814437014622,0.4063430777033707,0.03476067860556435,0.015502614957205993,0.024498400771865183,0.18336524054967387,0.8166347594503262,0.38248378535611977,0.4459813668518081,1.2026506959252292,0.010098041051706573,1.079957116093858,0.08405206988062329,1.0140292085531684,0.48829110990902336,1.190354610639608,0.02915578159137823,1.1911895472036376,0.013054262827494433 +48049,0.5013115739449401,0.01248272099312717,0.09485624757876675,0.4084343973902579,0.03651788933974715,0.01617084365864048,0.024900125275180998,0.1892161532045238,0.8107838467954762,0.384981382585511,0.44281977822413887,1.2373694647242863,0.010098041051706573,1.1258622168216634,0.08405206988062329,1.0264766568256192,0.48829110990902336,1.246437700923368,0.02915578159137823,1.236891597159087,0.013054262827494433 +48051,0.5098992861192955,0.012762245085270182,0.09796359145353914,0.4135514321821021,0.036375194498861146,0.016339281956762753,0.025028952643570364,0.1921234136237243,0.8078765863762757,0.3713134028585782,0.44918748014596355,1.2654879449584167,0.010098041051706573,1.1644467348488203,0.08405206988062329,1.0444892764658995,0.48829110990902336,1.246142240159636,0.02915578159137823,1.250410372229242,0.013054262827494433 +48053,0.51608180495708,0.013471350184773637,0.10203528961654376,0.4154475007632438,0.03878667263874103,0.01729678594740048,0.02610312949493343,0.19771146480358776,0.8022885351964122,0.3801299803676183,0.4459466298772958,1.335250069277844,0.010098041051706573,1.2119311944986202,0.08405206988062329,1.0567708750972822,0.48829110990902336,1.3284222923428701,0.02915578159137823,1.3294437768685778,0.013054262827494433 +48055,0.47776634978676635,0.00933027069770849,0.07858001970223889,0.40081292523730827,0.02699510298768273,0.01207044265728616,0.019528940667070248,0.16447374273493776,0.8355262572650622,0.34353647517491764,0.44713452891043376,0.9235706999479387,0.010098041051706573,0.9357475505903459,0.08405206988062329,0.9786813267685504,0.48829110990902336,0.9264817077070624,0.02915578159137823,0.9245887386859988,0.013054262827494433 +48057,0.49859623948143184,0.011332325383957113,0.08969895753200985,0.41049944269886496,0.03206182056696147,0.014504977712676198,0.02272846140144051,0.17990299651136923,0.8200970034886308,0.35743805111135135,0.4524065525967994,1.1234668815458888,0.010098041051706573,1.0682212873532881,0.08405206988062329,1.0207734780778464,0.48829110990902336,1.09932511914803,0.02915578159137823,1.1078451831391933,0.013054262827494433 +48059,0.5127789586826317,0.012984772911825506,0.0990698439312771,0.41493046245540627,0.036065084252570066,0.016449270068372594,0.025322359063219713,0.19320185092187694,0.8067981490781231,0.36403695434897165,0.4560995879886344,1.2874722190872405,0.010098041051706573,1.1792272483947581,0.08405206988062329,1.050378008662932,0.48829110990902336,1.239726970458927,0.02915578159137823,1.2570174081515213,0.013054262827494433 +48061,0.4648467469453584,0.008506538828213051,0.07099095782844188,0.3948934242922283,0.024277493885069737,0.010902795405040631,0.018299663026818975,0.15271905911990108,0.847280940880099,0.3419800863053461,0.4490906457089326,0.8416831720497185,0.010098041051706573,0.8463148759537327,0.08405206988062329,0.9519812685119033,0.48829110990902336,0.8337481527304842,0.02915578159137823,0.8346143843002272,0.013054262827494433 +48063,0.49944617942065367,0.011670942193240151,0.0913466703723004,0.4102137207886827,0.033390383874441695,0.014949767151987077,0.02336776748753626,0.1828959237975561,0.817104076202444,0.36553476704025395,0.44772672300512883,1.1566730448333842,0.010098041051706573,1.0844539080424458,0.08405206988062329,1.0226150915520347,0.48829110990902336,1.1450290045238254,0.02915578159137823,1.1479880351088751,0.013054262827494433 +48065,0.509108422838512,0.013192837170873623,0.1000594876100129,0.4110024609555442,0.03924309388150858,0.01731245001606934,0.025913610105520412,0.19653866076725968,0.8034613392327403,0.3921976298185795,0.44115915193493443,1.3063229034662274,0.010098041051706573,1.183679916983328,0.08405206988062329,1.0430762488252217,0.48829110990902336,1.340842244912245,0.02915578159137823,1.3200990185191488,0.013054262827494433 +48067,0.5158942999400835,0.013460654603216816,0.10218879381277718,0.4151562151458561,0.038895160191612974,0.017346493982565575,0.026091884722859216,0.1980808739787307,0.8019191260212692,0.3806206017351945,0.44598078262462143,1.3345845074232265,0.010098041051706573,1.213572043220466,0.08405206988062329,1.0567234220564572,0.48829110990902336,1.332508461989713,0.02915578159137823,1.330852439111791,0.013054262827494433 +48069,0.4841170024361831,0.010098876666723652,0.0815676152953353,0.4043703186857019,0.02919713505861949,0.013006726353861443,0.02086040485234744,0.16848740053513744,0.8315125994648626,0.3579500878247353,0.4454795420080655,0.9993279153369569,0.010098041051706573,0.9700338527433192,0.08405206988062329,0.9909545727819868,0.48829110990902336,1.0007609070049395,0.02915578159137823,0.9963685397999684,0.013054262827494433 +48071,0.47662769634343227,0.00793826297448573,0.07371250372753324,0.40372423469800045,0.022041023783699258,0.010146811331670294,0.016655060197689066,0.15465426011336944,0.8453457398866305,0.2990133650210887,0.4603602550973384,0.7878444516363663,0.010098041051706573,0.8812227965910355,0.08405206988062329,0.976229583703637,0.48829110990902336,0.759089646036561,0.02915578159137823,0.7759210714563181,0.013054262827494433 +48073,0.49688449323370754,0.01131098379411791,0.08958369812801527,0.4091570174650053,0.032630456458130286,0.014559925460256334,0.022763809191360368,0.18029079061213518,0.8197092093878648,0.3642454725579793,0.44620661310511783,1.1203193885439262,0.010098041051706573,1.0636012625494562,0.08405206988062329,1.0169861067591186,0.48829110990902336,1.1176767592520416,0.02915578159137823,1.117299842501749,0.013054262827494433 +48075,0.4768894491276007,0.009658079602325289,0.08001344509836819,0.39864030209183043,0.027755363558411312,0.012467996387257423,0.020252240052685857,0.16778195710712632,0.8322180428928737,0.3468837459040663,0.4492103431114659,0.9566956552896733,0.010098041051706573,0.9495466444477145,0.08405206988062329,0.9765486624850076,0.48829110990902336,0.9515510497403139,0.02915578159137823,0.9518326095708801,0.013054262827494433 +48077,0.515612179292982,0.012642793834811136,0.09933492344862183,0.41675905866023244,0.03561117626848506,0.016144548156748612,0.024519967414554086,0.19265433874124524,0.8073456612587547,0.35849603575628597,0.453356217021006,1.2541967895935011,0.010098041051706573,1.1850123340228929,0.08405206988062329,1.056207390851585,0.48829110990902336,1.2207734352097899,0.02915578159137823,1.2353458194158553,0.013054262827494433 +48079,0.48223812543802547,0.010384970582069428,0.082516864646421,0.40164363361785316,0.030008895172702228,0.013377935459760307,0.021534943079493298,0.17111227896274162,0.8288877210372584,0.3636698425381072,0.4457990000221543,1.0284293351043434,0.010098041051706573,0.9792961089603034,0.08405206988062329,0.9875869518187868,0.48829110990902336,1.0277504948222265,0.02915578159137823,1.0254650261151297,0.013054262827494433 +48081,0.5312937166854406,0.016161768051660065,0.1144902202531192,0.4175300688205926,0.047081504775298426,0.020859401398878267,0.030419648386748856,0.21549326983835693,0.7845067301616431,0.4112273054520194,0.4430487406558481,1.602905490951451,0.010098041051706573,1.3598718711431819,0.08405206988062329,1.0874936163943119,0.48829110990902336,1.6099968791368822,0.02915578159137823,1.5999793517437255,0.013054262827494433 +48083,0.5252288869391248,0.015421864784358048,0.11060183804201609,0.4159857445314997,0.04554214229137969,0.02004375849467637,0.0293621793619007,0.2105783607725199,0.7894216392274801,0.41176659536235616,0.4401145287904099,1.5289439218515781,0.010098041051706573,1.311304981799183,0.08405206988062329,1.0752990592252236,0.48829110990902336,1.5546818704286212,0.02915578159137823,1.5348284575858522,0.013054262827494433 +48085,0.4666412577817225,0.006552947361248103,0.06663647194360128,0.4005572738106986,0.018294533924584324,0.00845729285594174,0.014042794656432479,0.1428002150096453,0.8571997849903548,0.27454235482436945,0.46228523179684666,0.6501545414229777,0.010098041051706573,0.7969522562419101,0.08405206988062329,0.9555967880543037,0.48829110990902336,0.6304719906140007,0.02915578159137823,0.6457767741299749,0.013054262827494433 +48087,0.5037691098299071,0.013952646123073521,0.0986798979448948,0.4071285238675368,0.04122399284373067,0.018110546615439052,0.027696509870929763,0.19588318541050115,0.8041168145894988,0.41775471704228073,0.43932053559419576,1.3821385352010118,0.010098041051706573,1.1688682006829418,0.08405206988062329,1.0314091531566345,0.48829110990902336,1.4053485531207905,0.02915578159137823,1.383555128694419,0.013054262827494433 +48089,0.5146527454770813,0.013671398597488064,0.10244278134157028,0.4138365700465588,0.04023899408907008,0.017791426856778928,0.02656431684788687,0.19905223909105194,0.800947760908948,0.39279482226183454,0.44214392679392367,1.3556772513023736,0.010098041051706573,1.215836596700747,0.08405206988062329,1.0538341872421868,0.48829110990902336,1.371749274896827,0.02915578159137823,1.3583011306706276,0.013054262827494433 +48091,0.50700552762255,0.011599772777763837,0.09400484187435963,0.413784923415001,0.03290801895346807,0.014932761914628438,0.02287898680741704,0.18541186782551874,0.8145881321744812,0.35006727629466844,0.4537727395788655,1.1501276190737322,0.010098041051706573,1.1194696715875363,0.08405206988062329,1.0382904510040682,0.48829110990902336,1.1296760400514207,0.02915578159137823,1.1391938957179084,0.013054262827494433 +48093,0.5181571443713897,0.014391385493685568,0.10511506946298571,0.41445690806214563,0.0421464442639746,0.018618371414817217,0.02777417169678264,0.20286330238774894,0.797136697612251,0.4009553005034704,0.4417542627844312,1.4268618967936608,0.010098041051706573,1.2485663860516523,0.08405206988062329,1.0608342686921657,0.48829110990902336,1.4395693023231317,0.02915578159137823,1.4289207316134611,0.013054262827494433 +48095,0.5086575749457143,0.010292393836392076,0.09179312383894843,0.4172731899377301,0.02949567851923352,0.013459627526358512,0.020234425561224595,0.18046152924930867,0.8195384707506913,0.3213277562160741,0.456325407723093,1.0210437713544742,0.010098041051706573,1.093568721428766,0.08405206988062329,1.041407577080613,0.48829110990902336,1.0124475803654747,0.02915578159137823,1.0242850690417353,0.013054262827494433 +48097,0.49964346974484986,0.012058545551854524,0.09273854380666832,0.40871687910933097,0.0345908445147401,0.015467807524715453,0.02413430032021112,0.18560943837418029,0.8143905616258197,0.37299318163601425,0.4471647842574124,1.1953874737156729,0.010098041051706573,1.101815589148966,0.08405206988062329,1.023040326807982,0.48829110990902336,1.1854717826333165,0.02915578159137823,1.1865535255486688,0.013054262827494433 +48099,0.4514494291886591,0.006194210095629151,0.060520537367133184,0.39091564496932063,0.01738199703337171,0.007989727614232743,0.013720717527013667,0.13405828749390636,0.8659417125060936,0.28720824020328894,0.4596553318294358,0.6144052671951401,0.010098041051706573,0.7267915962952806,0.08405206988062329,0.9243344330053438,0.48829110990902336,0.5981953736309708,0.02915578159137823,0.6081885419688194,0.013054262827494433 +48101,0.5324796877809271,0.01767692257727541,0.1190026136991428,0.4142286345428198,0.051948227483226354,0.02293406246589549,0.03319736505056706,0.2234876116966604,0.7765123883033396,0.43653013886366887,0.441479210687231,1.7534488435211695,0.010098041051706573,1.407894218735449,0.08405206988062329,1.0894603955885618,0.48829110990902336,1.7773641448694184,0.02915578159137823,1.7530232962498906,0.013054262827494433 +48103,0.49024409619576426,0.010964785972702597,0.08692233933329464,0.4051838547942282,0.03240777112800066,0.014307467679494828,0.02236597249775781,0.17730420418685638,0.8226957958131436,0.37283592890587586,0.44148261918367543,1.0863234572016551,0.010098041051706573,1.0310225264925426,0.08405206988062329,1.0032765879671652,0.48829110990902336,1.1056335847595657,0.02915578159137823,1.0933653387792805,0.013054262827494433 +48105,0.4800177186694979,0.010625831776586183,0.08170200048172763,0.4005990540239598,0.03173698017507251,0.013894064679761495,0.022136332396309494,0.17020621802917477,0.8297937819708252,0.3884480182608304,0.43778786145111714,1.0528129552711953,0.010098041051706573,0.9664907890855345,0.08405206988062329,0.9823322736500295,0.48829110990902336,1.079816825499461,0.02915578159137823,1.0604359456219306,0.013054262827494433 +48107,0.497051165980009,0.012196938711905296,0.09212411381325514,0.40702504924472693,0.03596783998898531,0.015873825500568317,0.02453859792855983,0.18534130914192504,0.814658690858075,0.3904280703518706,0.4413338556173924,1.2079096235793403,0.010098041051706573,1.0916957523071233,0.08405206988062329,1.0170137939299266,0.48829110990902336,1.2276590306150665,0.02915578159137823,1.2122484330169745,0.013054262827494433 +48109,0.47302914419658826,0.008669396910890654,0.07424021655425728,0.4000901917898532,0.02306907104161736,0.010777938532241158,0.018327405440557172,0.15694639001651758,0.8430536099834824,0.3107355031050818,0.46720297114684006,0.8615076213565326,0.010098041051706573,0.8896138121086477,0.08405206988062329,0.96925760629902,0.48829110990902336,0.799370297447251,0.02915578159137823,0.8273163746001959,0.013054262827494433 +48111,0.46935303249484245,0.007539619753659209,0.06975878548332393,0.40036861892138015,0.021517386226878377,0.00970488693480952,0.01606385648257649,0.1486275375968525,0.8513724624031476,0.30845414061892146,0.4510253630474268,0.7462453232375714,0.010098041051706573,0.8338089748518964,0.08405206988062329,0.9610854129359805,0.48829110990902336,0.7399913277559995,0.02915578159137823,0.7433294566731243,0.013054262827494433 +48113,0.46472500651077686,0.007311440447997777,0.06818896218125702,0.39712252276677296,0.0209273049800889,0.009467337182333953,0.015732831987874157,0.14672970299840263,0.8532702970015974,0.30690164963151695,0.45239160949494295,0.7243802658166303,0.010098041051706573,0.8159824478495254,0.08405206988062329,0.9512494037937033,0.48829110990902336,0.718045142801987,0.02915578159137823,0.7233876566947817,0.013054262827494433 +48115,0.4826715026783648,0.0108707787537192,0.08497961595614772,0.40037982148405654,0.03261104301670296,0.014279810941301471,0.022522106014953823,0.17606097622211422,0.8239390237778857,0.38375135789659637,0.43788268084487625,1.0763112246516793,0.010098041051706573,1.0063842589614556,0.08405206988062329,0.9886154955964581,0.48829110990902336,1.1100976202532375,0.02915578159137823,1.089102497410132,0.013054262827494433 +48117,0.46966793314735583,0.00907431805387712,0.07431685307800759,0.39664786941305874,0.025882156080408114,0.011626472649736269,0.01932071025813487,0.15823275943067433,0.8417672405693257,0.34826765408433796,0.4492080417727293,0.8986209057162939,0.010098041051706573,0.8835738668831042,0.08405206988062329,0.9617552468874566,0.48829110990902336,0.8878886015293708,0.02915578159137823,0.888339667256556,0.013054262827494433 +48119,0.515986889859027,0.014120010317939934,0.10360489850628063,0.41370828892221,0.04051485461290019,0.018047935255906155,0.027365056352105514,0.20078978854402013,0.7992102114559798,0.39105153517856245,0.4454646432363002,1.4008660842989984,0.010098041051706573,1.2317395086797993,0.08405206988062329,1.0565066737347135,0.48829110990902336,1.3866796787574536,0.02915578159137823,1.3865183620370525,0.013054262827494433 +48121,0.4593917743886807,0.006062835816051168,0.06301320774084573,0.39640794377884236,0.016951701171482883,0.007832464338418837,0.013197528023045411,0.13716659995642788,0.8628334000435721,0.26901822299223527,0.46204591852970217,0.601511610858229,0.010098041051706573,0.7555009914026197,0.08405206988062329,0.9403529546661265,0.48829110990902336,0.5839104872897718,0.02915578159137823,0.597791161472544,0.013054262827494433 +48123,0.516213624676297,0.013343303270571715,0.10222322896567104,0.4156332815747089,0.03936723872915814,0.017415083706826737,0.025848413588345186,0.1980250502488623,0.8019749497511377,0.38511049912518985,0.44237503744269224,1.3221600582727024,0.010098041051706573,1.211590103020293,0.08405206988062329,1.0568808486911219,0.48829110990902336,1.3439036649970615,0.02915578159137823,1.3312910275642442,0.013054262827494433 +48125,0.5142975468488875,0.013595066268792384,0.10247182629334844,0.4129477599738323,0.039265026027165584,0.01750661327883553,0.026434242885445703,0.19924618913933306,0.8007538108606669,0.383178747246689,0.44585767666939896,1.3490945733573398,0.010098041051706573,1.2190625748054718,0.08405206988062329,1.0529544418012637,0.48829110990902336,1.344653947319399,0.02915578159137823,1.3423199719139687,0.013054262827494433 +48127,0.4864586366251419,0.010305174800872428,0.08351148139148382,0.4052626901958719,0.030358854327731097,0.013455145953222537,0.021184072036146105,0.17167231724130447,0.8283276827586955,0.3635291078769796,0.4432033504285444,1.0209076836928077,0.010098041051706573,0.9912626186390883,0.08405206988062329,0.9960241232702656,0.48829110990902336,1.0377156395286136,0.02915578159137823,1.0267913346788977,0.013054262827494433 +48129,0.5095652621071942,0.014414304529139887,0.10254696737866326,0.40740159690203975,0.04173478223701396,0.01852109201730537,0.02828745521139476,0.20124403095023197,0.7987559690497681,0.40698212052341626,0.4437807273588524,1.429395943210435,0.010098041051706573,1.2175650804846012,0.08405206988062329,1.0430642506987797,0.48829110990902336,1.4277181304897368,0.02915578159137823,1.4220140605607259,0.013054262827494433 +48131,0.4900323734928268,0.010786971366227244,0.08631500777700465,0.4055667985079223,0.031044726613991328,0.013892803668587665,0.022012772930368744,0.17614143972116192,0.8238585602788381,0.3596677728882973,0.44750929332798234,1.068525065811341,0.010098041051706573,1.0252802303188564,0.08405206988062329,1.0036423127402467,0.48829110990902336,1.0637541289268664,0.02915578159137823,1.0650729076164343,0.013054262827494433 +48133,0.51000843316433,0.013834415841272665,0.10118459521648657,0.40978928695062505,0.04022076841622969,0.01786773452035637,0.02712585702835834,0.1983978864598183,0.8016021135401817,0.3974989308419578,0.4442415006956075,1.3727464414647899,0.010098041051706573,1.2024316834367434,0.08405206988062329,1.0438804470328313,0.48829110990902336,1.376580323705448,0.02915578159137823,1.367965001390466,0.013054262827494433 +48135,0.4686557158829274,0.008305656846308145,0.07210229740286907,0.39796712588909455,0.02362882301625917,0.010676566321724026,0.017722299258978717,0.15384917959878375,0.8461508204012163,0.3277124844473949,0.45184503326202075,0.8227663588592676,0.010098041051706573,0.8608928655018029,0.08405206988062329,0.9598801330254253,0.48829110990902336,0.8112821106160542,0.02915578159137823,0.8162460612852338,0.013054262827494433 +48137,0.5138575934118476,0.013179951620464848,0.10114499242571134,0.4146927027819778,0.038848564969579814,0.017223888551803988,0.025649035432081968,0.19683467505878707,0.803165324941213,0.3840878726459265,0.44335971136362623,1.3055022563748961,0.010098041051706573,1.19672056746903,0.08405206988062329,1.0529727347055235,0.48829110990902336,1.3270717278810915,0.02915578159137823,1.3153405731977565,0.013054262827494433 +48139,0.4752427710806003,0.008198245604766397,0.07376266687416087,0.402542389910869,0.02310991807357512,0.010570579073551675,0.01725064767660819,0.15521049737682566,0.8447895026231743,0.31330101056406545,0.45740443734582226,0.8128812792127758,0.010098041051706573,0.8812081896081638,0.08405206988062329,0.9730093607637578,0.48829110990902336,0.7935947099955452,0.02915578159137823,0.804551799570864,0.013054262827494433 +48141,0.46621792552131536,0.008159820559721651,0.07078484793650629,0.39617923933195226,0.02334519719552179,0.010510794535542226,0.017502159640467505,0.1518278128352875,0.8481721871647125,0.3298050059592179,0.45023370106972005,0.8080127884614994,0.010098041051706573,0.8451023064603511,0.08405206988062329,0.9545338774600405,0.48829110990902336,0.8016829372941249,0.02915578159137823,0.8040776995140944,0.013054262827494433 +48143,0.47549108361292,0.009764166834536382,0.0792071144237276,0.39836531834978495,0.02815691601511415,0.012603492604223596,0.020534910476859826,0.1665795998147617,0.8334204001852383,0.35548468366724584,0.44761623032359993,0.9667655698455606,0.010098041051706573,0.9407750198279569,0.08405206988062329,0.9740032122774119,0.48829110990902336,0.9657978099141553,0.02915578159137823,0.9633028003347572,0.013054262827494433 +48145,0.49921987214410407,0.012132758361934483,0.09332103467832949,0.4075644550141073,0.03535285223613703,0.015700711438053464,0.024303436299170915,0.18693373378251973,0.8130662662174802,0.37883047865891784,0.4441144192039048,1.2037538259239415,0.010098041051706573,1.1071840751299122,0.08405206988062329,1.0221237410183297,0.48829110990902336,1.210537757290886,0.02915578159137823,1.2043362061522702,0.013054262827494433 +48147,0.5059774013587142,0.012249565202919428,0.09595441726424625,0.4115964642426122,0.03555294380146709,0.015838754400121977,0.024209708121400986,0.1896417053539889,0.8103582946460111,0.37051909453588583,0.4454976917964355,1.2146167178706462,0.010098041051706573,1.138797212968377,0.08405206988062329,1.0364098921348393,0.48829110990902336,1.2172241507199164,0.02915578159137823,1.2142458820580286,0.013054262827494433 +48149,0.5300240132662245,0.015668216356857553,0.11295638019315218,0.41869168178298355,0.04635643437103462,0.020383407097049135,0.02956133300509085,0.21311558979576947,0.7868844102042305,0.41039235049641676,0.439710417196917,1.5533748644945153,0.010098041051706573,1.340172084102464,0.08405206988062329,1.0853113071850085,0.48829110990902336,1.5810723252075705,0.02915578159137823,1.5610188202729482,0.013054262827494433 +48151,0.5261341375385964,0.01544140172431055,0.11096049908054176,0.4166827181678917,0.04539530097742003,0.020056213285990193,0.02934879267965727,0.21089773721896513,0.7891022627810349,0.4091122638558917,0.44181254125765806,1.532114557030744,0.010098041051706573,1.317958190735244,0.08405206988062329,1.0772491283081918,0.48829110990902336,1.54850168740141,0.02915578159137823,1.5328327735326037,0.013054262827494433 +48153,0.4991122333749364,0.01271802041792574,0.0939841174389604,0.4073329299958932,0.03763085001436278,0.01652930524841057,0.025481283702320875,0.18830257235622377,0.8116974276437763,0.400395843891419,0.4392487876862132,1.2601168154698188,0.010098041051706573,1.1139874570001385,0.08405206988062329,1.021700638756848,0.48829110990902336,1.2825497862857138,0.02915578159137823,1.2655290660255094,0.013054262827494433 +48155,0.5154478983280658,0.015595612441308632,0.10835668256888736,0.4092643985617076,0.0473938558786368,0.020622565877326582,0.030256428422533857,0.210218497195078,0.789781502804922,0.437387475834786,0.4351316324659371,1.545211944836269,0.010098041051706573,1.2859108517930793,0.08405206988062329,1.0553569312636752,0.48829110990902336,1.6123911607335284,0.02915578159137823,1.5710623023890613,0.013054262827494433 +48157,0.46868904492759156,0.006686706594274325,0.06760546286273239,0.4015354700426841,0.018529624173248993,0.00857937365829832,0.014266829290425092,0.1442437445346666,0.8557562554653334,0.2740847172494322,0.4630085088657256,0.6631027826373581,0.010098041051706573,0.8082950665629247,0.08405206988062329,0.959706189839148,0.48829110990902336,0.6385741161379648,0.02915578159137823,0.6558604425681975,0.013054262827494433 +48159,0.5088817438588394,0.012775048958995266,0.09754659197361729,0.4125795108093393,0.036639047535841525,0.016399055779755534,0.025104160471787297,0.19168813413097424,0.8083118658690258,0.37560561363077677,0.4475841181109699,1.267084254609996,0.010098041051706573,1.1579641863095715,0.08405206988062329,1.0420430625998067,0.48829110990902336,1.25547841176274,0.02915578159137823,1.2591536640248835,0.013054262827494433 +48161,0.5059949370195933,0.011765036330357179,0.09416697375977065,0.4130889775037384,0.03384040919401911,0.015139597486216058,0.02325129259129644,0.18610260077784985,0.8138973992221501,0.35936600532952634,0.4473822228157868,1.1664329498176755,0.010098041051706573,1.1199682057449833,0.08405206988062329,1.0359393225866098,0.48829110990902336,1.1599047210813147,0.02915578159137823,1.1623309115059288,0.013054262827494433 +48163,0.471705616652344,0.008846181353287859,0.07534834404718531,0.3983884619343711,0.025065678298372616,0.011372626052612408,0.018753606149675472,0.1597359484119064,0.8402640515880936,0.33266395718896974,0.45371307798803007,0.8774561741654564,0.010098041051706573,0.8971719253474505,0.08405206988062329,0.9664396888457314,0.48829110990902336,0.8615003010329727,0.02915578159137823,0.8686000317891804,0.013054262827494433 +48165,0.45961529781457156,0.007462480853281361,0.06623181331243105,0.3941212754861766,0.021421617815455804,0.009588894610634289,0.016236363081831198,0.1441027172667168,0.8558972827332831,0.323433962383077,0.4476270043299836,0.737629155708587,0.010098041051706573,0.7906773901490369,0.08405206988062329,0.940964324656272,0.48829110990902336,0.7352693672149677,0.02915578159137823,0.733876434101758,0.013054262827494433 +48167,0.4857587124265683,0.00922466512889685,0.08060203785731015,0.4063341816861056,0.026245293677890687,0.011917240294597776,0.01899022064435197,0.1659301949617521,0.8340698050382479,0.32561575830567396,0.4540715162443385,0.9144658165733064,0.010098041051706573,0.9614610701655173,0.08405206988062329,0.9947046754857077,0.48829110990902336,0.9008931098494581,0.02915578159137823,0.9093825169998457,0.013054262827494433 +48169,0.4816380341821437,0.0091694590621578375,0.07947504645799829,0.4035439606025725,0.026109662038790428,0.011907299083693569,0.01903807093999178,0.16500990540116434,0.8349900945988357,0.32852654012085547,0.4560495293276187,0.9089431883816252,0.010098041051706573,0.9470551336200372,0.08405206988062329,0.9859503864231033,0.48829110990902336,0.8977869073517982,0.02915578159137823,0.9066926145190289,0.013054262827494433 +48171,0.5452188408095598,0.01784181173229768,0.12381446150003186,0.4227333631702891,0.05240894173055456,0.02312399562153685,0.03272412909613604,0.2270913112910549,0.7729086887089451,0.42328610968066177,0.4412223345478372,1.7692518231785215,0.010098041051706573,1.4681538897465134,0.08405206988062329,1.1163447993316602,0.48829110990902336,1.7891016701586129,0.02915578159137823,1.770540412250094,0.013054262827494433 +48173,0.4842895973205935,0.009965578680788133,0.08235284759440475,0.40256136185697333,0.02806816711891571,0.012689679949253355,0.020577726087705014,0.17004876431382074,0.8299512356861792,0.3408281308881264,0.45210219447145594,0.9890722072944949,0.010098041051706573,0.9821881382972493,0.08405206988062329,0.9919367955235481,0.48829110990902336,0.9655373080445684,0.02915578159137823,0.9743283397682856,0.013054262827494433 +48175,0.5247485184750357,0.013946182036765158,0.10617152109885387,0.41968967242217814,0.04035794946799277,0.01798951283981405,0.026576886919650506,0.2023283865715285,0.7976716134284715,0.38012029073612313,0.44574893117603115,1.3830959112251602,0.010098041051706573,1.2617134687430918,0.08405206988062329,1.0742558863155254,0.48829110990902336,1.381152607884234,0.02915578159137823,1.380076622687982,0.013054262827494433 +48177,0.4934367407605388,0.011568845384005403,0.08944290439484219,0.4061973258755548,0.034026035729078266,0.015041030609099006,0.023445447872759193,0.1812651896512266,0.8187348103487734,0.3804218563707599,0.4420447544597477,1.146553742502646,0.010098041051706573,1.060537279018086,0.08405206988062329,1.0099966030723766,0.48829110990902336,1.1604608585325402,0.02915578159137823,1.1487012712766833,0.013054262827494433 +48179,0.5004828930192047,0.011717308030979354,0.09232811814786981,0.4100995818376194,0.03400289435168735,0.015139393299001186,0.023412005074326753,0.18447806995138788,0.8155219300486121,0.3682831951283723,0.4452383712520611,1.1611652275415514,0.010098041051706573,1.0954206909206001,0.08405206988062329,1.0246700448853738,0.48829110990902336,1.1640956276558616,0.02915578159137823,1.1609574550992487,0.013054262827494433 +48181,0.49926081481274015,0.011634841030102695,0.09186040253616598,0.40946950484151295,0.03385285051510975,0.01506316831818443,0.02330413420181318,0.18399281459855896,0.816007185401441,0.36852495286836656,0.4449601167695227,1.1531244881024953,0.010098041051706573,1.0911665566799171,0.08405206988062329,1.022328570632233,0.48829110990902336,1.1591749464337213,0.02915578159137823,1.1538095289702777,0.013054262827494433 +48183,0.48619245507676156,0.010473877316402902,0.0843517855546472,0.4032671232817105,0.030523827595211415,0.013561556580059522,0.02154265704256816,0.17349464121430982,0.8265053587856902,0.3618634436070899,0.44429410229623567,1.0371622392354354,0.010098041051706573,1.0021572712797107,0.08405206988062329,0.9957713541876545,0.48829110990902336,1.045332518182021,0.02915578159137823,1.0387295293152912,0.013054262827494433 +48185,0.4966074615631988,0.010527658740441074,0.0878262276333392,0.41037079805223015,0.03009698416835616,0.013586197938424555,0.02119915537978946,0.1768524124806416,0.8231475875193583,0.34268788469438055,0.45141393112433587,1.0433626558868592,0.010098041051706573,1.0451991372775042,0.08405206988062329,1.0168336668121722,0.48829110990902336,1.0333053746069927,0.02915578159137823,1.0387936981358312,0.013054262827494433 +48187,0.4830251101731763,0.009161693684100693,0.07925840078159065,0.40490102596283595,0.025960335253846153,0.011846609651739391,0.018967323832949395,0.16408753729837064,0.8359124627016293,0.3275404877949034,0.45633500245279984,0.9090214376341196,0.010098041051706573,0.945129643392834,0.08405206988062329,0.9893074413889771,0.48829110990902336,0.8913382697325111,0.02915578159137823,0.9012474342923045,0.013054262827494433 +48189,0.47411025531629336,0.009408577250376915,0.07717422502456417,0.3988419846681637,0.027392334863926494,0.012168276737049111,0.01984470309358773,0.16277695780505508,0.8372230421949449,0.35494149575467265,0.4442219620012661,0.9319066799878983,0.010098041051706573,0.9187591080219153,0.08405206988062329,0.9711091092363536,0.48829110990902336,0.9389522200717579,0.02915578159137823,0.9329802855827634,0.013054262827494433 +48191,0.5189308752992212,0.015188386109070667,0.10751687255087103,0.41235641690682684,0.04486918477869129,0.019729089019190856,0.02926861135466815,0.20718919931074756,0.7928108006892525,0.41732226500042285,0.43970241751662814,1.5064594346475517,0.010098041051706573,1.2760972199531264,0.08405206988062329,1.061866042241387,0.48829110990902336,1.5286193531052907,0.02915578159137823,1.508069809628759,0.013054262827494433 +48193,0.5312923137627903,0.016476935671454713,0.11607819363635577,0.4168824716663532,0.04939987922709525,0.021736898346652996,0.031012938159710103,0.21848272717188602,0.781517272828114,0.42557415548567923,0.4400192609120907,1.632596500433229,0.010098041051706573,1.3730261398470374,0.08405206988062329,1.0873822720373925,0.48829110990902336,1.6856954485600444,0.02915578159137823,1.6527104077670352,0.013054262827494433 +48195,0.4860743336117933,0.010818965416570986,0.08492025281533057,0.4029908906620773,0.03156617416347403,0.013989018013321305,0.0222578413803096,0.17470630918593766,0.8252936908140623,0.37171549915328816,0.44316482386732603,1.0719189097055706,0.010098041051706573,1.0096451643037625,0.08405206988062329,0.995267512522284,0.48829110990902336,1.0790732932820952,0.02915578159137823,1.071096044582714,0.013054262827494433 +48197,0.5260525793392244,0.015406807758329,0.11039402505482633,0.41759925585649915,0.0456402581856559,0.020078352222571927,0.029287581438497114,0.20985359523090344,0.7901464047690966,0.4134305109627901,0.43992635056745305,1.5276658992021432,0.010098041051706573,1.3094500156672593,0.08405206988062329,1.0773432119967987,0.48829110990902336,1.5557157704903772,0.02915578159137823,1.5325232481505187,0.013054262827494433 +48199,0.49085306941278206,0.010171299267175252,0.08484950714750686,0.4077401088361776,0.029219790326737233,0.013111895415260505,0.020721678035635783,0.1728613151976703,0.8271386848023297,0.3443719511056206,0.4487333847588432,1.0076816929264871,0.010098041051706573,1.0096469447224479,0.08405206988062329,1.0050854360124033,0.48829110990902336,1.003424030348012,0.02915578159137823,1.0059693735227915,0.013054262827494433 +48201,0.46381626858392067,0.006976610288593239,0.06666155244749142,0.39742910533892517,0.01970569785016894,0.009011842877818976,0.015041754162469454,0.1437240497212745,0.8562759502787255,0.29560814482517345,0.45732168159381964,0.6917517756895273,0.010098041051706573,0.7999856514510837,0.08405206988062329,0.949522664830542,0.48829110990902336,0.6773422682081718,0.02915578159137823,0.6872678966338979,0.013054262827494433 +48203,0.491920547870515,0.010354540527405361,0.08551936829312277,0.4083126625243546,0.02936382685440011,0.013318263900599526,0.02104921327687844,0.17384792862044354,0.8261520713795565,0.3433587904175558,0.45356022451153405,1.026465521421387,0.010098041051706573,1.018446055477651,0.08405206988062329,1.0073070131508153,0.48829110990902336,1.0081346403515168,0.02915578159137823,1.0162773558022087,0.013054262827494433 +48205,0.49768011926831446,0.009936689935238507,0.0868699896072516,0.4113750201561529,0.028638477408194047,0.012939035611838593,0.019966017428719784,0.17454984887675884,0.8254501511232412,0.32967055179437255,0.4518059891038926,0.9849614470595754,0.010098041051706573,1.034544441629623,0.08405206988062329,1.0189885576290063,0.48829110990902336,0.9830337668317441,0.02915578159137823,0.9887840090249187,0.013054262827494433 +48207,0.5274761768358209,0.01641148157341445,0.11460258563769389,0.4150547858464754,0.04893339414518802,0.0214463033113296,0.03111321855683084,0.21726589876563165,0.7827341012343684,0.4269833343890398,0.4382754085624484,1.6280565286746511,0.010098041051706573,1.3559346502799228,0.08405206988062329,1.0802361284198798,0.48829110990902336,1.6660159929283918,0.02915578159137823,1.6367752903915287,0.013054262827494433 +48209,0.45956428051223497,0.007103193242636479,0.06639393339190222,0.39313765520468535,0.019975985416775248,0.009158415205116639,0.01545636496099999,0.14447148354937175,0.8555285164506282,0.30087064278694525,0.4584712600673842,0.7046056584378853,0.010098041051706573,0.7953357801948526,0.08405206988062329,0.9412119456378347,0.48829110990902336,0.6866491922049092,0.02915578159137823,0.6977805317743481,0.013054262827494433 +48211,0.5041346374815383,0.011361911098402084,0.09185188898868824,0.4131586120358551,0.0320892614833276,0.014570110384375343,0.022537453794410554,0.18219713973145102,0.817802860268549,0.34935875393133686,0.45404941437949375,1.1267956682856666,0.010098041051706573,1.0957072387107938,0.08405206988062329,1.0320215170975877,0.48829110990902336,1.101484134061892,0.02915578159137823,1.1124073114684778,0.013054262827494433 +48213,0.5151305060424374,0.013472591282185836,0.10154671652515457,0.41517421927406817,0.03870283957040327,0.017254620002582162,0.026153743806964405,0.19712813614029873,0.8028718638597012,0.3811333433003324,0.4458231022350378,1.3350636082145724,0.010098041051706573,1.2066731323255326,0.08405206988062329,1.0552407513641198,0.48829110990902336,1.3247855465392586,0.02915578159137823,1.3272797941343222,0.013054262827494433 +48215,0.4543345244990197,0.007387156727093714,0.06421761091283958,0.39064368873904065,0.021058025902294747,0.009487765704424798,0.016259289859689396,0.1413443342956389,0.8586556657043611,0.32791668209015284,0.4505534254942146,0.7305263886144427,0.010098041051706573,0.7665533272408702,0.08405206988062329,0.9300425387997808,0.48829110990902336,0.7239714934914487,0.02915578159137823,0.7249827143194311,0.013054262827494433 +48217,0.50734135379331,0.012806771239459603,0.09732611311985194,0.4121138333723931,0.03706121261020883,0.016521774162977565,0.02524290823861573,0.19183556079582353,0.8081644392041765,0.3807941303950967,0.44579691271155275,1.2699595446588667,0.010098041051706573,1.1553323375562607,0.08405206988062329,1.0389532158347246,0.48829110990902336,1.2696727072221954,0.02915578159137823,1.2659127160393338,0.013054262827494433 +48219,0.4799325258460165,0.009636521503778007,0.07933743786071525,0.4023670329268473,0.027058126405977993,0.012294779083486343,0.020078908981613446,0.16530956663306082,0.8346904333669392,0.341051175026363,0.4543839768879947,0.9563771433629533,0.010098041051706573,0.9448999539522955,0.08405206988062329,0.9829709144894496,0.48829110990902336,0.9294910900017594,0.02915578159137823,0.9403497140373722,0.013054262827494433 +48221,0.526118803204237,0.014460340566792119,0.10769486684373705,0.4193494472210539,0.04081829153833251,0.018444062333357356,0.027484933970661905,0.20469685969754323,0.7953031403024567,0.3790179860434665,0.45185777351892625,1.4330680433458465,0.010098041051706573,1.2822389879750062,0.08405206988062329,1.0779760022781364,0.48829110990902336,1.398193071000438,0.02915578159137823,1.4093863162435172,0.013054262827494433 +48223,0.4986526004241686,0.011552631829165542,0.09127713763879372,0.4092310114295987,0.033447270794715885,0.014911408809995846,0.02316769594571157,0.18304755166452696,0.8169524483354731,0.3664364556114263,0.44581840179174204,1.1447569325807578,0.010098041051706573,1.0837680566537298,0.08405206988062329,1.0206535182859222,0.48829110990902336,1.1453852918824814,0.02915578159137823,1.1434362426510702,0.013054262827494433 +48225,0.5123678269284788,0.013779779615381946,0.10205780107066345,0.41230175445717054,0.04080682780309458,0.017969746096600084,0.026894310866449972,0.1991885432824213,0.8008114567175787,0.3998403588456749,0.44036125972128004,1.3656861450411006,0.010098041051706573,1.2111181591115938,0.08405206988062329,1.0491401516709122,0.48829110990902336,1.3900954746967988,0.02915578159137823,1.3720893247310597,0.013054262827494433 +48227,0.4937229025466115,0.010233278563907346,0.08620218806870467,0.4089273630364718,0.029500196452969394,0.013248990036586377,0.020726764975099045,0.1745962920173963,0.8254037079826038,0.3422209704173311,0.449115315476239,1.0137059100322656,0.010098041051706573,1.0252127639689483,0.08405206988062329,1.0109663083891467,0.48829110990902336,1.0126959612661488,0.02915578159137823,1.014418636969049,0.013054262827494433 +48229,0.49097576324135345,0.01127810302949385,0.08692799749429625,0.4053007524205726,0.03197751979330023,0.014388525895180785,0.022970793822972825,0.1770515043765292,0.8229484956234708,0.367862147007337,0.4499575322972796,1.1176894915994753,0.010098041051706573,1.0335856249817525,0.08405206988062329,1.004940156116233,0.48829110990902336,1.0973855193844027,0.02915578159137823,1.1018472671741257,0.013054262827494433 +48231,0.4914503811565674,0.010473518824116502,0.0857883522045938,0.4072962255761158,0.029879198578669157,0.013486502100988791,0.021311447148475857,0.17456157425842578,0.8254384257415742,0.3482896898102349,0.45136759828012396,1.038301347513591,0.010098041051706573,1.020872982981825,0.08405206988062329,1.0064757922456962,0.48829110990902336,1.0266679309204507,0.02915578159137823,1.0314815666869388,0.013054262827494433 +48233,0.49786969526834773,0.011647673221512328,0.09097092232084922,0.4086844955985839,0.03373466925152771,0.01502674798473234,0.02339502350154959,0.18272034467134343,0.8172796553286565,0.3708291439823757,0.4454393156397061,1.1541717143960017,0.010098041051706573,1.0805357932248063,0.08405206988062329,1.0191886656812152,0.48829110990902336,1.1556387968114952,0.02915578159137823,1.1514789693768677,0.013054262827494433 +48235,0.520243111199683,0.011867259965975999,0.0991022495893871,0.4212958163657432,0.03370354817678446,0.015303331858143528,0.02281098915199481,0.19049219000873813,0.8095078099912618,0.3400886288296102,0.45405699654746456,1.1755576483326147,0.010098041051706573,1.1791368132946949,0.08405206988062329,1.0658956853348223,0.48829110990902336,1.158129979409287,0.02915578159137823,1.1701373115982077,0.013054262827494433 +48237,0.49821115572010233,0.0111760434537277,0.09031233103374259,0.4093614149390162,0.031871367954300525,0.014373643869223494,0.02243234284381713,0.1812732011253488,0.8187267988746512,0.3529016202936088,0.450989235536845,1.1082345661944504,0.010098041051706573,1.074508868845974,0.08405206988062329,1.0202709745378393,0.48829110990902336,1.0929413116254483,0.02915578159137823,1.0981789367322832,0.013054262827494433 +48239,0.5003238050898046,0.011949123726613643,0.09278753997070063,0.4093854727558608,0.03504610001834661,0.015533575182724302,0.023882780721314792,0.18545497741017125,0.8145450225898287,0.37770265306541223,0.4432326328633567,1.1838652832299676,0.010098041051706573,1.1008818953516637,0.08405206988062329,1.0237391857519835,0.48829110990902336,1.1966810891241244,0.02915578159137823,1.1866296986904206,0.013054262827494433 +48241,0.5051604144805408,0.012202618783570155,0.09449594060872471,0.4123901954750816,0.03444661094764696,0.015568079434327559,0.02415592836211874,0.1870612540095712,0.8129387459904288,0.3645300605057583,0.4519480728594291,1.209918652528875,0.010098041051706573,1.1237819817275927,0.08405206988062329,1.0346532933322967,0.48829110990902336,1.1805201044511615,0.02915578159137823,1.1904994368801263,0.013054262827494433 +48243,0.5335886877490355,0.015481154101927002,0.11264818172868699,0.420862762757536,0.04338965317859564,0.019653746318618465,0.02901327268993436,0.21111426144339324,0.7888857385566068,0.38517846016458185,0.45295928588601325,1.5353576610131394,0.010098041051706573,1.340643437495193,0.08405206988062329,1.092716520530443,0.48829110990902336,1.4872399708841146,0.02915578159137823,1.5026480821512531,0.013054262827494433 +48245,0.48632323652195414,0.010117864544157553,0.08372487311514601,0.4039705220796843,0.029457231703331095,0.013122406045998444,0.02080481413250506,0.1721588993236732,0.8278411006763268,0.3518336977688679,0.4454731584473544,1.0018532919339211,0.010098041051706573,0.9954165311229353,0.08405206988062329,0.9958542778903117,0.48829110990902336,1.0103812027873122,0.02915578159137823,1.005417667338782,0.013054262827494433 +48247,0.4883793344376053,0.011802663963492322,0.08831461228155957,0.4013438027960805,0.033501922944625916,0.015034482161658484,0.02416700120426618,0.18083200097575491,0.8191679990242451,0.3793474497495048,0.44876475259370696,1.1696404835460967,0.010098041051706573,1.0489825155357466,0.08405206988062329,1.0005336455968195,0.48829110990902336,1.14792068923557,0.02915578159137823,1.1508606692163585,0.013054262827494433 +48249,0.4804818662397774,0.009840592472101867,0.0802077771772861,0.40185945648701615,0.028361975548178608,0.01267625788072048,0.02048067401401381,0.16693195479985,0.83306804520015,0.35360630285875055,0.4469455189814711,0.9742856321654896,0.010098041051706573,0.9547498726923045,0.08405206988062329,0.9837788234469635,0.48829110990902336,0.9725744021335434,0.02915578159137823,0.9711205840557589,0.013054262827494433 +48251,0.48152452559140024,0.008862222726184924,0.0779152566667293,0.4047712204369561,0.02510132930311039,0.011461163341344442,0.018404509542479675,0.16180952895604872,0.8381904710439513,0.32216192793251675,0.45659587199329127,0.8793517940297024,0.010098041051706573,0.9297307904301015,0.08405206988062329,0.9861910448150865,0.48829110990902336,0.8618698289965563,0.02915578159137823,0.8717218003736703,0.013054262827494433 +48253,0.49439490661553454,0.010314905794705068,0.08755570145180594,0.4078009303759932,0.02993570814780444,0.013396568877134356,0.020863697535473277,0.17709668987325045,0.8229033101267496,0.3419047263790379,0.4475113403361027,1.0225391824215548,0.010098041051706573,1.040947598176471,0.08405206988062329,1.0122355106753953,0.48829110990902336,1.0271767726626644,0.02915578159137823,1.0268228640238113,0.013054262827494433 +48255,0.4934235747932595,0.010223109398747711,0.08843034169651999,0.40646008727231797,0.03047595918577224,0.013521773647031093,0.020718729142666342,0.1792179097514171,0.820782090248583,0.34463238070888924,0.4436865650267624,1.0130805552970958,0.010098041051706573,1.0507340103504905,0.08405206988062329,1.010840063312549,0.48829110990902336,1.04315143941484,0.02915578159137823,1.0328813560361172,0.013054262827494433 +48257,0.47750428753568813,0.008186782698891854,0.07444124903051583,0.4041061872803454,0.023033238112932952,0.010557693284318794,0.017144940710673687,0.15589650391349036,0.8441034960865097,0.30941498715975196,0.4583677393753311,0.8118458916689866,0.010098041051706573,0.8892418875689261,0.08405206988062329,0.9777163153715582,0.48829110990902336,0.7916643493085971,0.02915578159137823,0.8040028273106106,0.013054262827494433 +48259,0.512420660766882,0.012357792016692907,0.098099287462075,0.4155150998033724,0.03562862918688283,0.0159672174228134,0.024116498343759986,0.19144288076765076,0.8085571192323493,0.3631894798487379,0.44815693972003706,1.224633126433511,0.010098041051706573,1.1647458746432031,0.08405206988062329,1.0494630809737329,0.48829110990902336,1.2204326423828573,0.02915578159137823,1.2227906710291019,0.013054262827494433 +48261,0.5543324603077169,0.017915555539012987,0.12658041379489438,0.42932890256378997,0.05088427573292871,0.0227965595281156,0.032319152894398136,0.22834746809636225,0.7716525319036378,0.40199170003804435,0.4480079395797173,1.7768171977019542,0.010098041051706573,1.5003210613507094,0.08405206988062329,1.1349369878840636,0.48829110990902336,1.7418380959126263,0.02915578159137823,1.7494874926728738,0.013054262827494433 +48263,0.5360471405717373,0.01697020390405152,0.1189388774371295,0.4184064007312672,0.05064731940948604,0.022245217590171097,0.031658043891347756,0.22188137653392132,0.7781186234660786,0.4258264454888433,0.4392180642437842,1.6825253437346015,0.010098041051706573,1.4100096797613564,0.08405206988062329,1.0974527732924377,0.48829110990902336,1.7269163078371372,0.02915578159137823,1.6958649688736602,0.013054262827494433 +48265,0.53419775627109,0.017082505547067747,0.11851391612955778,0.41741345011422054,0.0508769085441449,0.022299025903498748,0.031977868395236884,0.22185401330928722,0.7781459866907128,0.42929058633525335,0.4382936491542193,1.6940947268519053,0.010098041051706573,1.4027370217143609,0.08405206988062329,1.093597519580531,0.48829110990902336,1.7318985611740012,0.02915578159137823,1.7026587641271633,0.013054262827494433 +48267,0.5487914483230293,0.015541460997240769,0.11886077078202789,0.4306469668252637,0.04406421384432717,0.019960685874875334,0.02831942998516399,0.21658641209741325,0.78341358790258675,0.37072125272630163,0.45299085433348935,1.5416759498854207,0.010098041051706573,1.413498030411414,0.08405206988062329,1.1238158271782823,0.48829110990902336,1.5117766127697005,0.02915578159137823,1.5251977544206998,0.013054262827494433 +48269,0.5102186608139077,0.010296758568646577,0.09146825968021362,0.4187841784094116,0.026713829265048655,0.012821229334942131,0.020181070116528175,0.1792726662217768,0.8207273337782233,0.2920557290413538,0.47994726655369224,1.0219661331329304,0.010098041051706573,1.0915592966154875,0.08405206988062329,1.0445596890622513,0.48829110990902336,0.9250293871303243,0.02915578159137823,0.9817258465264564,0.013054262827494433 +48271,0.5303662700830172,0.01613377608705923,0.11299621615575059,0.4181802965816023,0.04564786525842185,0.020512926968793796,0.030420064391602133,0.21305317198633977,0.7869468280136602,0.4039769366746069,0.4493731930872549,1.5980562759250645,0.010098041051706573,1.3408517803163993,0.08405206988062329,1.0857928522459477,0.48829110990902336,1.5648072367775896,0.02915578159137823,1.5712602314117519,0.013054262827494433 +48273,0.4663676422083616,0.008945430857839859,0.07371007217476017,0.3938585863263274,0.025906607139185776,0.011557802335290508,0.019181071001155053,0.15805142875205808,0.841948571247942,0.35146631084234276,0.4461333849390268,0.8856910469879118,0.010098041051706573,0.8787814420523421,0.08405206988062329,0.9556751476507578,0.48829110990902336,0.8874936538093208,0.02915578159137823,0.8843980026096528,0.013054262827494433 +48275,0.5191953178399429,0.01566448508237823,0.10959583661667097,0.4116855063769653,0.04787356567790271,0.02078776612080125,0.030170697893711105,0.21108787550826313,0.7889121244917369,0.4368192000335578,0.4342222231922947,1.5513381875728753,0.010098041051706573,1.300874679008344,0.08405206988062329,1.0630211094703352,0.48829110990902336,1.626494841757983,0.02915578159137823,1.5813593474659353,0.013054262827494433 +48277,0.5016123006874672,0.012008384088891589,0.09336299607712309,0.4099810526567669,0.03453232122413872,0.015435448832464924,0.02393957259906489,0.1861258106094442,0.8138741893905558,0.3698716051872744,0.4469855568723039,1.190457260796098,0.010098041051706573,1.1091219245562352,0.08405206988062329,1.0270383758907824,0.48829110990902336,1.1833776242091762,0.02915578159137823,1.1842969614458807,0.013054262827494433 +48279,0.49251146594291034,0.011643181165185186,0.08910361766151506,0.4054473046252114,0.034274468919692117,0.015139902680332395,0.02364042660995594,0.1809168391459206,0.8190831608540794,0.38465855617549943,0.4417253762795399,1.1539150374451133,0.010098041051706573,1.056524005601204,0.08405206988062329,1.0079296690296968,0.48829110990902336,1.1685497126875104,0.02915578159137823,1.1563852581895597,0.013054262827494433 +48281,0.5005832575205205,0.011441736098575461,0.09173523633757469,0.41097279216485116,0.033437655485979906,0.014848299186621899,0.022856809385212867,0.18325670097708807,0.816743299022912,0.36450176421776836,0.44405921918920577,1.13279012707018,0.010098041051706573,1.0877945940618403,0.08405206988062329,1.024746990517928,0.48829110990902336,1.1434366584531168,0.02915578159137823,1.1374935585154864,0.013054262827494433 +48283,0.47813065500545116,0.009750389835533432,0.0798753857321479,0.39972997567416074,0.027869601572111345,0.012514921910776862,0.020392731010778358,0.16705765442133647,0.8329423455786635,0.348913514678584,0.4490527745219128,0.966424525250228,0.010098041051706573,0.9480542408056339,0.08405206988062329,0.9792341806921596,0.48829110990902336,0.9553337896320178,0.02915578159137823,0.956764966252319,0.013054262827494433 +48285,0.5231494352711128,0.01510211540599652,0.10925301086819025,0.416107904486655,0.04499041499816468,0.01979034107674605,0.028867689397715054,0.208837099884418,0.791162900115582,0.4118002299492136,0.43987905151693685,1.4967681472063403,0.010098041051706573,1.295395021764053,0.08405206988062329,1.071241735456233,0.48829110990902336,1.5336516645424827,0.02915578159137823,1.5083191090041908,0.013054262827494433 +48287,0.4996319317333623,0.011601701448255291,0.09190924587785088,0.4091084100292379,0.0338294233441422,0.01505326039534899,0.023220496352196224,0.18395390694704422,0.8160460930529558,0.36807421300248877,0.44497537667769815,1.1489859877735933,0.010098041051706573,1.0916794492806858,0.08405206988062329,1.0230240873993077,0.48829110990902336,1.1574199567884011,0.02915578159137823,1.1513489655953024,0.013054262827494433 +48289,0.5271820666807187,0.015373741708923631,0.11066271983318915,0.41729441997007877,0.044287184802074844,0.019727567475929852,0.029162110550764522,0.20991366517824034,0.7900863348217597,0.4001996776225317,0.44544640992862616,1.5245311921721805,0.010098041051706573,1.315425853242095,0.08405206988062329,1.0792451101982206,0.48829110990902336,1.5166589855800647,0.02915578159137823,1.5157842997807123,0.013054262827494433 +48291,0.48280655280913415,0.009002265554758656,0.0786227141169909,0.40536057265826053,0.025417232668238136,0.011626320357637169,0.01864569878428614,0.16284516782039718,0.8371548321796028,0.323281038484848,0.4574188114572222,0.8935592373258971,0.010098041051706573,0.9390480162400441,0.08405206988062329,0.988761259226161,0.48829110990902336,0.8729103579716286,0.02915578159137823,0.8847144365237118,0.013054262827494433 +48293,0.5003494067043782,0.011525284279852263,0.09184700808409944,0.4102497086743413,0.03331116416066539,0.014859909009688286,0.023034471761973638,0.1835657379691178,0.8164342620308822,0.3626809937038354,0.44609395630895476,1.1420716241203142,0.010098041051706573,1.0903823788578808,0.08405206988062329,1.0244759038228477,0.48829110990902336,1.1406656449244714,0.02915578159137823,1.1407744381452385,0.013054262827494433 +48295,0.49658165144472277,0.01172837424358777,0.09128931312775854,0.40742541042859226,0.03489061948778815,0.015372725368334327,0.023618219097435417,0.1838354535697549,0.8161645464302452,0.3821982912606545,0.4405976618934737,1.1617349632895735,0.010098041051706573,1.081843661202022,0.08405206988062329,1.0162644723294418,0.48829110990902336,1.1896495762704293,0.02915578159137823,1.1721199371238047,0.013054262827494433 +48297,0.513517386699547,0.013216713997657836,0.10122761766978729,0.414106370998627,0.038458415420376556,0.017112826127029176,0.025737617342625207,0.19712597916185917,0.8028740208381409,0.3799201868587981,0.4449696104213963,1.3113833976754814,0.010098041051706573,1.202170321981649,0.08405206988062329,1.0518552780583659,0.48829110990902336,1.3169471920557942,0.02915578159137823,1.3111920110714457,0.013054262827494433 +48299,0.5703819179290951,0.020954199583496466,0.1403357662504958,0.430383504685526,0.060861490898513976,0.027025284034676356,0.03673713861683341,0.24603824532169183,0.7539617546783082,0.4336848155293338,0.4440457115935722,2.0784209029523275,0.010098041051706573,1.6637614462976558,0.08405206988062329,1.1679379862820252,0.48829110990902336,2.083704577396098,0.02915578159137823,2.0704168464839556,0.013054262827494433 +48301,0.466677858890424,0.0030816835698837634,0.06116687286874634,0.4028504762229048,0.008198495172033277,0.004028232772147698,0.0066034492770040394,0.13106872696762828,0.8689312730323717,0.13403489156010714,0.4913380672454152,0.3052486649264487,0.010098041051706573,0.7344950325695047,0.08405206988062329,0.9554213563103261,0.48829110990902336,0.28564122336795006,0.02915578159137823,0.31058656693175823,0.013054262827494433 +48303,0.46846681226511677,0.008696256426750957,0.07380637975152887,0.3962812522427078,0.025048245959593523,0.011242166354947274,0.018563228384745285,0.1575487906916233,0.8424512093083767,0.3393777888025277,0.44882050316347616,0.8611831913997429,0.010098041051706573,0.8801195162486684,0.08405206988062329,0.9597801979840028,0.48829110990902336,0.8597691141835224,0.02915578159137823,0.8593259706681662,0.013054262827494433 +48305,0.4990634750261747,0.011630435820939953,0.09076316880400098,0.4094609082624321,0.03318396030421594,0.014889535985647316,0.02330452217592154,0.18186698355202346,0.8181330164479765,0.36561042041045555,0.4486967754646101,1.1523649749759997,0.010098041051706573,1.0822533587772294,0.08405206988062329,1.0212761066891776,0.48829110990902336,1.1364165213029196,0.02915578159137823,1.1393862238402508,0.013054262827494433 +48307,0.5196737662209976,0.014696425545052221,0.10697382634073593,0.4144678081186627,0.04352055621923196,0.019151377569369465,0.028280098978100788,0.20584804024000705,0.794151959759993,0.4068336873415101,0.4400536030122329,1.4581726115556934,0.010098041051706573,1.2703998926244027,0.08405206988062329,1.0642046823610285,0.48829110990902336,1.481019332279954,0.02915578159137823,1.4628314238909277,0.013054262827494433 +48309,0.4757790988656056,0.009541233807366226,0.07852983754275306,0.39924526868865273,0.02783399541774196,0.012377008181674073,0.020053915420234464,0.16505524881187678,0.8349447511881232,0.3544384693599886,0.44467235105545483,0.9448630968270519,0.010098041051706573,0.9355125207805597,0.08405206988062329,0.9745990813826565,0.48829110990902336,0.9539130500949652,0.02915578159137823,0.9475369796959062,0.013054262827494433 +48311,0.4960719691083204,0.012527946622604966,0.09458918012963312,0.40321409082327697,0.03811759097169599,0.01658177187684463,0.025254292527601797,0.19067632525106248,0.8093236747489375,0.4029804563212872,0.4350162603181648,1.2407321325955631,0.010098041051706573,1.1226072534014948,0.08405206988062329,1.0151811015878305,0.48829110990902336,1.2944028231666842,0.02915578159137823,1.2636634333628005,0.013054262827494433 +48313,0.48339795288672005,0.010404784105686394,0.08373235826710074,0.401168882379165,0.02995922446175052,0.01339717692099939,0.021524261829310356,0.17321620368285395,0.826783796317146,0.3577974522846061,0.44718036470215733,1.030961227663345,0.010098041051706573,0.9946843485941237,0.08405206988062329,0.9904640681210715,0.48829110990902336,1.0270446975487268,0.02915578159137823,1.027637593478587,0.013054262827494433 +48315,0.5404125499556173,0.01554769128894059,0.11536810684185815,0.42648664441571976,0.04457265235422085,0.019923897407324212,0.02877004112916601,0.2134815463692193,0.7865184536307808,0.3863515972860611,0.4469982456728873,1.5413075010612043,0.010098041051706573,1.3730850129466212,0.08405206988062329,1.1062599037199594,0.48829110990902336,1.5260561331619078,0.02915578159137823,1.5312647662938104,0.013054262827494433 +48317,0.48142079987483927,0.010045941835697892,0.08208777194556732,0.40119850269751967,0.029460146585645525,0.013041402460655325,0.020867278352554888,0.17051147762395946,0.8294885223760405,0.35888593255010803,0.44267948303453986,0.9952571916468083,0.010098041051706573,0.9725664154121657,0.08405206988062329,0.9863149802472716,0.48829110990902336,1.008432997176067,0.02915578159137823,1.0015002082175588,0.013054262827494433 +48319,0.5367052246186699,0.01830004225882277,0.1224146307855409,0.41497841617744713,0.05426406620093463,0.023820295698074645,0.03409700785347299,0.22808540921604917,0.7719145907839509,0.44328088769062457,0.4389699734234876,1.8152235860379147,0.010098041051706573,1.4479966727847848,0.08405206988062329,1.0973014705553237,0.48829110990902336,1.8526558341738686,0.02915578159137823,1.8211690460923937,0.013054262827494433 +48321,0.49312382300585367,0.010698916885466923,0.08682127474778763,0.4081704696965871,0.030587602291492696,0.013752655026574242,0.021696207699419788,0.1760638417721648,0.8239361582278352,0.3523053811447537,0.44961533419699445,1.0601711939389693,0.010098041051706573,1.0327559718701487,0.08405206988062329,1.009397390598206,0.48829110990902336,1.0493686335089167,0.02915578159137823,1.0532723280421092,0.013054262827494433 +48323,0.46341114286172974,0.00831613743612365,0.07011770746814788,0.3945293542436165,0.02370108306174123,0.010660607185568858,0.017945484402400264,0.15130777183117766,0.8486922281688223,0.33801851083776285,0.4497940941263324,0.8232373463344493,0.010098041051706573,0.8363243712573674,0.08405206988062329,0.9491857510562789,0.48829110990902336,0.8143416244455844,0.02915578159137823,0.8161321649988966,0.013054262827494433 +48325,0.4903856719929298,0.010169591966236003,0.08457017496459565,0.40755067803797906,0.02908522581731482,0.013091682429024823,0.02073794677749603,0.17245645579509294,0.82754354420490706,0.3439182410287199,0.45011451900886296,1.0071289574310271,0.010098041051706573,1.0064111108235798,0.08405206988062329,1.0039445528640711,0.48829110990902336,0.9981729036243072,0.02915578159137823,1.0019076128750313,0.013054262827494433 +48327,0.5491424677591604,0.016768272878437167,0.12182984296638757,0.42745597028310944,0.04767216182909942,0.02145943267535962,0.030535378090246874,0.22185471006008403,0.7781452899399159,0.3913011842447503,0.4501459940560244,1.6627798157413354,0.010098041051706573,1.446734540623645,0.08405206988062329,1.1240216865168122,0.48829110990902336,1.6326552320496093,0.02915578159137823,1.6442744235408142,0.013054262827494433 +48329,0.47826351630397845,0.009140726201799617,0.07758732172712718,0.4018838978551671,0.02623206456762638,0.01177953905520391,0.019112321743542493,0.16222713855893123,0.8377728614410688,0.33809730744262506,0.44905116121669364,0.9046590618012539,0.010098041051706573,0.9255212841930279,0.08405206988062329,0.9796682316409535,0.48829110990902336,0.9006436469525692,0.02915578159137823,0.9017464774407893,0.013054262827494433 +48331,0.5056595018800432,0.012974907117985369,0.09739121379223226,0.41017012442858336,0.03805182309674949,0.016820033654862114,0.02565937566632217,0.19260236073905762,0.8073976392609423,0.39071104687047686,0.44202963973883647,1.2861270556221729,0.010098041051706573,1.1553923473038927,0.08405206988062329,1.035134018144039,0.48829110990902336,1.299049259314048,0.02915578159137823,1.2885093426530068,0.013054262827494433 +48333,0.5380937716044781,0.016233049102079754,0.11685342054519166,0.4229234382114326,0.0469010927345377,0.020902291997184685,0.030167695592677735,0.2171618158611282,0.7828381841388719,0.40136687925535963,0.4456674840284127,1.6103985196729667,0.010098041051706573,1.3887120963257829,0.08405206988062329,1.1022545463380164,0.48829110990902336,1.6058295240129254,0.02915578159137823,1.6025223903810164,0.013054262827494433 +48335,0.483414679633182,0.010497889581403113,0.08495961023780432,0.39966235993855337,0.031246913955678725,0.013781368444563524,0.021716116666893475,0.1757489249235712,0.8242510750764288,0.3677855144134694,0.44104734515899086,1.0400855767701236,0.010098041051706573,1.0063619493240124,0.08405206988062329,0.9896988547752061,0.48829110990902336,1.0654315376767944,0.02915578159137823,1.0511031539050357,0.013054262827494433 +48337,0.5210740342734936,0.014294599780325433,0.1054187757862079,0.41708201214966373,0.0410308087247781,0.018301630091451145,0.027432953553818216,0.20231055253633545,0.7976894474636645,0.38921727575351167,0.44604604832950734,1.4174678504144778,0.010098041051706573,1.253660842838078,0.08405206988062329,1.0673139709806887,0.48829110990902336,1.4049942910238027,0.02915578159137823,1.4069376113406142,0.013054262827494433 +48339,0.4797816500211103,0.008453153052736072,0.0760983563718209,0.40462456681605347,0.023770639737155243,0.010900487507550443,0.017618750221823062,0.15861039364150878,0.8413896063584912,0.3123673213257136,0.4585693792040517,0.8387720429104099,0.010098041051706573,0.9088139627914469,0.08405206988062329,0.9825287893319918,0.48829110990902336,0.816797021633725,0.02915578159137823,0.829717472763658,0.013054262827494433 +48341,0.466169662765877,0.008319374038578776,0.07099454465712085,0.3963182479177449,0.023964520916823932,0.0107075134679366,0.01784623647368703,0.15229336082467518,0.8477066391753248,0.33755439988472774,0.4468069069730307,0.8230720917541041,0.010098041051706573,0.8459670528514246,0.08405206988062329,0.9545245495485477,0.48829110990902336,0.8220582628542187,0.02915578159137823,0.8199700012544285,0.013054262827494433 +48343,0.514412032535394,0.013609621284953848,0.10204692396083992,0.413644620098794,0.03924762936895343,0.01751443361549821,0.026456654246355404,0.1983758495264564,0.8016241504735436,0.3846037474291194,0.4462545610296882,1.3493716746556041,0.010098041051706573,1.2126605982429899,0.08405206988062329,1.053354907261894,0.48829110990902336,1.3454223576481026,0.02915578159137823,1.3437015597977404,0.013054262827494433 +48345,0.5255611628025139,0.016628503804375284,0.11323944186113666,0.4131542997362383,0.04750217580166942,0.021189832499728584,0.0316395216794656,0.2154638696232731,0.7845361303767269,0.4194843688820051,0.44608130347965846,1.647967369633744,0.010098041051706573,1.3403907076576975,0.08405206988062329,1.0758417405291705,0.48829110990902336,1.6257365446398953,0.02915578159137823,1.625881085948586,0.013054262827494433 +48347,0.47013779711079884,0.009149922112347709,0.07576639166820139,0.3958143310774759,0.0262926742178278,0.011790714161643625,0.019462213352293645,0.1611578395394261,0.8388421604605739,0.34702291661149076,0.4484410396584501,0.9065231628491499,0.010098041051706573,0.9032420022408285,0.08405206988062329,0.9631266326769605,0.48829110990902336,0.9024758468810179,0.02915578159137823,0.9024013936358162,0.013054262827494433 +48349,0.49059160721303774,0.010616995434357988,0.08559696071802447,0.40655022280950626,0.030634937719718168,0.013676262752772544,0.0216412088553068,0.17447701807270072,0.8255229819272993,0.357897493821498,0.4464269807857263,1.0516802163628394,0.010098041051706573,1.017534097175165,0.08405206988062329,1.0041369218089942,0.48829110990902336,1.049169991387736,0.02915578159137823,1.0488790458794188,0.013054262827494433 +48351,0.5065313789736074,0.011780941066994935,0.09369497906566827,0.4139658577321555,0.033192770132945096,0.015059439027672386,0.023258067626267975,0.1849736915717322,0.8150263084282678,0.35426412881400166,0.453696361206241,1.1679007995622388,0.010098041051706573,1.1157972407458319,0.08405206988062329,1.0369050312938546,0.48829110990902336,1.1382303302876589,0.02915578159137823,1.150811054794239,0.013054262827494433 +48353,0.5013049831355538,0.012173961581789123,0.09369949572397629,0.40957848231231964,0.03547822099369124,0.01575762116133475,0.024284541329798154,0.18691115962563604,0.8130888403743639,0.3786383343855382,0.4441491348773317,1.2065473140137337,0.010098041051706573,1.1111337926630354,0.08405206988062329,1.0261767178918388,0.48829110990902336,1.2133680376983884,0.02915578159137823,1.2067486668024372,0.013054262827494433 +48355,0.48143896679153647,0.009432393341767977,0.07959966559464042,0.4030393158826766,0.026998934855482576,0.012142037158036564,0.019592085378191276,0.16533698160146465,0.8346630183985353,0.33918402362359246,0.44972282140126446,0.9344828410757149,0.010098041051706573,0.9493168717177585,0.08405206988062329,0.986049732914341,0.48829110990902336,0.9268514373475497,0.02915578159137823,0.9303218881283493,0.013054262827494433 +48357,0.4710716277843111,0.008689685423092673,0.07337602928983612,0.39925951935025933,0.02467676585685353,0.011133160210312926,0.01844663297589089,0.15576405999011408,0.8442359400098859,0.3363055495873187,0.4511596160896786,0.8608133976398833,0.010098041051706573,0.8740775765653774,0.08405206988062329,0.9645451849732536,0.48829110990902336,0.8486605501814307,0.02915578159137823,0.8518176448622693,0.013054262827494433 +48359,0.4886593382250437,0.010780941006450342,0.08507694626570855,0.4048887859794016,0.030111226612067263,0.01364657088548815,0.022062283810250986,0.17410277387665068,0.8258972261233493,0.35392933025622725,0.45320541276187004,1.0696705828031634,0.010098041051706573,1.014238617007909,0.08405206988062329,1.0005586223979335,0.48829110990902336,1.0338851424215396,0.02915578159137823,1.0468594579597847,0.013054262827494433 +48361,0.49431541021624464,0.010740702987828098,0.0874537255998443,0.4085100482183637,0.03052934550516759,0.013815788381138776,0.02172844051762303,0.1769188736430178,0.8230811263569822,0.34909142287269174,0.4525412567000569,1.0648219148497826,0.010098041051706573,1.0409293895818383,0.08405206988062329,1.0120174541735947,0.48829110990902336,1.047436983342924,0.02915578159137823,1.0545485026805408,0.013054262827494433 +48363,0.5037602088404365,0.012041939899745484,0.09392973149694703,0.4112897407387268,0.0342851743660528,0.015424354953360777,0.023904110901223855,0.1864572267689741,0.8135427732310259,0.36500875515828723,0.44988410409349067,1.1935413815008347,0.010098041051706573,1.118006447685881,0.08405206988062329,1.0317476449421703,0.48829110990902336,1.1751436489489606,0.02915578159137823,1.1802270741758065,0.013054262827494433 +48365,0.5014504959004658,0.011862885219283737,0.09296132098877197,0.41011709491152104,0.0343088337007527,0.015300337788825323,0.023657141265722135,0.1853848420706799,0.8146151579293202,0.36906568598456757,0.4459591346729355,1.1758246315999081,0.010098041051706573,1.1045469781644774,0.08405206988062329,1.026811438821401,0.48829110990902336,1.1749453957991054,0.02915578159137823,1.1731950633349202,0.013054262827494433 +48367,0.4900376475550047,0.009588291429435361,0.08284130225183556,0.4085530831412534,0.02692580759368779,0.012319015687519098,0.019566438369123702,0.16905089367146423,0.8309491063285358,0.32502878228343135,0.45751703619864836,0.9519033289749989,0.010098041051706573,0.9885461245414509,0.08405206988062329,1.0036563228562794,0.48829110990902336,0.9248363065890906,0.02915578159137823,0.9401684976387155,0.013054262827494433 +48369,0.4764016027451977,0.009518805636705466,0.07759944335881816,0.40047084661159105,0.027127835161601728,0.012187918804437082,0.019980633108399884,0.16288661270588134,0.8371133872941187,0.34958801232842873,0.4492772361610539,0.9433778330132485,0.010098041051706573,0.9237585346383173,0.08405206988062329,0.9754530931491532,0.48829110990902336,0.930968457379659,0.02915578159137823,0.9330804755996758,0.013054262827494433 +48371,0.4845341257965398,0.00919438615489015,0.08008055287973331,0.40573720527209445,0.026024185400650768,0.011900146253354199,0.018975724650508837,0.16527329782620895,0.8347267021737911,0.32497509650981615,0.45727257434373414,0.912007991660766,0.010098041051706573,0.9555922896062116,0.08405206988062329,0.992320584378646,0.48829110990902336,0.8956949270255827,0.02915578159137823,0.9064959845988223,0.013054262827494433 +48373,0.5208390747930367,0.013917720997893226,0.1047221966023332,0.4177177950590708,0.039607137248528684,0.017831578679792345,0.026721729746224672,0.20106440102241974,0.7989355989775803,0.37821148269961175,0.45021124773300164,1.37981484866591,0.010098041051706573,1.2450150726898148,0.08405206988062329,1.0671916758718014,0.48829110990902336,1.3562367493301124,0.02915578159137823,1.3635630410087485,0.013054262827494433 +48375,0.47424818111140354,0.008833951267378038,0.0754492552192466,0.40000417535128097,0.02555127255760533,0.011435232507818648,0.018627274956913104,0.1590923449457008,0.8409076550542992,0.3386550666849707,0.44754062569830616,0.8741475555701403,0.010098041051706573,0.8994843289322347,0.08405206988062329,0.9709728483979474,0.48829110990902336,0.8770444502908915,0.02915578159137823,0.8752115457152375,0.013054262827494433 +48377,0.4982566205105904,0.012316342496005144,0.09317413941864687,0.40701053516521757,0.036557639404159514,0.0160984077805104,0.024718873746993917,0.18700030382569993,0.8129996961743,0.3923582190536794,0.44035687322520967,1.2192186323152994,0.010098041051706573,1.1031908962837953,0.08405206988062329,1.019660910346909,0.48829110990902336,1.2485052461661748,0.02915578159137823,1.2285654418286676,0.013054262827494433 +48379,0.5236865368508732,0.014073068237792296,0.10546001219435394,0.41867645392863806,0.039357061638889156,0.017888879014675764,0.026873076253628784,0.20138003323233247,0.7986199667676676,0.3731941692397816,0.4545278094897095,1.3950757233254363,0.010098041051706573,1.2571074546375174,0.08405206988062329,1.0728073229367077,0.48829110990902336,1.3493989821391708,0.02915578159137823,1.3669537404222343,0.013054262827494433 +48381,0.4838747364746369,0.009797960737998775,0.08165488000334123,0.4028550115952493,0.027916341476414887,0.012608955636475069,0.02024896114515859,0.16875210431165236,0.8312478956883477,0.34188209541514947,0.4516693438188432,0.9710751924545762,0.010098041051706573,0.9731139221270781,0.08405206988062329,0.9908028274538646,0.48829110990902336,0.9589688534965115,0.02915578159137823,0.9643964749310869,0.013054262827494433 +48383,0.4635259489779879,0.006982462893175937,0.06680737873037425,0.3972459254375875,0.019507610416887276,0.008986375019307635,0.015063801516552254,0.1441286704178601,0.8558713295821399,0.2919978419691845,0.46065995922946784,0.6919025621650179,0.010098041051706573,0.7995955670069517,0.08405206988062329,0.9495179874094873,0.48829110990902336,0.6726240113950238,0.02915578159137823,0.6844564862919738,0.013054262827494433 +48385,0.5424431210327569,0.017686328651938407,0.12212950373266476,0.4212354750826625,0.05140705141135467,0.02279184074428213,0.032604945967911664,0.22514711496413212,0.7748528850358679,0.4209224621421706,0.44336020290103473,1.7526571971076077,0.010098041051706573,1.4483382065628128,0.08405206988062329,1.110102288263515,0.48829110990902336,1.759109045194457,0.02915578159137823,1.74684669014751,0.013054262827494433 +48387,0.5209241979634015,0.014093168357314605,0.10580267583562769,0.4169656164974999,0.04139323875991767,0.01832572496935858,0.02705416337427417,0.20310570376510145,0.7968942962348986,0.39123054717656797,0.44272266482090156,1.3973228102229434,0.010098041051706573,1.2560405121139286,0.08405206988062329,1.0670098700469934,0.48829110990902336,1.413514220744545,0.02915578159137823,1.4017268155698193,0.013054262827494433 +48389,0.47732811703302797,0.009894425261646286,0.0804739312070048,0.39887141866717807,0.02824722320630274,0.012692005129523405,0.020728771066636446,0.16859248038270608,0.8314075196172939,0.35101085261563536,0.449318683002139,0.9805251040337578,0.010098041051706573,0.9547622754642158,0.08405206988062329,0.9783815924688499,0.48829110990902336,0.9680520008901947,0.02915578159137823,0.9698718478743849,0.013054262827494433 +48391,0.5123566468228276,0.013286423955958132,0.1006404452002854,0.4130808145133292,0.03853901363950085,0.017163614919797683,0.025931983196370176,0.19642654355001812,0.8035734564499819,0.3829376307189822,0.44535688122037737,1.3184557758825666,0.010098041051706573,1.1961615161856356,0.08405206988062329,1.0490326377466712,0.48829110990902336,1.3209933219448056,0.02915578159137823,1.3161484062861337,0.013054262827494433 +48393,0.5232684400039187,0.012885344291753458,0.10222270268672623,0.42088050726427984,0.03457322947611788,0.016301261896803622,0.024624730457003984,0.19535422905681202,0.804645770943188,0.3382147856339868,0.4714995429647101,1.2757794721629812,0.010098041051706573,1.215234841907634,0.08405206988062329,1.0713319542228406,0.48829110990902336,1.1969893678814967,0.02915578159137823,1.2386023463835205,0.013054262827494433 +48395,0.5039813391764159,0.01248796800550499,0.09574792332893553,0.41012002613369036,0.03672506984272096,0.01625925618757873,0.024778631736469207,0.1899830725586042,0.8100169274413958,0.3835599620949946,0.44272907464058564,1.2373682185208126,0.010098041051706573,1.1352699396472383,0.08405206988062329,1.0319838513135593,0.48829110990902336,1.25383601260696,0.02915578159137823,1.2423576801111424,0.013054262827494433 +48397,0.47585581451601366,0.007954797362347454,0.07296377401754103,0.4034657244464679,0.02236709602798971,0.010259072004251713,0.016716822868788873,0.15333168533781913,0.8466683146621808,0.30655070038746207,0.4586680359137247,0.7894531169508658,0.010098041051706573,0.871491988561665,0.08405206988062329,0.974156058583644,0.48829110990902336,0.7685897706653296,0.02915578159137823,0.781574676934643,0.013054262827494433 +48399,0.51603614826013,0.013844548996341846,0.10355221766071096,0.4145281253952808,0.04113939161785649,0.018136264324490968,0.026828641836468617,0.2006685345781456,0.7993314654218544,0.39728160871117013,0.44084911349585804,1.37081576633731,0.010098041051706573,1.2267187582997758,0.08405206988062329,1.056645188857391,0.48829110990902336,1.4051537185178675,0.02915578159137823,1.383740035544669,0.013054262827494433 +48401,0.496377897678817,0.0111953691713351,0.09020154135246605,0.40807461557057656,0.03284642917526351,0.014584352727186391,0.022554125039989395,0.18171949592089062,0.8182805040791093,0.36414487693635744,0.44401638453198433,1.1085871533772735,0.010098041051706573,1.070090854220537,0.08405206988062329,1.0163591227487367,0.48829110990902336,1.1236897430379753,0.02915578159137823,1.1152638744842673,0.013054262827494433 +48403,0.5496241229188691,0.018464217531368322,0.12641528763950186,0.4239084891580948,0.052946849111414784,0.02359731534604217,0.03359426335458325,0.23000316465033,0.76999683534967,0.41883264358344996,0.44567931316152365,1.831146631791834,0.010098041051706573,1.4993473813159695,0.08405206988062329,1.1254059576548565,0.48829110990902336,1.8132163314860112,0.02915578159137823,1.8147484220720274,0.013054262827494433 +48405,0.5327223953082179,0.01628858817541402,0.11458122569320972,0.4188408447218692,0.04719558403827266,0.020945179611866156,0.030576128052566497,0.21508618128756596,0.784913818712434,0.41189630982512304,0.44379532616612877,1.6155978136718026,0.010098041051706573,1.361501961346089,0.08405206988062329,1.090194442340665,0.48829110990902336,1.615495517528028,0.02915578159137823,1.6078822932058436,0.013054262827494433 +48407,0.5126302855117874,0.012809368782526247,0.09887991579684471,0.4154883278197833,0.036285697477679534,0.016418427457185487,0.02498753808456311,0.19288738607811162,0.8071126139218884,0.36696731773347063,0.4524765568385443,1.2700653061754354,0.010098041051706573,1.174923460843612,0.08405206988062329,1.0501361164250147,0.48829110990902336,1.2448443061788046,0.02915578159137823,1.2540031103654492,0.013054262827494433 +48409,0.48312937800646816,0.00966800065123639,0.08052963394849906,0.403970351302557,0.027664745785068,0.0124549320748844,0.02001120422676295,0.16668337222792717,0.8333166277720728,0.34353497499765584,0.4502095255690702,0.9581600257700633,0.010098041051706573,0.9591763080799285,0.08405206988062329,0.9893115366588559,0.48829110990902336,0.9500824172259437,0.02915578159137823,0.95340775474784,0.013054262827494433 +48411,0.514586812594883,0.014526174448606325,0.1047143880585234,0.41132654217287745,0.04213277876530827,0.018708128275282676,0.028228812113073515,0.20349217176881199,0.796507828231188,0.4023590219689853,0.44402787624078505,1.4402955609734707,0.010098041051706573,1.2426083699187789,0.08405206988062329,1.0538614879513324,0.48829110990902336,1.4416166258710201,0.02915578159137823,1.4338307273997963,0.013054262827494433 +48413,0.4887504266771314,0.010317172174464607,0.0837947218318407,0.4066414209510897,0.028906966169312463,0.013175808898711113,0.021109285253432898,0.1714468515179333,0.8285531484820667,0.344973591860869,0.45580047458243844,1.0236116565085416,0.010098041051706573,0.9976994081167496,0.08405206988062329,1.0009972574847175,0.48829110990902336,0.9935048619128513,0.02915578159137823,1.005514798789267,0.013054262827494433 +48415,0.49201503999500407,0.010619792184535704,0.0864806587843831,0.40727277103143994,0.030554367027609438,0.01368566572506301,0.0215842836524744,0.1757683236375482,0.8242316763624518,0.35330867568653423,0.4479119371936723,1.0520913873596955,0.010098041051706573,1.028398370504875,0.08405206988062329,1.007341055567458,0.48829110990902336,1.0477523031585965,0.02915578159137823,1.0482796185247434,0.013054262827494433 +48417,0.5036614669404751,0.012972126963561743,0.09708902304521087,0.408158296654407,0.03842735319085634,0.01689577863211985,0.02575564702688452,0.1927664302671089,0.8072335697328911,0.3957950341405959,0.4396810404350238,1.2856966396651277,0.010098041051706573,1.153649410574856,0.08405206988062329,1.0314996669887224,0.48829110990902336,1.3086772080025275,0.02915578159137823,1.2910163628232336,0.013054262827494433 +48419,0.49960175166232135,0.011816227954311968,0.09195166403086169,0.40954867092980646,0.03427257919375989,0.015250494671477169,0.02365129408573112,0.18404992321366284,0.8159500767863371,0.37272386046496125,0.4449765681555088,1.1710219740142875,0.010098041051706573,1.0911376249203748,0.08405206988062329,1.022311311423843,0.48829110990902336,1.1740964580857833,0.02915578159137823,1.169303114194919,0.013054262827494433 +48421,0.4860976239425315,0.010094004675249103,0.08198832417078797,0.4058495160965263,0.02836004540756445,0.012823584875219559,0.020765385753958056,0.1686663750911092,0.8313336249088907,0.3459034648456566,0.4521708160523303,1.0015961017523005,0.010098041051706573,0.9763537177356973,0.08405206988062329,0.9949694973767463,0.48829110990902336,0.9736154979525313,0.02915578159137823,0.983953347803916,0.013054262827494433 +48423,0.4876964619351567,0.010716437644596902,0.08553704783850889,0.4036357972372111,0.03110300681518622,0.0138414390017127,0.021973580866415515,0.17538992901261144,0.8246100709873886,0.36362029788434674,0.44501932189252325,1.0613195104792612,0.010098041051706573,1.0162914090053954,0.08405206988062329,0.9985902419884884,0.48829110990902336,1.0656959173322038,0.02915578159137823,1.0609123805280412,0.013054262827494433 +48425,0.49804864511432617,0.011516470943147339,0.09106467664106098,0.40860366664943515,0.03357330872980005,0.014923981689682213,0.023123184966206974,0.18284293619583533,0.8171570638041646,0.36867542902647144,0.4445192402628913,1.141249598881645,0.010098041051706573,1.0821688133226717,0.08405206988062329,1.0194845015317089,0.48829110990902336,1.1490798563981692,0.02915578159137823,1.14275332823629,0.013054262827494433 +48427,0.45993702677824366,0.00795240331760166,0.06758144730088406,0.39339850467334103,0.022529422343558057,0.010190429604238879,0.017290200298302732,0.1469363051161091,0.8530636948838909,0.3333669704238983,0.4523165063374417,0.7874940096407483,0.010098041051706573,0.8066671431869528,0.08405206988062329,0.942045911665691,0.48829110990902336,0.7744054854761097,0.02915578159137823,0.7785065680609284,0.013054262827494433 +48429,0.5065948271407397,0.013027310281127916,0.09768068301438887,0.4109471991439435,0.03788992034989251,0.016827188335321826,0.025715442762522984,0.19281816114409653,0.8071818388559034,0.38789573517121223,0.4441072501586708,1.2917862554939372,0.010098041051706573,1.1603736540647467,0.08405206988062329,1.03721573688932,0.48829110990902336,1.2972403386225855,0.02915578159137823,1.289930422563382,0.013054262827494433 +48431,0.5102069599017867,0.012529559042068858,0.09715276942889407,0.4141228470614498,0.0363083968212352,0.01619605202859388,0.02455779718191371,0.19041835385310246,0.8095816461468975,0.3737247742362017,0.4460690486648398,1.2419346635183044,0.010098041051706573,1.1556955268197464,0.08405206988062329,1.0445473796427107,0.48829110990902336,1.2433211836584523,0.02915578159137823,1.2390602416978098,0.013054262827494433 +48433,0.5352898741394185,0.016161123204825895,0.11566126947217928,0.4211956526152645,0.04714589522585401,0.0208751714611507,0.030191348623599523,0.21607221630733633,0.7839277836926637,0.40762041987784253,0.44277813288192924,1.6027401412851965,0.010098041051706573,1.3732007942916837,0.08405206988062329,1.0961360029893088,0.48829110990902336,1.6112517654529834,0.02915578159137823,1.6006112284225886,0.013054262827494433 +48435,0.482404282272749,0.00950505124698761,0.08048033969950258,0.4036228231610741,0.02704880423803246,0.012221567547436009,0.019703496830928837,0.16683172736430932,0.8331682726356907,0.33609207340609226,0.45183393098951313,0.941541371562709,0.010098041051706573,0.9608173855723019,0.08405206988062329,0.9887012827393571,0.48829110990902336,0.9290275410521533,0.02915578159137823,0.9350727714637479,0.013054262827494433 +48437,0.499668330174021,0.012946309499056462,0.09468967598481545,0.40691906690743407,0.03750534391600667,0.016627331495566763,0.025909805999807134,0.18950505818897426,0.8104949418110258,0.3960869390029497,0.44333232972889736,1.2830255234441084,0.010098041051706573,1.1252045074999018,0.08405206988062329,1.022955109767879,0.48829110990902336,1.2829056524191333,0.02915578159137823,1.2760675190871762,0.013054262827494433 +48439,0.4690142378215417,0.007466348660232442,0.0696486671280103,0.3997446097993404,0.02123267580833447,0.009668638289479867,0.015919236684395415,0.14850011260108348,0.8514998873989166,0.3048540149276657,0.4553659829198086,0.7400542777064072,0.010098041051706573,0.8340401758984366,0.08405206988062329,0.9599008584959261,0.48829110990902336,0.7289576041310355,0.02915578159137823,0.7371519493143806,0.013054262827494433 +48441,0.4799149688350933,0.01005593944023448,0.0811268707870214,0.40053199434397346,0.028860079247928473,0.012943829117172054,0.02095358572507845,0.16904426003619388,0.8309557399638061,0.3557400768444958,0.44850289585054204,0.9956305403614281,0.010098041051706573,0.963601589106641,0.08405206988062329,0.9833568586652822,0.48829110990902336,0.9901721557105118,0.02915578159137823,0.9894639029771575,0.013054262827494433 +48443,0.5274203657895049,0.015226756806595765,0.11193385949222129,0.4173399756334511,0.04556670272295033,0.01994503344640805,0.028870248087220832,0.21222892924255116,0.7877710707574488,0.40708596067052377,0.4377107022133169,1.5081310907288268,0.010098041051706573,1.3237818175241458,0.08405206988062329,1.0798045109940633,0.48829110990902336,1.556615785553346,0.02915578159137823,1.5291803148342815,0.013054262827494433 +48445,0.4902886339550797,0.011108933468414822,0.0870703602859745,0.40504499327338833,0.032236384443488836,0.01433535947005717,0.022657946154698384,0.17759000363437324,0.8224099963656267,0.3702337320944973,0.4446950151989719,1.1002036874358232,0.010098041051706573,1.0335111631222833,0.08405206988062329,1.0039098225056016,0.48829110990902336,1.1037453887808213,0.02915578159137823,1.0989019015577848,0.013054262827494433 +48447,0.5412914237916928,0.016734266893039973,0.11984015936179301,0.42376393095855847,0.04990916089485335,0.021884727505920187,0.03091544805165781,0.22139674507001159,0.7786032549299884,0.41646440692872777,0.4384911930702675,1.6579904697760983,0.010098041051706573,1.4183440670024412,0.08405206988062329,1.108139286868104,0.48829110990902336,1.7030501779348313,0.02915578159137823,1.6762944378099225,0.013054262827494433 +48449,0.47137534790936486,0.009085397895017031,0.07505006442304676,0.39793339160270147,0.026292095308479393,0.011715459398058277,0.019274232170418792,0.15921508147574415,0.8407849185242559,0.35032741824543295,0.44558865547242843,0.8990798832656601,0.010098041051706573,0.8933109376658724,0.08405206988062329,0.9652341116315968,0.48829110990902336,0.9005343964242732,0.02915578159137823,0.8980770393418088,0.013054262827494433 +48451,0.4832777219422731,0.010393769334497684,0.08329820119983539,0.401489394102334,0.030032776813024954,0.013417031834538972,0.021506824880579135,0.1723609374441333,0.8276390625558667,0.36054532247311366,0.4467462971562497,1.0293422857978838,0.010098041051706573,0.9898463059510235,0.08405206988062329,0.9900619331700096,0.48829110990902336,1.0297258541447873,0.02915578159137823,1.0268109796541074,0.013054262827494433 +48453,0.4586265231249363,0.0064062649438537955,0.06408417926569047,0.39443241268252444,0.01820795909989536,0.008334131562062034,0.013968369949918137,0.13973064363796736,0.8602693563620326,0.2841256501765573,0.45771914997930385,0.6348557835401567,0.010098041051706573,0.7691634270447042,0.08405206988062329,0.9386932108224422,0.48829110990902336,0.6262794347103631,0.02915578159137823,0.6344817963731775,0.013054262827494433 +48455,0.5300056958363242,0.015144936608114265,0.11091543480041369,0.4200702713518354,0.04313524542663174,0.019331259111825157,0.028575044998745275,0.20927215626502715,0.7907278437349728,0.38890209919161634,0.44815461047290156,1.501668336082207,0.010098041051706573,1.319547444900541,0.08405206988062329,1.0858467003981274,0.48829110990902336,1.4764822153435366,0.02915578159137823,1.4827593230143243,0.013054262827494433 +48457,0.5130711268169811,0.013363944597133321,0.10108959021454385,0.413437128597515,0.03820395375002174,0.017103574806916558,0.026046962884154673,0.1970284136659356,0.8029715863340644,0.37792173921113886,0.44769122376258835,1.324688369102554,0.010098041051706573,1.2004346485207793,0.08405206988062329,1.0506468252645962,0.48829110990902336,1.3078945786892948,0.02915578159137823,1.3127139719084573,0.013054262827494433 +48459,0.5043264271882172,0.011530034147048111,0.09262443622165922,0.41289834990355234,0.03270765732649115,0.014836683808436987,0.022862244620675102,0.18365969187470582,0.8163403081252942,0.35312125677308914,0.4536149948110226,1.1432690291556746,0.010098041051706573,1.1028228824705897,0.08405206988062329,1.0326820467703173,0.48829110990902336,1.1231337972948947,0.02915578159137823,1.1319176651763105,0.013054262827494433 +48461,0.49855276636650203,0.010962609203150949,0.09023487341939365,0.4099201836132157,0.03229784568863035,0.014352531067019817,0.02198886445470445,0.18099362696757984,0.8190063730324202,0.3579308582671405,0.44438044584726794,1.084953485004668,0.010098041051706573,1.072759684365093,0.08405206988062329,1.0211048001202114,0.48829110990902336,1.1051263206334658,0.02915578159137823,1.0952902572168144,0.013054262827494433 +48463,0.4859313511650257,0.010715628260762902,0.08431143648606196,0.40354928877429597,0.031199482014976358,0.013852449018397788,0.02205173268831506,0.17350483002161596,0.826495169978384,0.37005041445515086,0.44399612185062376,1.0612996531032381,0.010098041051706573,1.0006086831633547,0.08405206988062329,0.994667483021308,0.48829110990902336,1.067282687529187,0.02915578159137823,1.0597610729888443,0.013054262827494433 +48465,0.47566645097039695,0.009485772242197219,0.0773895770994234,0.39979386608383904,0.027186254506647196,0.012188984122881483,0.019942067015332902,0.16269715247216318,0.8373028475278368,0.35129090409320446,0.44835099001597317,0.9402180164660531,0.010098041051706573,0.9212452251372776,0.08405206988062329,0.9740626406624115,0.48829110990902336,0.9332164513940717,0.02915578159137823,0.9333338132806782,0.013054262827494433 +48467,0.5120591635646823,0.013149076669143507,0.09975191560352303,0.4137377548080747,0.037721266666263215,0.01686121301859435,0.025678823082877104,0.1948054496459032,0.8051945503540968,0.3781507997920691,0.44699487871849547,1.3040341510067641,0.010098041051706573,1.1856318708167581,0.08405206988062329,1.0488116311215165,0.48829110990902336,1.2922926622690845,0.02915578159137823,1.2943726548027796,0.013054262827494433 +48469,0.4881588266689163,0.010205217215089164,0.08370457269307174,0.40588874655595486,0.02917967194908181,0.013110307971716815,0.020905526352411205,0.17146995633419665,0.8285300436658034,0.3486030811730913,0.44929593432695714,1.0110790064548167,0.010098041051706573,0.9965437942444826,0.08405206988062329,0.9993081651880324,0.48829110990902336,1.0014502050850602,0.02915578159137823,1.0044440210710617,0.013054262827494433 +48471,0.4745536637497306,0.008214556140048974,0.07503148090441833,0.4001406975487164,0.02332280054238805,0.010655924566105153,0.0173100678965175,0.1581095809303209,0.8418904190696791,0.31084020015676717,0.4568887234077456,0.8150350723407774,0.010098041051706573,0.8967828406582622,0.08405206988062329,0.9720034088647436,0.48829110990902336,0.800763421744853,0.02915578159137823,0.81147323131319,0.013054262827494433 +48473,0.47074312366506665,0.008236591444965906,0.07321760401473665,0.39874231105148633,0.023534644693080725,0.010639696250758071,0.017496997897363305,0.15553621568528936,0.8444637843147107,0.3214342371589196,0.4520865468551638,0.8159529714513958,0.010098041051706573,0.8764141245551268,0.08405206988062329,0.9644616843594098,0.48829110990902336,0.808529718367799,0.02915578159137823,0.8130202245618143,0.013054262827494433 +48475,0.48844764096491206,0.011046665450509034,0.0867177228355777,0.40365574198360565,0.032360581829021025,0.014331807007401696,0.02261586406413329,0.17753739717991007,0.8224626028200899,0.3731714898738605,0.4428785329980967,1.094085823005245,0.010098041051706573,1.028742019033766,0.08405206988062329,1.000130022767539,0.48829110990902336,1.1054351550480495,0.02915578159137823,1.0964500816836034,0.013054262827494433 +48477,0.5076857918196782,0.013231719245905951,0.09863331019541191,0.41067771387398533,0.038597610826059336,0.017125972749219773,0.026062811800346076,0.19428022565272984,0.8057197743472702,0.3913242975379201,0.44370551396039004,1.3122157097431755,0.010098041051706573,1.1717498718929986,0.08405206988062329,1.039635586857599,0.48829110990902336,1.3192020646891618,0.02915578159137823,1.3101421912938216,0.013054262827494433 +48479,0.44826948573240644,0.00650277801294186,0.05970053034787154,0.38849349399161726,0.018501781455307086,0.00837557489305638,0.01450640344684019,0.13318000053099677,0.8668199994690032,0.30990983409189626,0.4526901862552222,0.6428008455548824,0.010098041051706573,0.7153772659529521,0.08405206988062329,0.9180799126424355,0.48829110990902336,0.635386684167758,0.02915578159137823,0.6383178667947917,0.013054262827494433 +48481,0.49073644416222173,0.010867927858472556,0.0867841082499386,0.4058813993169856,0.03170393084411266,0.014093301793434229,0.022146160098270525,0.1768446368357565,0.8231553631642435,0.3653195439054948,0.44452853063333375,1.076204064510983,0.010098041051706573,1.0305939583119053,0.08405206988062329,1.0042259803504108,0.48829110990902336,1.085313906606006,0.02915578159137823,1.0783286704074118,0.013054262827494433 +48483,0.5064958772071215,0.012849282224522869,0.09718382552256859,0.4111004983348897,0.03709428492696443,0.01655938593677667,0.025368976931017362,0.19187485998593268,0.8081251400140673,0.3816919608536112,0.4464134022095514,1.274418942811884,0.010098041051706573,1.1540344172561017,0.08405206988062329,1.0372518274878186,0.48829110990902336,1.2715961228404105,0.02915578159137823,1.2685041014091691,0.013054262827494433 +48485,0.4798342384358161,0.009948767742267432,0.08116288749296721,0.39995646855715455,0.02868730478089713,0.012841794699793036,0.020733759588933975,0.16914776185531366,0.8308522381446863,0.3534534769155778,0.4476473059380742,0.9850925854228938,0.010098041051706573,0.9644281582431289,0.08405206988062329,0.9829490817291082,0.48829110990902336,0.9840394797053558,0.02915578159137823,0.9822939624884262,0.013054262827494433 +48487,0.49343463231682494,0.01142417228656814,0.0889429527296983,0.406512823366317,0.0330183389099329,0.014717567255820638,0.023152351980095506,0.18025275670676824,0.8197472432932318,0.37123052357253244,0.4457391783386521,1.1318321835603045,0.010098041051706573,1.0572756576025615,0.08405206988062329,1.0101245655641753,0.48829110990902336,1.1310147527181127,0.02915578159137823,1.1270422813195036,0.013054262827494433 +48489,0.4692109174390389,0.008941115652555408,0.0746164966318532,0.39611672756961597,0.026008385164628285,0.011574308409248234,0.019055642825525392,0.15902549122068876,0.8409745087793112,0.3485607920316847,0.44502218557534406,0.8854300267153058,0.010098041051706573,0.8881943453836878,0.08405206988062329,0.9611795802485653,0.48829110990902336,0.8925687781196794,0.02915578159137823,0.8869472216163714,0.013054262827494433 +48491,0.4677334629180041,0.007250842291344312,0.06867627185909653,0.3996634142031897,0.02051351437433922,0.009387476948134429,0.015502081561813376,0.14682779254375436,0.8531722074562457,0.29869871818940474,0.45762402174624056,0.7189013033451821,0.010098041051706573,0.8220051533674126,0.08405206988062329,0.9571396354457122,0.48829110990902336,0.7046127417618282,0.02915578159137823,0.7150623250172048,0.013054262827494433 +48493,0.49361742876974246,0.009911319665229248,0.08465446653595698,0.4105306360493102,0.027728386017091884,0.012699745714187008,0.020078949987506575,0.1714981311477268,0.8285018688522732,0.3275478205903554,0.4580052263539189,0.98375250337179,0.010098041051706573,1.009635716015303,0.08405206988062329,1.0107857508527194,0.48829110990902336,0.9532140773161168,0.02915578159137823,0.9700551423291628,0.013054262827494433 +48495,0.48619225392676546,0.010358872878083977,0.08296099284973558,0.40510082123665536,0.02922084026588747,0.01318572687075351,0.02130612488047644,0.1706341312098154,0.8293658687901846,0.3522238495724633,0.45124393243908806,1.0274795230596103,0.010098041051706573,0.9859697635624354,0.08405206988062329,0.9952401508845785,0.48829110990902336,1.0024317311675692,0.02915578159137823,1.0093193550025872,0.013054262827494433 +48497,0.4872564820065617,0.009409307020688859,0.08135887467448295,0.40716211502885996,0.026365956473702767,0.012078819201023732,0.019310788810731814,0.16697340657109477,0.8330265934289052,0.32406982740595935,0.458121790994803,0.9341684047737255,0.010098041051706573,0.9714502572002266,0.08405206988062329,0.9981272410317859,0.48829110990902336,0.9060135085958838,0.02915578159137823,0.9216045943027498,0.013054262827494433 +48499,0.5335770325583427,0.016146216984186605,0.11482801824297847,0.41927181807088054,0.046236794755183615,0.0206662334997902,0.0302603298098689,0.21520419964932222,0.7847958003506778,0.4026612621437531,0.44696509801803047,1.6009113029794717,0.010098041051706573,1.3645421016019528,0.08405206988062329,1.0922679473522536,0.48829110990902336,1.5838917143927438,0.02915578159137823,1.5868862644458153,0.013054262827494433 +48501,0.4724661338721645,0.008831533803112591,0.07438871453955762,0.3995242455728203,0.025644603299215033,0.011417509337853394,0.018692416598693494,0.15744771784994227,0.8425522821500577,0.34473782021838845,0.44522074311841187,0.8737199073122028,0.010098041051706573,0.8863002117501699,0.08405206988062329,0.9671803140250442,0.48829110990902336,0.8800618172186847,0.02915578159137823,0.875434935186572,0.013054262827494433 +48503,0.51153237107221206,0.01349612652413085,0.10119620977377211,0.4123282961238999,0.039876178128343306,0.017608498629822764,0.026383719364312972,0.1978295323943173,0.8021704676056827,0.39404813893215945,0.4415793954262368,1.3379824864791274,0.010098041051706573,1.200548914201513,0.08405206988062329,1.04767212936056,0.48829110990902336,1.35815291581308,0.02915578159137823,1.342814221709911,0.013054262827494433 +48505,0.46682989878198045,0.008508033151984874,0.07144793949754685,0.39644905318937296,0.024062135444630615,0.010899487666251489,0.01822512477067864,0.15304919347274834,0.8469508065272516,0.33677857771471187,0.4529725838894184,0.8433527667680211,0.010098041051706573,0.8528668558412436,0.08405206988062329,0.955802132279312,0.48829110990902336,0.8270658425580973,0.02915578159137823,0.832527783078193,0.013054262827494433 +48507,0.4730975159316827,0.00951538930931232,0.07642904903017725,0.3985477449068413,0.02748963964522736,0.012225575144400739,0.020112955551189964,0.16155030719124286,0.8384496928087571,0.3596752804600951,0.4447339180207585,0.9417244167993724,0.010098041051706573,0.9083018030884467,0.08405206988062329,0.9684414225060359,0.48829110990902336,0.9417904458846413,0.02915578159137823,0.9365518415184132,0.013054262827494433 +49001,0.47710258097112523,0.009832216261398324,0.07833523904800392,0.40078864117289753,0.02809090013801619,0.012578907458180463,0.020608180826406766,0.1641895101228657,0.8358104898771344,0.35859851172219,0.4477929648525958,0.9740922485575807,0.010098041051706573,0.9310690056831814,0.08405206988062329,0.977120285175499,0.48829110990902336,0.9635796730978583,0.02915578159137823,0.9646671674537359,0.013054262827494433 +49003,0.4656385264384507,0.008487413118796826,0.07105395891743888,0.3958201798482815,0.02420751965387469,0.010877355053764992,0.018227471819642727,0.15259467351405032,0.8474053264859497,0.3406920602693315,0.4493378590327385,0.8398892347990616,0.010098041051706573,0.8472223656200537,0.08405206988062329,0.9535715079027892,0.48829110990902336,0.8316433127771556,0.02915578159137823,0.8326410512116514,0.013054262827494433 +49005,0.44109946821975665,0.006265670303657111,0.05735438523731358,0.38385966925503734,0.017876346654458933,0.008067908662051542,0.01420466528546242,0.13002596776820305,0.8699740322317969,0.3116822991039393,0.4513175324914136,0.6195840360569173,0.010098041051706573,0.6857597456395839,0.08405206988062329,0.9033333940075343,0.48829110990902336,0.614968663942666,0.02915578159137823,0.61474945802957,0.013054262827494433 +49007,0.48780928929049694,0.010826936263534516,0.08581647419780203,0.40375147836905334,0.03165186668718921,0.01406976230075696,0.022195018629682,0.17592218123320152,0.8240778187667985,0.3688320568173598,0.44451603565143166,1.071646832185373,0.010098041051706573,1.0199746278789497,0.08405206988062329,0.9988763488532675,0.48829110990902336,1.082839902954186,0.02915578159137823,1.0737526694191963,0.013054262827494433 +49009,0.5263879300089376,0.015427711797532183,0.11141026977614449,0.41563134116748257,0.043917164267106304,0.01967671995386556,0.029308635168116857,0.21165050227168553,0.7883494977283145,0.39419314175747544,0.44804167760447383,1.5288878206273082,0.010098041051706573,1.3180905847937772,0.08405206988062329,1.0777138666415305,0.48829110990902336,1.505294748645241,0.02915578159137823,1.5100209107949103,0.013054262827494433 +49011,0.453332867524606,0.006774762973428373,0.0621951555830889,0.39141153383006944,0.01919430402390892,0.008699240337463067,0.014944345444047585,0.13719533711001677,0.8628046628899833,0.3086141331098772,0.45321988891220383,0.6699614142770871,0.010098041051706573,0.7450551288122982,0.08405206988062329,0.9284850813559367,0.48829110990902336,0.6592068988586565,0.02915578159137823,0.6642173429635014,0.013054262827494433 +49013,0.4668672321640134,0.00819089083056226,0.07030620587411926,0.3974661196362925,0.022676746052802725,0.010375213355133067,0.017544368647583193,0.1505914337749458,0.8494085662250542,0.3225425945101436,0.45752654860509606,0.8131623496863746,0.010098041051706573,0.8397274493233323,0.08405206988062329,0.9559431523496701,0.48829110990902336,0.7797456209149545,0.02915578159137823,0.7947483081056543,0.013054262827494433 +49015,0.4793815298734022,0.009536217553030194,0.07859915971238672,0.40228638896199675,0.027161301722206058,0.012221646414585024,0.019892751303014475,0.16395950785409616,0.8360404921459038,0.3455673294930354,0.4499654154864406,0.9445993195986626,0.010098041051706573,0.9378376437026645,0.08405206988062329,0.9814432365817013,0.48829110990902336,0.9322096944194813,0.02915578159137823,0.9358315542458029,0.013054262827494433 +49017,0.5050945075135135,0.011821291256264166,0.09358891545247683,0.4130784283570397,0.033681155654173046,0.01518021821942701,0.02340411760654098,0.18528990923539773,0.8147100907646023,0.359884025702551,0.45070360338262927,1.171269198102766,0.010098041051706573,1.1129114452446953,0.08405206988062329,1.0346211294576093,0.48829110990902336,1.1558888114282195,0.02915578159137823,1.161576657735867,0.013054262827494433 +49019,0.5005270262451078,0.01071460625583071,0.08953014649411997,0.41211145197169174,0.030403365437835072,0.013793647324701074,0.021406648780207472,0.1788717527718016,0.8211282472281984,0.339588022899436,0.4536881732025544,1.0613275431251832,0.010098041051706573,1.0661940379638795,0.08405206988062329,1.025022167765264,0.48829110990902336,1.043558472234708,0.02915578159137823,1.0530118666002073,0.013054262827494433 +49021,0.4524607760827425,0.007460207604500172,0.06429169209792811,0.3885774353076713,0.021160627190773308,0.009542524805641047,0.016488075870549953,0.14209340454778105,0.8579065954522189,0.32913470621587887,0.45095661483048505,0.7384307862591086,0.010098041051706573,0.7679742324827921,0.08405206988062329,0.9265964906616566,0.48829110990902336,0.7275369450155886,0.02915578159137823,0.7306333587389001,0.013054262827494433 +49023,0.46076528915507875,0.007853811415389739,0.0673429294465831,0.3944169752508624,0.022407355718182906,0.010069456597394884,0.017045145544256478,0.14615451951702385,0.8538454804829761,0.33273509041445226,0.44938174428247324,0.7773171153590993,0.010098041051706573,0.8046874381132654,0.08405206988062329,0.9434701510338601,0.48829110990902336,0.7693584956512249,0.02915578159137823,0.7709838175135757,0.013054262827494433 +49025,0.5230955642109172,0.013641824895699744,0.10466405300718104,0.4195024613834877,0.038054345838444095,0.0173209500699531,0.026079029968985225,0.20008591195963474,0.7999140880403652,0.36358563179120507,0.45516352175616037,1.354027316067267,0.010098041051706573,1.2446717495744135,0.08405206988062329,1.0717182856632719,0.48829110990902336,1.3045525105434261,0.02915578159137823,1.3242850503511128,0.013054262827494433 +49027,0.48313127308625414,0.01036849956912709,0.08209009879061568,0.4029074376432322,0.029630997938335617,0.013277332905527874,0.021461039983797503,0.1699126166398258,0.8300873833601742,0.36095702618064035,0.44808929261036107,1.0265632639689357,0.010098041051706573,0.9761678565456037,0.08405206988062329,0.9893365474687039,0.48829110990902336,1.0162688259367607,0.02915578159137823,1.0166673844090015,0.013054262827494433 +49029,0.4695822643207541,0.008179791033904584,0.07103978915501352,0.39983381188513784,0.022380876070204492,0.01035458621708835,0.017419292966135695,0.15128294774457005,0.8487170522554299,0.3150470509050631,0.4626533020694994,0.81227198952823,0.010098041051706573,0.8500209413305129,0.08405206988062329,0.9619003349288704,0.48829110990902336,0.7707168781106721,0.02915578159137823,0.7909375861409431,0.013054262827494433 +49031,0.508270505179363,0.014531096449630902,0.1017185862066482,0.4077402867729263,0.042542554356231686,0.018742672361022072,0.028589297040761866,0.20012687175454502,0.799873128245455,0.4182377669878699,0.44056292915746426,1.4402748388316002,0.010098041051706573,1.205963782387283,0.08405206988062329,1.0402001029561965,0.48829110990902336,1.4533242013528789,0.02915578159137823,1.4383565918655183,0.013054262827494433 +49033,0.49683695619410856,0.011197209384655944,0.08956348044013035,0.4091502131263176,0.03244675387597917,0.014536738688015447,0.022536989740918792,0.18026734791672566,0.8197326520832744,0.36227660779293347,0.4480182746039571,1.1095613274656242,0.010098041051706573,1.0622745615778129,0.08405206988062329,1.0172748349279266,0.48829110990902336,1.1131423810860441,0.02915578159137823,1.1114688835189415,0.013054262827494433 +49035,0.4601489427911484,0.007167621018341144,0.06602562100619415,0.3948053503653832,0.02052592671308974,0.00925715726235969,0.01557674125004862,0.14348749908170874,0.8565125009182912,0.3108782075849633,0.45099826145516925,0.7096894430827481,0.010098041051706573,0.7906173118652817,0.08405206988062329,0.9425876345975638,0.48829110990902336,0.7039317356513957,0.02915578159137823,0.7077468041456291,0.013054262827494433 +49037,0.4670123978265241,0.008591227164715894,0.07184182534145023,0.39654674796691203,0.024667941353452138,0.0110618343925736,0.018396143667062093,0.15383280117573347,0.8461671988242665,0.34336462410594676,0.4484295723779787,0.8503825104897629,0.010098041051706573,0.8572529875819748,0.08405206988062329,0.9564082444696085,0.48829110990902336,0.8460990755506814,0.02915578159137823,0.845718051116002,0.013054262827494433 +49039,0.46304589860124,0.008704609257118258,0.07130034109927336,0.3933195801178433,0.024580543716212745,0.011114600502183089,0.018798588397852072,0.1539811524400843,0.8460188475599157,0.34474650944500534,0.45217065295639336,0.8633698367053084,0.010098041051706573,0.8486715068505559,0.08405206988062329,0.9488126520054834,0.48829110990902336,0.8446202318755092,0.02915578159137823,0.8491191816554107,0.013054262827494433 +49041,0.4796961183928673,0.01027957085252407,0.08096180991949536,0.400857600137977,0.029660585762538653,0.013216333959313657,0.021429339238691076,0.16877728798544975,0.8312227120145502,0.36635280006748555,0.4455857367458298,1.0178186394490856,0.010098041051706573,0.9609142307550406,0.08405206988062329,0.9824145984343361,0.48829110990902336,1.0158759290353783,0.02915578159137823,1.0127994416960657,0.013054262827494433 +49043,0.475872410582207,0.006929035829459371,0.07073217272529081,0.4058688124076105,0.018800340808473585,0.008787603660167263,0.014560700884050053,0.1486368428855823,0.8513631571144177,0.26579617286026597,0.4674172532131206,0.6876214587310374,0.010098041051706573,0.8452806724427304,0.08405206988062329,0.9746266503359218,0.48829110990902336,0.650848151131268,0.02915578159137823,0.6749890481455844,0.013054262827494433 +49045,0.4509970684526001,0.006098534825135745,0.05912379364491922,0.3918811765244178,0.017169397562338422,0.007832250567090897,0.013522338063216706,0.13109573826671814,0.8689042617332818,0.29039742722621903,0.4561750369314745,0.6033805841667986,0.010098041051706573,0.7103544439026628,0.08405206988062329,0.9244116923460122,0.48829110990902336,0.5899201140630557,0.02915578159137823,0.5973686494453964,0.013054262827494433 +49047,0.4603847166090034,0.007487871538424853,0.06631287822669231,0.39471610327380136,0.021368764735005052,0.009624433202070312,0.016264379047109357,0.14403796614953807,0.8559620338504619,0.3222415510597409,0.450397265420969,0.7409571811434685,0.010098041051706573,0.7936330603238444,0.08405206988062329,0.9425425529128209,0.48829110990902336,0.7329692206645587,0.02915578159137823,0.7359974643753959,0.013054262827494433 +49049,0.4330229421000098,0.005470264723236138,0.05220570113532456,0.380364224676754,0.015480382341475127,0.0070227267363802155,0.012632736493607633,0.12056105129706331,0.8794389487029367,0.296526662889706,0.4536533130428495,0.5405008748594877,0.010098041051706573,0.6235630776049854,0.08405206988062329,0.8865534966671468,0.48829110990902336,0.5324997003469129,0.02915578159137823,0.5343068913173858,0.013054262827494433 +49051,0.4612329063715057,0.007120339030608675,0.06570818155456662,0.39600351355210545,0.019859022218028474,0.009134993866896514,0.015437621497182403,0.14246204172960972,0.8575379582703903,0.3022305860273545,0.4599921268330904,0.7061710188708298,0.010098041051706573,0.7869168292539481,0.08405206988062329,0.945154258270368,0.48829110990902336,0.6836652505895982,0.02915578159137823,0.6959106492508855,0.013054262827494433 +49053,0.4843585307089774,0.011635870866287885,0.08602604004802335,0.4001927402596851,0.03389553655094571,0.014987382831980204,0.02402325989645715,0.17760818607262507,0.8223918139273749,0.3940148416923968,0.4421639058421114,1.1526852405734291,0.010098041051706573,1.0211743109791103,0.08405206988062329,0.9911967753408626,0.48829110990902336,1.1587228927798634,0.02915578159137823,1.1484966813879351,0.013054262827494433 +49055,0.4967891130505203,0.010666149729156202,0.08733489421923533,0.4114731796630944,0.030762110771627448,0.013783124179317043,0.021470176074634556,0.17579872812219605,0.824201271877804,0.35223161425496013,0.4480552157698331,1.0561018060200529,0.010098041051706573,1.0374602819472196,0.08405206988062329,1.0172934399072755,0.48829110990902336,1.056789592832812,0.02915578159137823,1.0568981028858335,0.013054262827494433 +49057,0.4668184186155637,0.008228912359946312,0.07095854688649722,0.39689508096117454,0.023645395932369355,0.010608606148509992,0.01762765142033314,0.15200459976908773,0.8479954002309122,0.3332282997591776,0.4486541980033984,0.8142239733127816,0.010098041051706573,0.8469336577064073,0.08405206988062329,0.9555493916797901,0.48829110990902336,0.8119664243225677,0.02915578159137823,0.8116702614960243,0.013054262827494433 +50001,0.49745648015916144,0.01061359600669938,0.089025734623784325,0.4098226760040894,0.030494904019279727,0.013701083012333025,0.021335727706881122,0.17896185530702202,0.821038144692978,0.34254032441460625,0.449290904594119,1.05145124310137,0.010098041051706573,1.058503688315921,0.08405206988062329,1.0191269713626991,0.48829110990902336,1.0480058853072618,0.02915578159137823,1.0516078541270728,0.013054262827494433 +50003,0.521209700032466,0.013883695590124036,0.10515337854049553,0.41677511389923827,0.0402511971660119,0.01794388306955787,0.026637446673112998,0.2017486983337907,0.7982513016662093,0.38278558163978343,0.44579750002341995,1.3773215475211664,0.010098041051706573,1.2508535465612352,0.08405206988062329,1.067584359339401,0.48829110990902336,1.379022911623692,0.02915578159137823,1.3750665485461244,0.013054262827494433 +50005,0.5064923742238887,0.011850928436499835,0.09512142196481713,0.41273793608149223,0.034538469314246124,0.015408123029465422,0.023398039219562423,0.1878042529476858,0.8121957470523142,0.3630987489550039,0.44611482023929805,1.1740025640855303,0.010098041051706573,1.128738750072813,0.08405206988062329,1.0373469296365079,0.48829110990902336,1.1831573129825745,0.02915578159137823,1.178155027190884,0.013054262827494433 +50007,0.4815786883294203,0.009153401399400303,0.0799002359970008,0.4026671848605926,0.026379124073263482,0.011848433482849523,0.019007073238961496,0.1659131475983124,0.8340868524016876,0.3301507654402131,0.44915947360278285,0.9060007945774141,0.010098041051706573,0.9526930493740455,0.08405206988062329,0.9861317560437033,0.48829110990902336,0.9060011721584568,0.02915578159137823,0.9078702624883503,0.013054262827494433 +50009,0.5301529325006569,0.013997988870294804,0.10806525123544397,0.42298304849876645,0.03948262972039737,0.01795158258985522,0.02640368092329181,0.2038378826383462,0.7961621173616538,0.3653591628115106,0.45467038839566304,1.3872870942164726,0.010098041051706573,1.2868958907158454,0.08405206988062329,1.0860743596685238,0.48829110990902336,1.354790724375639,0.02915578159137823,1.3694749625007516,0.013054262827494433 +50011,0.4919629591751042,0.009692592587443915,0.08395608823143785,0.40923154036076637,0.027705601563946376,0.012514989880325265,0.01970187471775499,0.17065530374931215,0.8293446962506879,0.330001101141964,0.45171334220770604,0.9602295252103676,0.010098041051706573,0.9996256126350598,0.08405206988062329,1.0074507507245145,0.48829110990902336,0.950862927862026,0.02915578159137823,0.9575473482347674,0.013054262827494433 +50013,0.5189322177551804,0.011239965574395445,0.09667127760965114,0.4215965523744586,0.030992805038179173,0.014334510111475622,0.021659795229168423,0.18628883368975618,0.8137111663102439,0.3205999321052215,0.4625108987010804,1.1140073715858105,0.010098041051706573,1.1541770681982373,0.08405206988062329,1.0626448196192757,0.48829110990902336,1.0703137938052412,0.02915578159137823,1.098819002352072,0.013054262827494433 +50015,0.4929669412384634,0.009700304453016385,0.08479674391312125,0.40919856646803043,0.027335063982715527,0.012536330686290665,0.019677393434632054,0.1720130435117807,0.8279869564882193,0.3223598303576579,0.45861720661117245,0.9618336604179987,0.010098041051706573,1.0122949895232065,0.08405206988062329,1.0097363271548199,0.48829110990902336,0.9389056065147027,0.02915578159137823,0.9533797176401778,0.013054262827494433 +50017,0.5101011196719585,0.011510820032556619,0.0948672190476467,0.4155436091437025,0.03260431164161383,0.014858184736689223,0.02256576115723707,0.18597728056087187,0.8140227194391281,0.34368364508754534,0.45571226591164377,1.1412193393224033,0.010098041051706573,1.128312158324596,0.08405206988062329,1.0440477476909322,0.48829110990902336,1.120437281544314,0.02915578159137823,1.1322677457503763,0.013054262827494433 +50019,0.514502589807623,0.012825128423833073,0.10050151901553803,0.41523158900797197,0.03745191700056131,0.0166636088927542,0.024927237836895048,0.1953372461217667,0.8046627538782333,0.3726502580997911,0.4449334033423297,1.2711948198238914,0.010098041051706573,1.1931583653292042,0.08405206988062329,1.0537715767684368,0.48829110990902336,1.2807831824599125,0.02915578159137823,1.274990327775352,0.013054262827494433 +50021,0.5138684355475832,0.012428310990130637,0.09912509304270617,0.4155549726366573,0.03589250434708251,0.016050118668701863,0.02418578400692564,0.1928997505695743,0.8071002494304257,0.3620930204990466,0.4471718806104006,1.231878946179511,0.010098041051706573,1.177939532591131,0.08405206988062329,1.0521119607421734,0.48829110990902336,1.2297440372489503,0.02915578159137823,1.2311558865321555,0.013054262827494433 +50023,0.5055346421214146,0.011192762362050999,0.09292449668496525,0.4135292810161725,0.03217415538991991,0.01445708344929718,0.022140445835881657,0.1838143006283781,0.8161856993716219,0.3462397595652034,0.4493383982917715,1.1090648516759194,0.010098041051706573,1.104198219232536,0.08405206988062329,1.0350308414088736,0.48829110990902336,1.104135653847226,0.02915578159137823,1.1077133693624814,0.013054262827494433 +50025,0.5158269969043405,0.012322726985284704,0.09925765081468743,0.41713941271128474,0.035410852308992505,0.01590405860264293,0.0238892633755847,0.19242430390492848,0.8075756960950715,0.3567569050682455,0.4491295059453887,1.2213025406175162,0.010098041051706573,1.180322564299578,0.08405206988062329,1.0560903476706676,0.48829110990902336,1.2146352742429904,0.02915578159137823,1.2182231091341689,0.013054262827494433 +50027,0.5212438738834411,0.013270645016234709,0.10384021270635801,0.4185056748801883,0.03857245804583469,0.017201497329433303,0.025459570234109358,0.19921617866261665,0.8007838213373834,0.3714597364598131,0.44595284306209354,1.316133144240336,0.010098041051706573,1.234370012186861,0.08405206988062329,1.0674503826872752,0.48829110990902336,1.3207382499160452,0.02915578159137823,1.3174373092033531,0.013054262827494433 +51001,0.5194760726238561,0.013377364700106871,0.10269552918507661,0.41807878891846295,0.03808468449172016,0.01715248028958541,0.025751647486934776,0.1976905859520439,0.8023094140479561,0.37085046246837494,0.45037737658859855,1.3266016571511,0.010098041051706573,1.2230471718393592,0.08405206988062329,1.0640795325204024,0.48829110990902336,1.3048247407843543,0.02915578159137823,1.3120661840665555,0.013054262827494433 +51003,0.49008368190481255,0.010619653539052228,0.08662501850317617,0.405361510355087,0.030751125524206366,0.013730079595079315,0.02166906169529401,0.17675556583824611,0.8232444341617539,0.35499127221633847,0.44649031087565905,1.0517893012373691,0.010098041051706573,1.0297649392448647,0.08405206988062329,1.0040378008117807,0.48829110990902336,1.0547035069538688,0.02915578159137823,1.0522885883633633,0.013054262827494433 +51005,0.5266368154560147,0.014265006275855235,0.10788123334647504,0.4203132726459736,0.04150848768830431,0.018460447939139826,0.027086990231594745,0.20484939559924367,0.7951506044007564,0.38476096722952957,0.4447391116188836,1.4145655779852104,0.010098041051706573,1.2811985227272664,0.08405206988062329,1.0786728929048408,0.48829110990902336,1.4200071595586432,0.02915578159137823,1.4145293429810017,0.013054262827494433 +51007,0.5094281991865378,0.01199171907006846,0.09582046968232998,0.4147526315922899,0.03410261193097314,0.015451215674811024,0.02353956669304331,0.18809416093443093,0.8119058390655691,0.35590111428207616,0.45308012495012767,1.1886735086005462,0.010098041051706573,1.1393160516350447,0.08405206988062329,1.0430630463330532,0.48829110990902336,1.171243133898587,0.02915578159137823,1.1793989111615875,0.013054262827494433 +51009,0.5088146482361982,0.012284724370879936,0.09646997618816748,0.4133198493761659,0.03476944323358952,0.01579677484826854,0.0241438103511069,0.18959748215303918,0.8104025178469608,0.36041724697610283,0.4543292437023506,1.2180675845969806,0.010098041051706573,1.1476111101048538,0.08405206988062329,1.0416090681813772,0.48829110990902336,1.1934056344486184,0.02915578159137823,1.203809495475459,0.013054262827494433 +51011,0.5137177303549167,0.012600850102247214,0.09858808784206172,0.41585769678075707,0.035375276485621165,0.01608059141354176,0.02452874284393796,0.19191100874394443,0.8080889912560556,0.35881897356902204,0.45457146942944654,1.249522724491968,0.010098041051706573,1.1754172337138447,0.08405206988062329,1.052084269796659,0.48829110990902336,1.2130431592160473,0.02915578159137823,1.2293165855866053,0.013054262827494433 +51013,0.4723761417504092,0.007614606728329833,0.07293802532307418,0.39896892018313035,0.022111248839827853,0.009971760853997027,0.01611979533960711,0.15440666637565423,0.8455933336243457,0.3031511854329416,0.4509813500916062,0.7540799580381488,0.010098041051706573,0.8726056765364911,0.08405206988062329,0.9669337175440565,0.48829110990902336,0.7585199131422837,0.02915578159137823,0.7617570815335487,0.013054262827494433 +51015,0.5100256015570928,0.01178884023462777,0.0959168971259152,0.4148587260457797,0.033688660029605674,0.015220350737645645,0.023114212695670173,0.18806290671112158,0.8119370932888784,0.3512275838675305,0.4517944828992891,1.1683595689720314,0.010098041051706573,1.1402245217101243,0.08405206988062329,1.0441062631576803,0.48829110990902336,1.1560304455568544,0.02915578159137823,1.1627306151704726,0.013054262827494433 +51017,0.5443346108251922,0.01552179373320221,0.11686091960539863,0.42810925109776443,0.0440017574283189,0.019812366889082868,0.02851516957496367,0.2146858150876013,0.7853141849123987,0.37653098723592576,0.4502630814543765,1.5402852741871578,0.010098041051706573,1.392676653454393,0.08405206988062329,1.1140664675870113,0.48829110990902336,1.506757143105384,0.02915578159137823,1.51916063037274,0.013054262827494433 +51019,0.5133983905047365,0.011818744676543078,0.09661007069943944,0.4171926362029867,0.033208540666054526,0.015128955357611242,0.02302061107929017,0.18817758778803212,0.8118224122119679,0.3437378776936058,0.4555742304290994,1.1720685249183607,0.010098041051706573,1.1500195006853027,0.08405206988062329,1.0515507281435905,0.48829110990902336,1.1399703307437739,0.02915578159137823,1.15673260146691,0.013054262827494433 +51021,0.5262711404088576,0.013344463353142577,0.10521160066257038,0.4217704785383034,0.037588521902747654,0.01703824590711738,0.025356631455746036,0.19991900103211432,0.8000809989678856,0.35726594468702905,0.453283211061085,1.3239808780304787,0.010098041051706573,1.2528473252075114,0.08405206988062329,1.0775547768622042,0.48829110990902336,1.288069352169062,0.02915578159137823,1.3047446693742537,0.013054262827494433 +51023,0.5187694540759751,0.012615950492439399,0.10037280958997948,0.419141227644903,0.03551269808017179,0.016173539164345673,0.024318992556936016,0.19348249747811797,0.806517502521882,0.3538079508309104,0.45542974875727704,1.2507524694486574,0.010098041051706573,1.195123213715001,0.08405206988062329,1.0623575952125104,0.48829110990902336,1.2185047484142528,0.02915578159137823,1.2342228603345102,0.013054262827494433 +51025,0.5064555129267698,0.012300326810720451,0.09631601348434768,0.41153801249483446,0.03532444037020868,0.01582655336330098,0.024287082471741203,0.19017665130693195,0.809823348693068,0.3667556317200489,0.44803408624269403,1.2200671247206634,0.010098041051706573,1.1440809598454336,0.08405206988062329,1.0371301400350457,0.48829110990902336,1.2107805779602565,0.02915578159137823,1.2125333947491683,0.013054262827494433 +51027,0.5161985107956013,0.012264925907477514,0.09884674226875673,0.41807450363234866,0.03439099558462115,0.015714533124889758,0.023760095488408038,0.19148978581206522,0.8085102141879348,0.3479223977975386,0.4569374296310552,1.2162419421424069,0.010098041051706573,1.176875565267961,0.08405206988062329,1.0570075616332422,0.48829110990902336,1.1815356967862924,0.02915578159137823,1.1996955414264971,0.013054262827494433 +51029,0.5188908195973592,0.011290352586902508,0.09789398541167005,0.42193595447993426,0.03229128210684522,0.014702499626840242,0.021758628521628923,0.18866008361379819,0.8113399163862018,0.32985971478280157,0.45530863649800873,1.1187983831154062,0.010098041051706573,1.1635351862483991,0.08405206988062329,1.0627325133346701,0.48829110990902336,1.1084530203063039,0.02915578159137823,1.1203295213368276,0.013054262827494433 +51031,0.5031381000252517,0.011752222184069506,0.09366241507766825,0.4107636057905426,0.033664757411481894,0.015114188973221782,0.02335784585480543,0.18615647487830375,0.8138435251216962,0.3594265360717622,0.44896176700405543,1.1659524173389735,0.010098041051706573,1.113701079379552,0.08405206988062329,1.0303441818025136,0.48829110990902336,1.1541533411233074,0.02915578159137823,1.158325510621511,0.013054262827494433 +51033,0.4931402035090928,0.009968176366758199,0.0850848591667613,0.40951690185733935,0.02833672900556332,0.01289351453951796,0.020213676142862683,0.17253685374121489,0.8274631462587851,0.33304079342747694,0.45501068725986654,0.9879845662057547,0.010098041051706573,1.0141186603430121,0.08405206988062329,1.0098265913167666,0.48829110990902336,0.9739157565849832,0.02915578159137823,0.9832323889603656,0.013054262827494433 +51035,0.5267127502754227,0.014297253368672371,0.10771705518862895,0.42043352377079446,0.040578739996774596,0.018337176611677976,0.027144308470216854,0.20450815958471244,0.7954918404152875,0.37671601702919794,0.4518912271089617,1.417785704734014,0.010098041051706573,1.281978093679454,0.08405206988062329,1.0791350206494514,0.48829110990902336,1.3896756054746313,0.02915578159137823,1.3994172218847964,0.013054262827494433 +51036,0.5224954296530404,0.012583949112942961,0.10197237188483477,0.42075092143306436,0.03518224338271224,0.016066354727565044,0.024084323802218227,0.19516414134483212,0.8048358586551678,0.3450174074841198,0.45666089432658774,1.2483932262365496,0.010098041051706573,1.2130284218558463,0.08405206988062329,1.069916300904289,0.48829110990902336,1.2073071801633684,0.02915578159137823,1.2286695364551918,0.013054262827494433 +51037,0.5122041134127707,0.013145866938663882,0.10044615222453473,0.4133849823679437,0.03837929219904117,0.017065672216969488,0.02566528966562594,0.19610571175477468,0.8038942882452254,0.3820882268665612,0.44465833628364415,1.3040204198110807,0.010098041051706573,1.1932242682406966,0.08405206988062329,1.049292268959619,0.48829110990902336,1.312055196035736,0.02915578159137823,1.3045355366869953,0.013054262827494433 +51041,0.48262365884308334,0.008387740860786037,0.07707576596070495,0.40643023721158744,0.023515490747867275,0.010825796222687357,0.017379464738410524,0.15970159056326907,0.840298409436731,0.3050957775736673,0.46036871349024244,0.831993240970466,0.010098041051706573,0.9207018118626266,0.08405206988062329,0.9881895253698169,0.48829110990902336,0.8091603853953566,0.02915578159137823,0.8242010387425528,0.013054262827494433 +51043,0.5178722851192642,0.0123842806195953,0.09955808844057662,0.41899202647666484,0.03511092709567633,0.015972643102822228,0.023913773676348102,0.19224448054340026,0.8077555194565997,0.35266775051263705,0.4549194346049937,1.2270527304649788,0.010098041051706573,1.1841356126668132,0.08405206988062329,1.060589658778242,0.48829110990902336,1.2063795925985334,0.02915578159137823,1.2172021080899724,0.013054262827494433 +51045,0.5089933782317295,0.0112101524169528,0.09390611268665909,0.41599436934392636,0.03182990207527305,0.014428803743022522,0.02202416160284339,0.1844937806713596,0.8155062193286404,0.3389545277151592,0.45330971200918296,1.1105853610169927,0.010098041051706573,1.1158653480135725,0.08405206988062329,1.0425905982446246,0.48829110990902336,1.0965271554332117,0.02915578159137823,1.1067822372615308,0.013054262827494433 +51047,0.4862178580797576,0.009112206779607704,0.08020219775937634,0.4073354037472968,0.02597446696935753,0.011803232590147877,0.018740995683694053,0.16495115600262514,0.8350488439973749,0.32386228426416014,0.4544167394877565,0.9029863892019769,0.010098041051706573,0.9562164933134046,0.08405206988062329,0.9960407888974002,0.48829110990902336,0.8920445603223822,0.02915578159137823,0.9003037867157052,0.013054262827494433 +51049,0.5078593274083198,0.012329999616117252,0.09624962798163639,0.413161906924884,0.035581846169014414,0.015870051355427198,0.02427837582316158,0.18952025253294502,0.810479747467055,0.3696829475102296,0.4460154001016183,1.2229430376850718,0.010098041051706573,1.1418014383839128,0.08405206988062329,1.0397273798813558,0.48829110990902336,1.2177326067169907,0.02915578159137823,1.2196385941878622,0.013054262827494433 +51051,0.5149885842575788,0.01275736515947225,0.1000086441769617,0.41566255666665086,0.03661651744817238,0.016411336396195707,0.024772131945145166,0.19419584673150925,0.8058041532684908,0.3661335252518849,0.4481949005506758,1.2661302537890577,0.010098041051706573,1.1911265669132876,0.08405206988062329,1.0542878794183461,0.48829110990902336,1.2555704083068742,0.02915578159137823,1.2589404777009623,0.013054262827494433 +51053,0.4977197247512801,0.010255097071390664,0.0875165122264128,0.41142715807187313,0.028862951932298493,0.013177358638964748,0.02060416045700284,0.17583492852357105,0.8241650714764289,0.3298000708440887,0.4565492355000216,1.0174813527562359,0.010098041051706573,1.043183939518671,0.08405206988062329,1.0192561599192524,0.48829110990902336,0.990851292037696,0.02915578159137823,1.0064849837727352,0.013054262827494433 +51057,0.5190566072893863,0.013080293016734051,0.10230288167001259,0.4176671285703478,0.037696161871932414,0.016873311146134155,0.0252001281421729,0.19709388192601568,0.8029061180739843,0.36847605127610067,0.4476135051483208,1.2963746942131613,0.010098041051706573,1.2151123649669828,0.08405206988062329,1.0629653313348773,0.48829110990902336,1.2905221651227212,0.02915578159137823,1.2937773517407054,0.013054262827494433 +51059,0.4850026543103817,0.008404096301735654,0.07785396700967066,0.4074802601031411,0.023710122238145677,0.010881368338445649,0.017327938779397645,0.16052276480913305,0.8394772351908669,0.3045461027721364,0.45893345589502366,0.833176661345113,0.010098041051706573,0.930760534455356,0.08405206988062329,0.992553618347312,0.48829110990902336,0.814911883828293,0.02915578159137823,0.8286829796772011,0.013054262827494433 +51061,0.49639101247046813,0.009888412471256554,0.08573413806286717,0.4114303695867789,0.028075397475592415,0.012803337796589962,0.019920611418896,0.17271492816959044,0.8272850718304096,0.3274704582089024,0.45603407067417845,0.9798137096270338,0.010098041051706573,1.021304057072495,0.08405206988062329,1.016580192528724,0.48829110990902336,0.9639816513056936,0.02915578159137823,0.9747218456281507,0.013054262827494433 +51063,0.5192067473992698,0.013060327649043576,0.10186077858976889,0.41857331427209066,0.03756834512795882,0.01677556164386279,0.025154387369700704,0.1961853906945435,0.8038146093054566,0.3688205180451297,0.4465344849959391,1.2950183712694008,0.010098041051706573,1.210491033470707,0.08405206988062329,1.0631542478129865,0.48829110990902336,1.2869425450262493,0.02915578159137823,1.2904191523150905,0.013054262827494433 +51065,0.5057253717480633,0.011364993956011555,0.09262728088363914,0.41421191383294015,0.032080411473319324,0.014572199504089764,0.022472659255215778,0.18315727479416077,0.8168427252058392,0.34633869381980015,0.45423979415629345,1.1269865116293418,0.010098041051706573,1.1022886881548155,0.08405206988062329,1.0355634820649082,0.48829110990902336,1.1006439424702688,0.02915578159137823,1.1138694231801156,0.013054262827494433 +51067,0.5158214511344659,0.01275443113962482,0.10020887686452598,0.4164669703192295,0.03597862325704687,0.01636852511421313,0.024726445772221203,0.19427047216460805,0.805729527835392,0.35903628882785465,0.4549514025945155,1.2649340150874568,0.010098041051706573,1.19343711805221,0.08405206988062329,1.0566615142671356,0.48829110990902336,1.2353527057953744,0.02915578159137823,1.2487601065495184,0.013054262827494433 +51069,0.4907963279103301,0.00965655108890004,0.08335780041772109,0.40881717960965647,0.027420081365796448,0.01250642522810165,0.019675271675350266,0.16984193987887944,0.8301580601211206,0.32894439666581216,0.4561045994452098,0.957444209423709,0.010098041051706573,0.992960656764657,0.08405206988062329,1.0050171426621126,0.48829110990902336,0.9412996885376355,0.02915578159137823,0.9516850935634567,0.013054262827494433 +51071,0.5155565319518581,0.013140669291418154,0.10131638587375089,0.41574832360235375,0.03782129317452709,0.016874647889228996,0.025488318888461314,0.1965184797294192,0.8034815202705808,0.3732988780477794,0.44616792480787487,1.3027090760137932,0.010098041051706573,1.2029283586658446,0.08405206988062329,1.056011556793037,0.48829110990902336,1.2950248852303743,0.02915578159137823,1.297396405935902,0.013054262827494433 +51073,0.5047647140715095,0.010906633053769911,0.09157774390885938,0.41363905734982026,0.030776489660156815,0.014044415081940305,0.02160736032000997,0.18142659610688566,0.8185734038931143,0.3360695333441103,0.4563358341715682,1.0819918711426177,0.010098041051706573,1.090606237170614,0.08405206988062329,1.0332782372744194,0.48829110990902336,1.0563662429453544,0.02915578159137823,1.071346130236194,0.013054262827494433 +51075,0.5209585399225545,0.011947025022930137,0.09960499159268091,0.4217234116004537,0.0335325298217757,0.015311862546796815,0.022932775081691104,0.1911956210708978,0.8088043789291022,0.336655114222606,0.45662712083397416,1.184392775519529,0.010098041051706573,1.1841650446596068,0.08405206988062329,1.0668693699419842,0.48829110990902336,1.1515899376917296,0.02915578159137823,1.1715282687133972,0.013054262827494433 +51077,0.5314613456928159,0.015246115411471861,0.11225350054220265,0.4209222570794776,0.04428131768428324,0.019716443168913945,0.02868715765508203,0.21121667916576017,0.7887833208342399,0.39447605170794037,0.445254211030669,1.5121046129223874,0.010098041051706573,1.3339397848115346,0.08405206988062329,1.088758757683109,0.48829110990902336,1.5161325913826624,0.02915578159137823,1.5102685598967631,0.013054262827494433 +51079,0.4930214498915937,0.009641953434607354,0.08355256393980504,0.41066337019443877,0.026850703686373295,0.012320723978582332,0.019556863979706036,0.16947044384818694,0.8305295561518131,0.32136301293779246,0.45886037559734744,0.9573854708846983,0.010098041051706573,0.9975583846998648,0.08405206988062329,1.0094794225325985,0.48829110990902336,0.9233711444834994,0.02915578159137823,0.9427594735389777,0.013054262827494433 +51081,0.49831909477057057,0.010014881869654971,0.08774370798685402,0.41125825521326564,0.02848493935932335,0.013001285575341307,0.020097327143897406,0.17607936141249375,0.8239206385875062,0.3246379713470855,0.4564266544975418,0.9931159783142979,0.010098041051706573,1.045563316170337,0.08405206988062329,1.0203590757117786,0.48829110990902336,0.977590547173919,0.02915578159137823,0.9899605678037005,0.013054262827494433 +51083,0.5197882156922167,0.013934238230053,0.10469882926926076,0.4164920839461842,0.040188993987779795,0.017947641093295108,0.026807530085106647,0.20142593869664854,0.7985740613033514,0.38385332737984257,0.446580999234577,1.3824361014241555,0.010098041051706573,1.2447206132917468,0.08405206988062329,1.0647129134025546,0.48829110990902336,1.378003752699841,0.02915578159137823,1.3766883425034546,0.013054262827494433 +51085,0.4961833526213623,0.00993185960876918,0.08591783864628458,0.41114175195515357,0.028140241388426634,0.012863845577242608,0.020016511147136744,0.17315743906436237,0.8268425609356376,0.32752501496548675,0.4571334481349965,0.984633448656076,0.010098041051706573,1.0240367007510685,0.08405206988062329,1.0162645105280474,0.48829110990902336,0.966239155534058,0.02915578159137823,0.9781309758097496,0.013054262827494433 +51087,0.4877981003914563,0.009850996504811773,0.08337309467621938,0.4056855048027162,0.028775329668820557,0.012814422959337653,0.020194823425729584,0.17091721884384697,0.829082781156153,0.3451392776119198,0.445326712389422,0.9753640644333269,0.010098041051706573,0.9912217755361317,0.08405206988062329,0.9983889106928423,0.48829110990902336,0.9869477090433766,0.02915578159137823,0.9819048297656243,0.013054262827494433 +51089,0.5199063647141697,0.013642397982696772,0.1041249253953013,0.4175703577064592,0.039297592186006536,0.017517491468469967,0.02624010573557219,0.20027630446983724,0.7997236955301628,0.37740811853469874,0.4457650073204171,1.3529092625957653,0.010098041051706573,1.236929299676564,0.08405206988062329,1.0650765367278676,0.48829110990902336,1.34485724758742,0.02915578159137823,1.3476264110247655,0.013054262827494433 +51091,0.5660951810563852,0.017191019719851378,0.1289040249957834,0.43889203965412227,0.04826099163005048,0.022030364262059857,0.030367719590496015,0.22770733493126852,0.7722926650687315,0.37439476099857355,0.45648387067832846,1.7048208296254237,0.010098041051706573,1.528560010253483,0.08405206988062329,1.1588185518413217,0.48829110990902336,1.6576837319817774,0.02915578159137823,1.679768336111735,0.013054262827494433 +51093,0.5088700971558029,0.011234546955164001,0.09359747770643065,0.41607485936639177,0.03191334388450549,0.014507566346644593,0.022077435907428205,0.18393196658551841,0.8160680334144816,0.3409637168279469,0.4545924864266035,1.113497659877842,0.010098041051706573,1.113193095577181,0.08405206988062329,1.0423223908507424,0.48829110990902336,1.0965874474963917,0.02915578159137823,1.1074566851862966,0.013054262827494433 +51095,0.5220876599323176,0.014084999961317332,0.10590937348593188,0.4176292868562317,0.0407890338052742,0.01818748887468539,0.02697822806833489,0.20285745405218303,0.797142545947817,0.38513148046043605,0.44589163257732445,1.3967708214744783,0.010098041051706573,1.2584986573900223,0.08405206988062329,1.0693145865353608,0.48829110990902336,1.3970525564733896,0.02915578159137823,1.394535239765562,0.013054262827494433 +51097,0.5147686012498263,0.013200164994386785,0.1010396899098957,0.41451509804497455,0.03719734626541968,0.016803770330171466,0.025642910158734628,0.1962817655633572,0.8037182344366428,0.36814588701322426,0.4517464824041226,1.3090649411024216,0.010098041051706573,1.2026349696054202,0.08405206988062329,1.0539949043229793,0.48829110990902336,1.2745597861889832,0.02915578159137823,1.286827178799661,0.013054262827494433 +51099,0.4792903885082053,0.008330712712850581,0.07532334208820626,0.40479370527368286,0.02321465831296639,0.010671058973780389,0.017381347326367178,0.15715596201010976,0.8428440379898903,0.3082000568400326,0.4596690086892272,0.8273266350270514,0.010098041051706573,0.8999872349824531,0.08405206988062329,0.9812702399435165,0.48829110990902336,0.7982972509723402,0.02915578159137823,0.8153653626160656,0.013054262827494433 +51101,0.4953055875426601,0.009853991450551328,0.08510621791716191,0.4115227531155038,0.02770870630639733,0.012719389519297013,0.01989477142674595,0.17182567703182194,0.8281743229681781,0.3255779305498875,0.45903945780248806,0.9777017733030446,0.010098041051706573,1.0146407949833018,0.08405206988062329,1.0144116305562811,0.48829110990902336,0.9527799190767395,0.02915578159137823,0.967693474604217,0.013054262827494433 +51103,0.5677108328556157,0.021233328525177536,0.1410724328475551,0.42771748356800987,0.0634074134834835,0.02792611938115488,0.03740166171988081,0.2484934665381551,0.7515065334618449,0.44946707307445716,0.4404235695314892,2.1051427771778313,0.010098041051706573,1.6696366272016485,0.08405206988062329,1.1619183904798491,0.48829110990902336,2.1646663139714697,0.02915578159137823,2.1233165320629337,0.013054262827494433 +51105,0.5104436564585116,0.012307074665377563,0.09716638190667505,0.414701434527358,0.035240046531705385,0.015822564152885882,0.024110544836162286,0.19035672336653406,0.8096432766334659,0.36267735651155797,0.44899384961510647,1.2209573695880622,0.010098041051706573,1.155488911549815,0.08405206988062329,1.0450511131409055,0.48829110990902336,1.20776045105897,0.02915578159137823,1.212089570188771,0.013054262827494433 +51107,0.46211899199352874,0.005855211432200419,0.06314276696413548,0.39889548230081484,0.01645219495129493,0.007579836013407302,0.012670354462043861,0.13663746363624826,0.8633625363637517,0.2605554957805322,0.46071883027441896,0.5806790218644227,0.010098041051706573,0.7529175826033592,0.08405206988062329,0.9455379281459328,0.48829110990902336,0.566802183170986,0.02915578159137823,0.5798351133624421,0.013054262827494433 +51109,0.5068692104134068,0.0110531982498046,0.0923151524948843,0.41527445532490564,0.03087753912804661,0.014116297178544518,0.021806805429727166,0.18212815179598554,0.8178718482040145,0.33447964167916755,0.45717040856155655,1.0967201149289636,0.010098041051706573,1.1002645383520036,0.08405206988062329,1.03803274874418,0.48829110990902336,1.0605888912261934,0.02915578159137823,1.0804212507644735,0.013054262827494433 +51111,0.5160122091241532,0.012798377183176345,0.10050697164492335,0.4165346377505239,0.03670921157175574,0.016463124209962716,0.02480246970299309,0.19477634417898285,0.8052236558210172,0.36524045019925677,0.44847392534656155,1.2700364663118489,0.010098041051706573,1.1962704216211981,0.08405206988062329,1.0566005725308003,0.48829110990902336,1.2594776550561577,0.02915578159137823,1.2627371913929823,0.013054262827494433 +51113,0.5165812008624737,0.012670933915227837,0.10031076313933282,0.4173024687246766,0.036859064184360454,0.016427431651729864,0.024528445661732748,0.19418198527522093,0.8058180147247791,0.36744874658328325,0.445682276944517,1.2549802919828852,0.010098041051706573,1.1896253822547778,0.08405206988062329,1.0578413567935487,0.48829110990902336,1.262318457131062,0.02915578159137823,1.2586059708610362,0.013054262827494433 +51115,0.5485818730980332,0.01746453003732832,0.12358892178133016,0.42617651435389,0.05021303101208055,0.022401418681681592,0.031835776743223444,0.22528801595900427,0.7747119840409957,0.4062907118885953,0.4461275933789403,1.7325421994306698,0.010098041051706573,1.4680661987896644,0.08405206988062329,1.1236124075437843,0.48829110990902336,1.720048693246416,0.02915578159137823,1.7210694053073667,0.013054262827494433 +51117,0.5264498799093892,0.014508588464549822,0.10856049011411614,0.4196561065275775,0.042047260912596786,0.018733595409902205,0.027559296750237633,0.20621239410825057,0.7937876058917495,0.3873164248650474,0.4455366414674083,1.439146458174882,0.010098041051706573,1.2902391345691673,0.08405206988062329,1.0784471549117818,0.48829110990902336,1.4405049098182405,0.02915578159137823,1.4361580341357485,0.013054262827494433 +51119,0.5562666628673264,0.017251973920219894,0.12517288551401662,0.4323156187824576,0.04870351576128093,0.022031190231046258,0.031013855533410985,0.22502316581188195,0.774976834188118,0.3890899819180665,0.4523531799846152,1.7094595681000415,0.010098041051706573,1.4886114725122774,0.08405206988062329,1.138982971393558,0.48829110990902336,1.6703136766142257,0.02915578159137823,1.6836667200380317,0.013054262827494433 +51121,0.4528466908722685,0.0075881103171929355,0.066566918083049,0.38700544752189536,0.021911501499449565,0.0098372318054891425,0.01675646630557639,0.1469965872000268,0.8530034127999732,0.32916502867254177,0.44895288466362115,0.7508731545960752,0.010098041051706573,0.7943715506347735,0.08405206988062329,0.9280989880186526,0.48829110990902336,0.7528966692717552,0.02915578159137823,0.750954786586005,0.013054262827494433 +51125,0.5312697076945834,0.01468474579367661,0.11102024838975712,0.4217919222180321,0.04243262601910997,0.01891598122544489,0.02764084904708812,0.20897153890351397,0.7910284610964861,0.382206188821902,0.44578860655303026,1.4560427674347745,0.010098041051706573,1.3192326314394092,0.08405206988062329,1.088526258821882,0.48829110990902336,1.4521135960123033,0.02915578159137823,1.4534461307001139,0.013054262827494433 +51127,0.5041076513807008,0.009742313408449318,0.08787160627188559,0.4163137145218151,0.02664805763747945,0.012359054590702976,0.019325859033811704,0.17431119331597922,0.8256888066840208,0.3032613009830169,0.4637881964545307,0.9668468070068694,0.010098041051706573,1.0513500137261609,0.08405206988062329,1.0326954638483967,0.48829110990902336,0.9194768032387923,0.02915578159137823,0.9486602022716475,0.013054262827494433 +51131,0.5305806636425179,0.015499710614796342,0.11257183954907221,0.4196358902695321,0.04556304311588481,0.020114083157710926,0.029212731780288496,0.21216724856923586,0.7878327514307641,0.40474636728329394,0.4414560964804934,1.5359391494701158,0.010098041051706573,1.3363902035969337,0.08405206988062329,1.0864640077047865,0.48829110990902336,1.5556897270381103,0.02915578159137823,1.540581414010238,0.013054262827494433 +51133,0.5671655127299993,0.01984206970121058,0.13563764444117396,0.4317392144328548,0.05578666712971628,0.025142500761408882,0.034984619579040685,0.23915002128442997,0.76084997871557,0.41129191943399573,0.4506901389707873,1.9666402924644089,0.010098041051706573,1.6053321675573795,0.08405206988062329,1.16115621932239,0.48829110990902336,1.9115243202321426,0.02915578159137823,1.9255441566409814,0.013054262827494433 +51135,0.509840868848712,0.012472063303195856,0.097881426128439,0.41324520519966956,0.03637421338677051,0.01616890254143248,0.024462658969178794,0.19198426824720463,0.8080157317527954,0.37161507372236935,0.44451552448727855,1.2379393699941041,0.010098041051706573,1.1620069469216658,0.08405206988062329,1.043543035860769,0.48829110990902336,1.2457849071126972,0.02915578159137823,1.2408826844296463,0.013054262827494433 +51137,0.5128813384874189,0.013087613806125498,0.10012422753902972,0.41428301241448706,0.037394016259287136,0.0168002315406072,0.025517820251996826,0.1952190887551386,0.8047809112448614,0.373476202297895,0.44927593292241547,1.2980724993618187,0.010098041051706573,1.1891443833191662,0.08405206988062329,1.0503827540952249,0.48829110990902336,1.2808571050674826,0.02915578159137823,1.2853020998983586,0.013054262827494433 +51139,0.5122035967330425,0.012751093991097683,0.09921217046385296,0.4142499879246351,0.03667574510276894,0.016376604022528274,0.024894581124434153,0.19369674695111866,0.8063032530488814,0.3696698190483738,0.44652409860084546,1.2646093486465262,0.010098041051706573,1.1784652306340622,0.08405206988062329,1.0488615869460864,0.48829110990902336,1.256128366993667,0.02915578159137823,1.2588715556555283,0.013054262827494433 +51141,0.5296340978181643,0.014739221096628115,0.11008857593475468,0.420723395010352,0.04240229379404287,0.018919464191727575,0.02782906379582916,0.20785779538792204,0.792142204612078,0.3851652492913806,0.44618963973089554,1.4619922196773427,0.010098041051706573,1.309483192587126,0.08405206988062329,1.08498518119213,0.48829110990902336,1.4515176764165987,0.02915578159137823,1.4543994717964164,0.013054262827494433 +51143,0.5149093645971186,0.012499959736448124,0.09925092967153662,0.41651949917795683,0.035612660319996284,0.016087707588169523,0.024276038844678015,0.19275417480354762,0.8072458251964524,0.35881437521898957,0.4517412471748531,1.2391714523579977,0.010098041051706573,1.180661575054288,0.08405206988062329,1.0544957687536891,0.48829110990902336,1.2220031070480781,0.02915578159137823,1.22997180619691,0.013054262827494433 +51145,0.4999468543543142,0.0095088292241224,0.0859852436741893,0.41452737388304306,0.02630756499128522,0.012172626176939035,0.019019680074601402,0.17198876825665801,0.828011231743342,0.3059544157479909,0.46270440388425926,0.9442904994242858,0.010098041051706573,1.0262199458557955,0.08405206988062329,1.0240789453372634,0.48829110990902336,0.9055285900362153,0.02915578159137823,0.9316059002956352,0.013054262827494433 +51147,0.47700120070405916,0.010364684910517303,0.08192714902059359,0.3965515792612907,0.030381838770924388,0.01346615221790469,0.02172884448764261,0.171754597052729,0.828245402947271,0.37083969275297823,0.44323032320189526,1.0262457786241437,0.010098041051706573,0.9729178156524272,0.08405206988062329,0.9774564519198203,0.48829110990902336,1.039123624820553,0.02915578159137823,1.0298933169352145,0.013054262827494433 +51149,0.47989168388454767,0.008238117704700041,0.07596593937504445,0.40450893245489816,0.023197114848838147,0.010655161767300223,0.017166619012889517,0.15829809502037617,0.8417019049796238,0.3053620483031718,0.45933133653618563,0.8168792362104507,0.010098041051706573,0.9084649009879109,0.08405206988062329,0.9825512480460056,0.48829110990902336,0.7976930897704131,0.02915578159137823,0.8113131136325163,0.013054262827494433 +51153,0.4629408246638652,0.006120338254915422,0.0641489142025369,0.3989580490010439,0.016891920387324372,0.007850718587490873,0.013220562821089094,0.1385682808361404,0.8614317191638596,0.2633235588990896,0.46476175635909467,0.6073002397241066,0.010098041051706573,0.7669393302759175,0.08405206988062329,0.9474366361945097,0.48829110990902336,0.5827866927345886,0.02915578159137823,0.600566431583123,0.013054262827494433 +51155,0.5195475145629337,0.012921053577867759,0.1019611383762425,0.4186602787865996,0.036667159885943296,0.016649677935987997,0.024869820787685838,0.1962498819035189,0.8037501180964811,0.35961897316837865,0.4540760175529932,1.2810362457608375,0.010098041051706573,1.212934975656196,0.08405206988062329,1.0638714402897818,0.48829110990902336,1.2584371932197491,0.02915578159137823,1.269327160558915,0.013054262827494433 +51157,0.5306279704117518,0.014019158571097513,0.10841432864602499,0.42287723507455377,0.03999866655751036,0.01802129764450354,0.026419938926738173,0.20431325653997967,0.7956867434600203,0.36894262093442304,0.45054746059077727,1.3908769113960209,0.010098041051706573,1.291669080065343,0.08405206988062329,1.0866252150560207,0.48829110990902336,1.3711074709908582,0.02915578159137823,1.378813222697814,0.013054262827494433 +51159,0.5176151569948024,0.01313470697235162,0.10256427672375026,0.41603409161291005,0.03797830030345069,0.016975560453307705,0.02537542959253705,0.19814774613483768,0.8018522538651623,0.37028779918901583,0.4469805209203982,1.303419337909984,0.010098041051706573,1.2178903945640394,0.08405206988062329,1.0598253567864,0.48829110990902336,1.3018957062863559,0.02915578159137823,1.3026133374707296,0.013054262827494433 +51161,0.5130730028744084,0.012742991081221946,0.09972220928085562,0.41470276925237176,0.03729856540151044,0.01657957711239538,0.02483660416710956,0.19436261257594553,0.8056373874240544,0.3740246598073606,0.44450978030709926,1.2628010190425063,0.010098041051706573,1.1839097276172792,0.08405206988062329,1.0506060458986906,0.48829110990902336,1.2751987639680764,0.02915578159137823,1.267763506742501,0.013054262827494433 +51163,0.526620707981418,0.01421775544568036,0.10779384333020363,0.42029788849652616,0.04090010381678983,0.01827899344026636,0.026998094131501636,0.2046897163299685,0.7953102836700315,0.3794289409600233,0.4469180206032309,1.4099700362589833,0.010098041051706573,1.2818907912187933,0.08405206988062329,1.0785698364839607,0.48829110990902336,1.4013162786781075,0.02915578159137823,1.4035110728192879,0.013054262827494433 +51165,0.5011229484016755,0.011667900581496773,0.09246378310241485,0.41033529477863034,0.03379916498754418,0.01507358046271343,0.023283508804997608,0.18451316866913953,0.8154868313308605,0.36553949939629343,0.44597493660770654,1.1564819181127293,0.010098041051706573,1.0991185344323786,0.08405206988062329,1.026159851412132,0.48829110990902336,1.158581760247305,0.02915578159137823,1.155646983681501,0.013054262827494433 +51167,0.5131521420195786,0.01228419528517356,0.09817524014361974,0.41613853607264717,0.035317222325210534,0.015828366231730874,0.02393870020073866,0.1913179973433181,0.8086820026566819,0.35973655143135136,0.4481769853240155,1.2177045865603473,0.010098041051706573,1.1664203282373227,0.08405206988062329,1.0508179535781053,0.48829110990902336,1.2103190772179362,0.02915578159137823,1.2137369432650922,0.013054262827494433 +51169,0.52459265762119,0.014328395328834726,0.10759016361193811,0.4185752485434199,0.04154327451270553,0.01850565879968808,0.027313373759000083,0.2050927744582146,0.7949072255417854,0.3861252099452698,0.44545498680004963,1.421389848979965,0.010098041051706573,1.27824857676996,0.08405206988062329,1.074250399868017,0.48829110990902336,1.4235970310491668,0.02915578159137823,1.419380622364427,0.013054262827494433 +51171,0.5169354316718249,0.013452894711059777,0.10254939512290287,0.4157525313597792,0.0388634830277932,0.01734825774525968,0.0260243231297798,0.1983795051371253,0.8016204948628747,0.37897330336484475,0.4463896798146754,1.3344023307950783,0.010098041051706573,1.2181588674420063,0.08405206988062329,1.058751732685344,0.48829110990902336,1.3322162132169741,0.02915578159137823,1.3307608030481055,0.013054262827494433 +51173,0.5152400679476947,0.013389481179170836,0.10181215326317272,0.4149225347946053,0.03850137869351655,0.01719904899850063,0.02598687876217361,0.1976013893265543,0.8023986106734458,0.3781609312789497,0.44671254854042064,1.3274193041045206,0.010098041051706573,1.2089472671834947,0.08405206988062329,1.0552786273844128,0.48829110990902336,1.3191025597398842,0.02915578159137823,1.320431165401666,0.013054262827494433 +51175,0.5110570637356484,0.01164920180418021,0.09552543701822439,0.41641905608529484,0.03283056735428744,0.0149999265013337,0.02279432695642365,0.1869173597170673,0.8130826402829328,0.3436840320136301,0.45688904305136285,1.1549940317597804,0.010098041051706573,1.1358550812225714,0.08405206988062329,1.0466034118628214,0.48829110990902336,1.128515349243811,0.02915578159137823,1.1430782131226205,0.013054262827494433 +51177,0.4757453809531032,0.007894591987248217,0.07333393240136649,0.403599621863812,0.022323021177980566,0.010216817430837976,0.01659415372868629,0.15414533768977445,0.8458546623102255,0.30440234754906725,0.4576807659402235,0.7827429868801921,0.010098041051706573,0.8763383352728854,0.08405206988062329,0.97412999402043,0.48829110990902336,0.7671125987794861,0.02915578159137823,0.7784604345030655,0.013054262827494433 +51179,0.46524285231428325,0.006383956129777746,0.06593009250209542,0.3996703982244148,0.017670725959774806,0.008180259919730528,0.013721771539362035,0.1417111346775898,0.8582888653224102,0.26802216240198945,0.4629272129708686,0.6332577546647198,0.010098041051706573,0.7872154362083623,0.08405206988062329,0.9527269921985559,0.48829110990902336,0.6094703523620741,0.02915578159137823,0.6269582889046295,0.013054262827494433 +51181,0.5095130164709185,0.011638002213749766,0.09530072836463677,0.41487441369595135,0.033582407308249934,0.015070973735033012,0.02284142276552424,0.187042774735621,0.812957225264379,0.3523835324716296,0.4487758604288812,1.1536637722258067,0.010098041051706573,1.132377476916023,0.08405206988062329,1.0432311728905854,0.48829110990902336,1.1526673009585189,0.02915578159137823,1.1553890850858166,0.013054262827494433 +51183,0.5032088797915053,0.011536900477827697,0.0934722864336773,0.4109461514764702,0.0330184379291676,0.014888758834201741,0.02292666314355936,0.1857524582483634,0.8142475417516366,0.3532430754499157,0.450922568358372,1.1444369119684854,0.010098041051706573,1.1114169365378768,0.08405206988062329,1.0302361073726007,0.48829110990902336,1.1327163731956587,0.02915578159137823,1.138482475834718,0.013054262827494433 +51185,0.5173061034331172,0.013046635527531734,0.10161216730063218,0.4169612820807247,0.03742364718488711,0.016751381660277315,0.025220339448824115,0.1964256107288896,0.8035743892711105,0.3682988777728224,0.4476148884559298,1.293517420339658,0.010098041051706573,1.208118391986917,0.08405206988062329,1.0596882770140805,0.48829110990902336,1.2829789046838045,0.02915578159137823,1.286846612217214,0.013054262827494433 +51187,0.4932657948940395,0.010072180348526014,0.08570535318992843,0.40908537666292644,0.028975246586996604,0.013021876194002989,0.02041937724607412,0.17375085415833297,0.826249145841667,0.33807977574966225,0.4494138179257772,0.9975492459075256,0.010098041051706573,1.0187278447988868,0.08405206988062329,1.0100210407591024,0.48829110990902336,0.994647688391948,0.02915578159137823,0.9975098274910057,0.013054262827494433 +51191,0.5174834013322818,0.013118711959009632,0.10181735887073948,0.4169446358182884,0.03713982648472325,0.016836821342658938,0.02535098116236189,0.1967548304131236,0.8032451695868764,0.36476910122834255,0.4533360259392822,1.300891783605119,0.010098041051706573,1.210837995271455,0.08405206988062329,1.0599807161404158,0.48829110990902336,1.2732667729032032,0.02915578159137823,1.2844321809332266,0.013054262827494433 +51193,0.5286434939274424,0.014695963494117007,0.10972514859185098,0.41996277671927207,0.042025006458149945,0.018811825215202506,0.027799384013858806,0.2075598202801509,0.792440179719849,0.38300250213806536,0.44763408267256344,1.4570552720624126,0.010098041051706573,1.305793662431003,0.08405206988062329,1.0830428990464855,0.48829110990902336,1.4392939433611756,0.02915578159137823,1.4451932809381884,0.013054262827494433 +51195,0.4998718159160979,0.010986771909850817,0.09040896691982274,0.4109031567193173,0.0313536487856968,0.014188049070503384,0.0219791785814444,0.18086430168929074,0.8191356983107092,0.3467979986266419,0.4525166805139382,1.089475136262589,0.010098041051706573,1.0755045943039157,0.08405206988062329,1.0237255855424516,0.48829110990902336,1.0771434765452066,0.02915578159137823,1.083810017283235,0.013054262827494433 +51197,0.5144285275367988,0.012507168734800038,0.09905455070241177,0.4164660111981572,0.03606511748486464,0.016109163962909123,0.02431274329728022,0.19255260041022135,0.8074473995897786,0.36409349423243137,0.44666883366370885,1.2396982664273843,0.010098041051706573,1.176269771229454,0.08405206988062329,1.0534139151763844,0.48829110990902336,1.2351668054772498,0.02915578159137823,1.2373950025880656,0.013054262827494433 +51199,0.4901949481399424,0.009446109075627058,0.08256036969317536,0.4088345402039977,0.026619702215422,0.012184358179852518,0.019270106947186148,0.1684235425241587,0.8315764574758413,0.32242711986817146,0.4577195522793477,0.9373708852231968,0.010098041051706573,0.9842223835335309,0.08405206988062329,1.004026299688059,0.48829110990902336,0.9139450780392111,0.02915578159137823,0.9279703797710368,0.013054262827494433 +51510,0.4820513128034861,0.008144430738647575,0.07681257787609452,0.40600239197968535,0.023571562262266428,0.010647355414750304,0.016895360560853296,0.1593452311733628,0.8406547688266373,0.3068711259800373,0.4517034253514324,0.8066083589442214,0.010098041051706573,0.9192568557277884,0.08405206988062329,0.9867507420809613,0.48829110990902336,0.8091342761642509,0.02915578159137823,0.8139442150555021,0.013054262827494433 +51515,0.5069681027195718,0.012619918912534726,0.09756166067121311,0.41113266524063075,0.037576707896014055,0.01657370067291726,0.024892924909548805,0.19244141820334426,0.8075585817966557,0.38515855139704047,0.44106313727061,1.2496231066033625,0.010098041051706573,1.1563084137051343,0.08405206988062329,1.0375471371449683,0.48829110990902336,1.2820448018613813,0.02915578159137823,1.2633194654577022,0.013054262827494433 +51520,0.5136701940783084,0.013855049314485529,0.10287708619069516,0.41265710025835345,0.04089769668028435,0.018042824482937203,0.02697265575112062,0.20027848097219297,0.7997215190278071,0.397539415185958,0.4411696977457205,1.374486438237748,0.010098041051706573,1.2218482969604454,0.08405206988062329,1.0518603440889447,0.48829110990902336,1.393867072952923,0.02915578159137823,1.3786814243534835,0.013054262827494433 +51530,0.5007696935450044,0.012171120610639541,0.09380614910802554,0.40891782679693145,0.03547988191661378,0.015772060666469044,0.02430482668485551,0.1873239341701399,0.8126760658298601,0.37822554548908904,0.4445353201438822,1.2064182092962341,0.010098041051706573,1.113295461232341,0.08405206988062329,1.0251656500672823,0.48829110990902336,1.2136286982395323,0.02915578159137823,1.2067010222201189,0.013054262827494433 +51540,0.45422755553087,0.007687195164603648,0.06783214067432985,0.3868948814527019,0.022370328008071365,0.010013306763885788,0.01692366539854541,0.14933515117781065,0.8506648488221893,0.32978950370258786,0.4476155539727857,0.7606312454176162,0.010098041051706573,0.8086299223867007,0.08405206988062329,0.9313788298660127,0.48829110990902336,0.7682596381352255,0.02915578159137823,0.7645360167869628,0.013054262827494433 +51550,0.47999970674385223,0.008517479556988516,0.07690378946595686,0.40372961328620205,0.02419570771499874,0.011032396980129784,0.017744759918225942,0.16021632593829044,0.8397836740617095,0.31462308792610927,0.45596504595279447,0.8441944949613112,0.010098041051706573,0.9181271414607521,0.08405206988062329,0.9825946130266804,0.48829110990902336,0.8310358137137566,0.02915578159137823,0.840477564592216,0.013054262827494433 +51570,0.5121752558249519,0.013877835073768665,0.1026099960133556,0.41156279398981177,0.04127833105951134,0.018139689390474008,0.027095871805473837,0.20034157223797044,0.7996584277620296,0.40228372150154457,0.4394482268268515,1.3754108307323845,0.010098041051706573,1.217740914400832,0.08405206988062329,1.0485042648893281,0.48829110990902336,1.4061064462375479,0.02915578159137823,1.3854244317791844,0.013054262827494433 +51580,0.5135959992512578,0.013105060679519769,0.10099282591663948,0.4141814623799769,0.038385346422333835,0.01704070786529442,0.025516282639710758,0.19663865385219345,0.8033613461478065,0.3800799321529778,0.4439378422641924,1.2989892271989345,0.010098041051706573,1.1985146775860582,0.08405206988062329,1.0519110937039091,0.48829110990902336,1.3120880380672428,0.02915578159137823,1.3040459993219082,0.013054262827494433 +51590,0.515299660826487,0.014294185334208403,0.10495425570245301,0.4124981002329868,0.042576359213976955,0.018714318401619863,0.027739558980656064,0.2036761590995758,0.7963238409004242,0.4056658677536775,0.4395471747024422,1.4169305223543123,0.010098041051706573,1.244087574472637,0.08405206988062329,1.0551136699402464,0.48829110990902336,1.450396723101681,0.02915578159137823,1.4276679309689433,0.013054262827494433 +51595,0.5025627396568686,0.012703570464340654,0.09615009657141718,0.4089010329271462,0.038631814216028834,0.016860432647369264,0.02527758120909279,0.19131958854941164,0.8086804114505883,0.4017865357767412,0.4364390590896364,1.2575398927623014,0.010098041051706573,1.1372577178517882,0.08405206988062329,1.0283336817541178,0.48829110990902336,1.3165132608367816,0.02915578159137823,1.2834535100154238,0.013054262827494433 +51600,0.49799782423406114,0.010716516159845823,0.08961854034744815,0.40964217402337977,0.031289330523294384,0.013972053113360763,0.021519202772277604,0.17995769456480004,0.8200423054352,0.3491390330838538,0.44654369012334105,1.0609629917839132,0.010098041051706573,1.064907836464602,0.08405206988062329,1.0196633841016758,0.48829110990902336,1.0731647571368972,0.02915578159137823,1.0691073069266748,0.013054262827494433 +51610,0.49583361393709924,0.009858504943798857,0.08578032152096005,0.41104797813102,0.028162125519482648,0.012742403408335922,0.019882687794235535,0.17300223121186378,0.8269977687881362,0.32830519890976806,0.45246596886022283,0.9765450107032773,0.010098041051706573,1.021423348353637,0.08405206988062329,1.015436509411798,0.48829110990902336,0.9669718569482121,0.02915578159137823,0.9744646410881895,0.013054262827494433 +51620,0.5050168433378456,0.012902209241879438,0.09728376738195334,0.4098565570598768,0.038418933662089025,0.01689653372878766,0.02554807708314024,0.19263469855573223,0.8073653014442678,0.3949161786801438,0.43979705104259037,1.2773989563491464,0.010098041051706573,1.1521800226378809,0.08405206988062329,1.0337948956487386,0.48829110990902336,1.309882139382355,0.02915578159137823,1.288893573182969,0.013054262827494433 +51630,0.4630314144210642,0.008609013280238952,0.07214698011062229,0.3916074133200666,0.02520232942987384,0.011190965271413302,0.018592719655971816,0.15581443907176112,0.8441855609282389,0.3493192562076936,0.44404487698458445,0.8521924292962586,0.010098041051706573,0.859932544762017,0.08405206988062329,0.9483442556667656,0.48829110990902336,0.8634461903640528,0.02915578159137823,0.8567255797737261,0.013054262827494433 +51640,0.5336150887241173,0.017767677517198495,0.12075454784835848,0.41460301520024656,0.054736812138841184,0.023583163878360847,0.03329680493046273,0.226295227402742,0.773704772597258,0.4532898604165099,0.4308464990350846,1.7586351500452402,0.010098041051706573,1.4323296400654737,0.08405206988062329,1.092680435991395,0.48829110990902336,1.8589990696143213,0.02915578159137823,1.7989652399897413,0.013054262827494433 +51650,0.4815436189061396,0.009286769795962107,0.07970847348802576,0.4026119020143748,0.02654084833256217,0.011977567278917467,0.019285417626460636,0.16552700598356843,0.8344729940164316,0.3329739884750055,0.4512880345359025,0.9201363524500138,0.010098041051706573,0.9511152808989068,0.08405206988062329,0.9862841937176082,0.48829110990902336,0.9110681742126951,0.02915578159137823,0.9163209089744667,0.013054262827494433 +51660,0.432396734536584,0.0066085766257621996,0.05789156409713404,0.37430828747547595,0.019811150809799345,0.008707217097992784,0.015283595129007767,0.13388529439099173,0.8661147056090083,0.34221135874924663,0.43951091895609945,0.6542797970806711,0.010098041051706573,0.6894196186574995,0.08405206988062329,0.8859770779295976,0.48829110990902336,0.6783294710714558,0.02915578159137823,0.6640355995632017,0.013054262827494433 +51670,0.4904338149289207,0.0109463047926882,0.08706596954670398,0.4050454440205552,0.03183420579146144,0.014152773406125209,0.022319637144666837,0.1775284796773701,0.8224715203226299,0.3656331624996712,0.44457755594208226,1.0845613424216858,0.010098041051706573,1.0337045318648581,0.08405206988062329,1.0043291421360854,0.48829110990902336,1.090697450448411,0.02915578159137823,1.085268459127048,0.013054262827494433 +51678,0.45279259696241414,0.010546570311955793,0.07507392691209078,0.37767503222900556,0.031623225246162776,0.013863036408544995,0.023292276381522318,0.16580201932568828,0.8341979806743117,0.4212278023393206,0.43838148388191883,1.0439570978991688,0.010098041051706573,0.8882142097064114,0.08405206988062329,0.9275613593482845,0.48829110990902336,1.0796005492696714,0.02915578159137823,1.05253825920181,0.013054262827494433 +51680,0.47855055612666586,0.010665360305360775,0.08322927369821423,0.39750962127205425,0.0317534892298305,0.013980895281420679,0.022286799521632567,0.17391950052647012,0.8260804994735299,0.38151827859230497,0.44029477139433443,1.0558003411206291,0.010098041051706573,0.9872477565021875,0.08405206988062329,0.9804003599427145,0.48829110990902336,1.0843654952204118,0.02915578159137823,1.0660935754246335,0.013054262827494433 +51683,0.46235798828309393,0.006266796623280391,0.06447788970765406,0.3979322395824287,0.017673993994399666,0.008112017655165626,0.013553992322164308,0.13945447324720026,0.8605455267527997,0.27410937415189035,0.4589804465100571,0.621029070052975,0.010098041051706573,0.772718743561136,0.08405206988062329,0.9465381177080772,0.48829110990902336,0.6084477898005132,0.02915578159137823,0.6189277501275323,0.013054262827494433 +51685,0.4516650078269543,0.005220892503306964,0.05741375441081835,0.3935532445342033,0.014191932998557338,0.006653119040470069,0.011559214047653735,0.12711579027794687,0.8728842097220532,0.24718698758155386,0.4687958321918785,0.5174376159555847,0.010098041051706573,0.6886458843435252,0.08405206988062329,0.9247433841344386,0.48829110990902336,0.49047842823549215,0.02915578159137823,0.5098438982667128,0.013054262827494433 +51690,0.5202336179072968,0.01428157808632482,0.10603110992052647,0.41591640956300757,0.04225690891576228,0.018623269922603054,0.027452239906706165,0.20381441389168495,0.796185586108315,0.3985331186991734,0.44071538596748555,1.4164091728568633,0.010098041051706573,1.2577289205906235,0.08405206988062329,1.0650671481718756,0.48829110990902336,1.4391523248510123,0.02915578159137823,1.4232376648221146,0.013054262827494433 +51700,0.4708875318323419,0.008372084248497811,0.07338947520983413,0.39860737803989926,0.023993306879645022,0.010801563321467648,0.0177793712564865,0.15585351118611532,0.8441464888138847,0.3269311684140499,0.45019068758009634,0.8287718110876836,0.010098041051706573,0.8765379699489889,0.08405206988062329,0.9639905181297068,0.48829110990902336,0.8234039843758827,0.02915578159137823,0.8265150024708139,0.013054262827494433 +51710,0.46208591149159495,0.007873216013279918,0.06975836808122879,0.39338123139114023,0.022848027315127622,0.010232934389925764,0.017038424711685082,0.1509640660890343,0.8490359339109657,0.3275309893792624,0.44786949213556676,0.7791109603531571,0.010098041051706573,0.8322099062093324,0.08405206988062329,0.9463223310797382,0.48829110990902336,0.7851553202734791,0.02915578159137823,0.7822260891439803,0.013054262827494433 +51720,0.49842283800095394,0.011750101736590732,0.09254974543940539,0.40719090314989725,0.034621600555910945,0.015282413549822665,0.023574565290221,0.1856852021681002,0.8143147978318999,0.3740863942038454,0.44141268180663296,1.1647828377556293,0.010098041051706573,1.0998688549875446,0.08405206988062329,1.0201978024370861,0.48829110990902336,1.1824458998425096,0.02915578159137823,1.1709366995667019,0.013054262827494433 +51730,0.49733406595211027,0.01124850956519257,0.09069583480600457,0.4082943744363896,0.03260675600447002,0.014554723981934154,0.02261761326093379,0.18236401046120565,0.81763598953879435,0.35951767878001023,0.44637142008051534,1.114955153732795,0.010098041051706573,1.0784346259776008,0.08405206988062329,1.0186779411929678,0.48829110990902336,1.1181743470245828,0.02915578159137823,1.1154137708405845,0.013054262827494433 +51735,0.5070667540139768,0.011631691501501463,0.0939345448112471,0.41389369047965285,0.03266269286732491,0.014892441006234889,0.0229391720309489,0.18525084531307665,0.8147491546869233,0.347717582844071,0.45594651569996486,1.1533787785692255,0.010098041051706573,1.1189929218539705,0.08405206988062329,1.0382642628126537,0.48829110990902336,1.1213580359186208,0.02915578159137823,1.1373678845388833,0.013054262827494433 +51740,0.4861464938684994,0.010179292168197056,0.0834910184021668,0.40383961778912164,0.029692042484643154,0.013216093736163441,0.020938734098842463,0.1717404516029499,0.8282595483970501,0.3556315763405824,0.4451055781359217,1.0079941525026137,0.010098041051706573,0.993091416047208,0.08405206988062329,0.99541900538649,0.48829110990902336,1.01784122829838,0.02915578159137823,1.0114736490982905,0.013054262827494433 +51750,0.43055455210107874,0.006684937981726837,0.05723722787408374,0.3730061047855456,0.01936637115163082,0.008633916348543583,0.015526343756220359,0.13293838746976364,0.8670616125302364,0.33835270978243265,0.4458200393322799,0.6607988359247612,0.010098041051706573,0.6816230253799537,0.08405206988062329,0.8820079776265841,0.48829110990902336,0.6651971959886482,0.02915578159137823,0.6597809816784896,0.013054262827494433 +51760,0.4751331000460237,0.009133447428486784,0.07758289419535416,0.39903736971607,0.026668114788135622,0.011892383223589306,0.019222923908273435,0.16328665417719604,0.836713345822804,0.3437370449339665,0.44594015430292466,0.904259548149396,0.010098041051706573,0.9250081895268583,0.08405206988062329,0.9732813919572145,0.48829110990902336,0.9153509584349476,0.02915578159137823,0.9100425864284021,0.013054262827494433 +51770,0.4976674767092353,0.01132060722477499,0.0910901776102082,0.40827869254283433,0.0334614566724085,0.014828101056339617,0.022747331812058742,0.1830342183751503,0.8169657816248497,0.36734429057319756,0.4431397354128491,1.1205008924789133,0.010098041051706573,1.0804731764642654,0.08405206988062329,1.0191462152662156,0.48829110990902336,1.1432614711996667,0.02915578159137823,1.1310485526643403,0.013054262827494433 +51775,0.5062525419189401,0.012809830923337977,0.09743433176357535,0.4102477805308637,0.036961914089909495,0.016509322325139943,0.025303242675646764,0.1924619111920949,0.8075380888079051,0.37935205610685224,0.4466576672674791,1.2704734415366419,0.010098041051706573,1.1579986207146453,0.08405206988062329,1.036600543802272,0.48829110990902336,1.2670683048861333,0.02915578159137823,1.2658378736049651,0.013054262827494433 +51790,0.5159984453992851,0.01377480817509328,0.10382118921942508,0.41415430179421175,0.04083942868578623,0.01803260874423831,0.026695445108239013,0.2012044612636132,0.7987955387363868,0.39336313707091614,0.4415489962648372,1.3652949471145281,0.010098041051706573,1.2318895160628225,0.08405206988062329,1.0568382554078424,0.48829110990902336,1.392633626878677,0.02915578159137823,1.375024372815125,0.013054262827494433 +51800,0.486093875800776,0.009055440989571856,0.08003041936259733,0.40717022507717343,0.025762463707389095,0.011735379689815188,0.018628996250269977,0.1646398429331324,0.8353601570668676,0.3219083932406498,0.4555224152125361,0.8982098016860887,0.010098041051706573,0.9537703516890839,0.08405206988062329,0.9953132407316115,0.48829110990902336,0.8844929610540346,0.02915578159137823,0.8940773040697036,0.013054262827494433 +51810,0.47773555885253627,0.008541867803177589,0.07600943075602926,0.40242777070699787,0.024327528613864606,0.011055665208699264,0.01787990792164212,0.15910356545071677,0.8408964345492832,0.320059344898263,0.45445081513123703,0.8468237848189069,0.010098041051706573,0.9074316409594365,0.08405206988062329,0.9774960553178305,0.48829110990902336,0.8352262893008695,0.02915578159137823,0.843076753151768,0.013054262827494433 +51820,0.5007513146762562,0.012316968855020894,0.09488529379412261,0.4081107078628634,0.036614698248665846,0.016143090237132465,0.024596977569562674,0.18948586057226327,0.8105141394277368,0.38588380543048745,0.44089098119825915,1.219400083007858,0.010098041051706573,1.1238059691467006,0.08405206988062329,1.0257219548374739,0.48829110990902336,1.2501703122710552,0.02915578159137823,1.232661742598692,0.013054262827494433 +51830,0.45570236817176085,0.009862235038847578,0.07436773376351327,0.3816832880580794,0.028701604943831623,0.012708079523644849,0.02164183407344146,0.16319365216790577,0.8368063478320942,0.385941637472801,0.4427654672452731,0.9765535116562012,0.010098041051706573,0.8806307469793209,0.08405206988062329,0.9334921059996591,0.48829110990902336,0.9807646302601492,0.02915578159137823,0.9721145642659463,0.013054262827494433 +51840,0.4887144364910364,0.010587382651937052,0.08603039240166611,0.4043262546749238,0.03088005757910363,0.013733814608314474,0.02166374033874327,0.17603407220659015,0.8239659277934098,0.3589435862959703,0.4447470531145665,1.0490117972589879,0.010098041051706573,1.0222893091850034,0.08405206988062329,1.0007457066281213,0.48829110990902336,1.0583864779782957,0.02915578159137823,1.052328700742417,0.013054262827494433 +53001,0.46317735135261806,0.008163712391027825,0.06956123564125394,0.394780900465531,0.02368615377088246,0.010562426771319782,0.017625456787097454,0.1501827225319072,0.8498172774680928,0.3405079503336937,0.4459325424250281,0.8073734975897207,0.010098041051706573,0.8301908341232744,0.08405206988062329,0.9483161875445822,0.48829110990902336,0.8134428038478532,0.02915578159137823,0.8084879401538799,0.013054262827494433 +53003,0.5173280405392986,0.013761377095529298,0.1035077768365811,0.4153545740008443,0.040150328477303286,0.01783158853076159,0.02660087220708834,0.20008151255183737,0.7999184874481626,0.38789673302222444,0.444120613878456,1.3654551359713465,0.010098041051706573,1.2292506734232442,0.08405206988062329,1.0593522998351328,0.48829110990902336,1.3725464985543603,0.02915578159137823,1.3650237162445213,0.013054262827494433 +53005,0.48388612434096434,0.009445999697797847,0.080459726964079,0.40468422963647266,0.02693866121091866,0.012166665397606882,0.019521121236247396,0.16627822728676564,0.8337217727132343,0.3348092546093941,0.45164328332231823,0.9364296989221058,0.010098041051706573,0.9596523562292656,0.08405206988062329,0.991116331387345,0.48829110990902336,0.9248375460453041,0.02915578159137823,0.9307445540209931,0.013054262827494433 +53007,0.501348591198665,0.011887308224741799,0.09308348406193231,0.4099130986572218,0.03469663368660351,0.015429071396499943,0.023710664462665895,0.185666192537573,0.814333807462427,0.37274747541162506,0.44468496672797286,1.177501036561762,0.010098041051706573,1.1054796678030838,0.08405206988062329,1.0263396982512782,0.48829110990902336,1.1868215914340188,0.02915578159137823,1.179269464394702,0.013054262827494433 +53009,0.5399963169807673,0.016687823830829885,0.11941416822307963,0.42186081710973133,0.04910025540103453,0.021669476327583734,0.03090358823951802,0.22113885681804143,0.7788611431819585,0.4111761286927822,0.44133123444256395,1.6548737714448025,0.010098041051706573,1.417277141293937,0.08405206988062329,1.1064867906015872,0.48829110990902336,1.6752606406056008,0.02915578159137823,1.6585753024375594,0.013054262827494433 +53011,0.4833681662619816,0.009135991548399992,0.0794622579557931,0.4052351570511137,0.02613242730219321,0.011796469843862234,0.018900689342144967,0.1643928241495432,0.8356071758504569,0.328865904071482,0.4514111799661333,0.9053296774109387,0.010098041051706573,0.9471313100178071,0.08405206988062329,0.990078988035182,0.48829110990902336,0.8973059586246818,0.02915578159137823,0.902676201699695,0.013054262827494433 +53013,0.5326953219997929,0.015505639378105491,0.11389411252482452,0.4198322018310198,0.04536191272769825,0.02009183999157966,0.029107894771622417,0.21380723242932628,0.7861927675706737,0.3982814539058031,0.4429231216987784,1.5375396840170272,0.010098041051706573,1.3527958596012748,0.08405206988062329,1.0906971534456997,0.48829110990902336,1.550056709607532,0.02915578159137823,1.540519026234087,0.013054262827494433 +53015,0.5013247682233923,0.011450476404012746,0.09183798628282924,0.4110032223211619,0.033045038362003384,0.014765068345531748,0.022840436239747818,0.18319060238792326,0.8168093976120767,0.359818847293059,0.4468164988577911,1.1346368647636131,0.010098041051706573,1.091134641256398,0.08405206988062329,1.0264678622404921,0.48829110990902336,1.1323190755152472,0.02915578159137823,1.132505307166955,0.013054262827494433 +53017,0.48957918289852453,0.010407490810513497,0.08472961162958106,0.40641772571274126,0.029710227859820183,0.01339284984682931,0.021258033785048955,0.17306620581362225,0.8269337941863777,0.35064751612112494,0.45078246824695906,1.0318506278955253,0.010098041051706573,1.0085827440476671,0.08405206988062329,1.0022166848555294,0.48829110990902336,1.0203789528254643,0.02915578159137823,1.0245735135099703,0.013054262827494433 +53019,0.5234477635284713,0.013600708293801684,0.10404702014979514,0.4198681391125386,0.03803393844223217,0.0173282671877595,0.025982933238880703,0.1987724991858444,0.8012275008141556,0.36554567720896963,0.455600127083303,1.348337360839215,0.010098041051706573,1.2403165977060144,0.08405206988062329,1.0718960322956024,0.48829110990902336,1.306227233528315,0.02915578159137823,1.324087220131453,0.013054262827494433 +53021,0.4513957838552675,0.006562044904025848,0.06079174739740319,0.39044978491281696,0.01856372686095518,0.00841680726588298,0.014537231269598782,0.1346750447649175,0.8653249552350825,0.305365903361879,0.453400727608524,0.6487084734346211,0.010098041051706573,0.7282747660979607,0.08405206988062329,0.9243832341984766,0.48829110990902336,0.6375388775026278,0.02915578159137823,0.6428579900242426,0.013054262827494433 +53023,0.5446717760659011,0.018386085970906747,0.12618820475987347,0.42078483051588556,0.056556848767178286,0.02459214248488954,0.03375626712973314,0.23167751718533267,0.7683224828146673,0.4481944162277422,0.43482165327360195,1.8211031229716794,0.010098041051706573,1.4920252451421268,0.08405206988062329,1.1152048932108998,0.48829110990902336,1.9253575020711922,0.02915578159137823,1.864483165934211,0.013054262827494433 +53025,0.47500282110892766,0.009209536765626379,0.07629642309563375,0.4000903998771512,0.026363424839673973,0.011840366968007048,0.019388383302916107,0.16062309465344723,0.8393769053465527,0.34553946004295294,0.4491209711944798,0.912131031722933,0.010098041051706573,0.9099688538868242,0.08405206988062329,0.9726249546284436,0.48829110990902336,0.9049402173801888,0.02915578159137823,0.9067549205757331,0.013054262827494433 +53027,0.5096206186619345,0.012166046769349998,0.09653552076444055,0.4142217984462729,0.034804604897231944,0.01564282077429291,0.02387275224713887,0.18942624617093648,0.8105737538290635,0.36053677052366856,0.44944687119654686,1.205963486382911,0.010098041051706573,1.1476430391381771,0.08405206988062329,1.0436082727714182,0.48829110990902336,1.1933053089206094,0.02915578159137823,1.198499879962188,0.013054262827494433 +53029,0.5154815904906166,0.013201924109564632,0.10118851084525594,0.415816143007641,0.03763326040361993,0.01691482040117545,0.025610854690270357,0.19629898082092206,0.8037010191790779,0.37191238500555823,0.449464654929245,1.308378001053911,0.010098041051706573,1.202205282184875,0.08405206988062329,1.056025191845067,0.48829110990902336,1.290591984700963,0.02915578159137823,1.2964455693038128,0.013054262827494433 +53031,0.5611563329092607,0.017944608435446163,0.12941266796737272,0.43299587002113066,0.05152189265900107,0.02299701323740611,0.03197791307533513,0.23061785170710855,0.7693821482928914,0.39812093721760433,0.44635420110849605,1.7793490515767274,0.010098041051706573,1.5379119828055763,0.08405206988062329,1.1489728309203306,0.48829110990902336,1.7649656305660835,0.02915578159137823,1.7697346984286524,0.013054262827494433 +53033,0.48541648765031586,0.00896870732002259,0.08020319997387904,0.4061002699497377,0.025958060914405452,0.01164912372651428,0.018476313739230595,0.16522553727440709,0.8347744627255929,0.3236536811855337,0.4487671003210254,0.8876444008534871,0.010098041051706573,0.9559135531697074,0.08405206988062329,0.9935148211495022,0.48829110990902336,0.891971975109872,0.02915578159137823,0.8928322662583367,0.013054262827494433 +53035,0.4945889500408361,0.01032692515244188,0.08683418944437914,0.40920039973128997,0.029428641804440034,0.013333014128182812,0.02087981373540438,0.17556839763041535,0.8244316023695847,0.3389061611877,0.4530625034204331,1.0234870367704687,0.010098041051706573,1.034509226527291,0.08405206988062329,1.0129962543878919,0.48829110990902336,1.0107501394467047,0.02915578159137823,1.0186060908089845,0.013054262827494433 +53037,0.4791125312304861,0.009530308222805647,0.0796728531933717,0.40044397020665545,0.02704447420090065,0.012274017957697508,0.019891586217395164,0.16629256802937506,0.8337074319706249,0.33944402788314587,0.4538456864245027,0.9450517708057793,0.010098041051706573,0.9522622112815123,0.08405206988062329,0.9816666598424298,0.48829110990902336,0.9317115718174241,0.02915578159137823,0.9389364168123109,0.013054262827494433 +53039,0.5218104014881402,0.013201261000052004,0.10315536426648564,0.4196641185540094,0.03767835115193634,0.016958272435108578,0.025298961006533414,0.1976874435087898,0.8023125564912101,0.3652582822023705,0.4500800039451055,1.308065880650027,0.010098041051706573,1.2271455693990967,0.08405206988062329,1.0690932403217037,0.48829110990902336,1.292190602060424,0.02915578159137823,1.298697872808082,0.013054262827494433 +53041,0.5076842955710648,0.012455613035706106,0.09670269140593048,0.4126065721931427,0.036126906561076935,0.016094790068187044,0.024534170436955324,0.19047800424308023,0.8095219957569197,0.37358739488879816,0.44550700849453695,1.2351777764449992,0.010098041051706573,1.1491290931163076,0.08405206988062329,1.0396374257440801,0.48829110990902336,1.2366937049242945,0.02915578159137823,1.2334505861837792,0.013054262827494433 +53043,0.5300220026314688,0.014887492781928231,0.11043852246341414,0.4207979463234888,0.04277936984195563,0.019122951434129648,0.02808844294767834,0.20836592049972588,0.7916340795002741,0.38735912875081696,0.44701339698966114,1.476011029539221,0.010098041051706573,1.3131618576276796,0.08405206988062329,1.0856426886344042,0.48829110990902336,1.465472388915336,0.02915578159137823,1.4674287590586368,0.013054262827494433 +53045,0.519845341069109,0.01339509752967798,0.10316743087575982,0.41799975222724445,0.03827839788350434,0.0171706888893801,0.0257674667279498,0.19845793109078685,0.8015420689092132,0.3710318029495316,0.4485738651245805,1.3276906936347266,0.010098041051706573,1.2276681261338993,0.08405206988062329,1.064704224855439,0.48829110990902336,1.311825158533999,0.02915578159137823,1.317279309216549,0.013054262827494433 +53047,0.5130259921660449,0.01257831022152764,0.09833742795290251,0.41591870385610563,0.03610477931949943,0.016165369851311284,0.024517880991605918,0.1916811807871809,0.8083188192128191,0.3671519590363027,0.4477349025806317,1.2469659524406436,0.010098041051706573,1.169751599097625,0.08405206988062329,1.050722229250339,0.48829110990902336,1.2370280166874457,0.02915578159137823,1.2402349055935764,0.013054262827494433 +53049,0.5474623539769192,0.017056925176242917,0.1221028058182452,0.42639265688058337,0.04903188924414796,0.021864749062496188,0.031156343540951547,0.22303415920977282,0.7769658407902271,0.40156234670916446,0.44592915752488127,1.6916343766139077,0.010098041051706573,1.4519337702124253,0.08405206988062329,1.1211961544845133,0.48829110990902336,1.6787832232632247,0.02915578159137823,1.681590898142383,0.013054262827494433 +53051,0.5289427464239689,0.014054692397039489,0.10773911262427943,0.4222781493214718,0.04009104192796419,0.018008519206827528,0.02657129243582459,0.20368766440729713,0.7963123355927029,0.3721122343728077,0.44919060071288086,1.3933096210871123,0.010098041051706573,1.2830132622325388,0.08405206988062329,1.083540259505127,0.48829110990902336,1.3736218157520717,0.02915578159137823,1.3806205408332726,0.013054262827494433 +53053,0.481658945579568,0.008938391623210248,0.07841859467918133,0.40437121801928455,0.025588975921546755,0.01154515502687565,0.0185575119184279,0.16280938078461768,0.8371906192153823,0.326312605144659,0.4511769076758657,0.8856834593928122,0.010098041051706573,0.9354295095637971,0.08405206988062329,0.9861599051522751,0.48829110990902336,0.8784227744165196,0.02915578159137823,0.8836433853797493,0.013054262827494433 +53055,0.5572768619181196,0.016523424284832527,0.12409864127947978,0.43462807154385813,0.04677232209169595,0.021215470812692993,0.029650296672931495,0.22268758988546258,0.7773124101145374,0.37689632706260695,0.45359028296907306,1.6385813657611836,0.010098041051706573,1.4737116801550547,0.08405206988062329,1.1411290668191918,0.48829110990902336,1.6043769285169411,0.02915578159137823,1.619445107832306,0.013054262827494433 +53057,0.5028431761230997,0.011927848077837394,0.0938819153048297,0.4104629799261261,0.0345622219903263,0.01540910934015072,0.023720811267243624,0.18670217627025473,0.8132978237297452,0.3681456846944863,0.4458367677999294,1.182382420201232,0.010098041051706573,1.1150768375433824,0.08405206988062329,1.0297312432785015,0.48829110990902336,1.1834500626226465,0.02915578159137823,1.1812827642436388,0.013054262827494433 +53059,0.5110015080473094,0.011008546624152321,0.0936569929627713,0.4174958264601221,0.03073402791164022,0.014148389764917476,0.021543080501306724,0.18328124572599183,0.8167187542740082,0.3281551856342111,0.4603493497693776,1.091223327508969,0.010098041051706573,1.1156821446131835,0.08405206988062329,1.0466361503217092,0.48829110990902336,1.0590271337765802,0.02915578159137823,1.078666847695267,0.013054262827494433 +53061,0.4811912021596121,0.008481035616253447,0.07714404611746409,0.40468651927358334,0.02428197715192889,0.010979232156547673,0.01762508453643812,0.16031890394345832,0.8396810960565417,0.3147615191839395,0.4521556085755362,0.8399722123625096,0.010098041051706573,0.9215722956325425,0.08405206988062329,0.9847817300197534,0.48829110990902336,0.8341993572288793,0.02915578159137823,0.8399352933473667,0.013054262827494433 +53063,0.4891719080550957,0.010239214983722673,0.08473303054768136,0.405804207312195,0.029584450063785978,0.013241573934970755,0.02093173139159378,0.17321728650480442,0.8267827134951956,0.34914896673190604,0.4475856034646941,1.014042420555141,0.010098041051706573,1.0084788982469655,0.08405206988062329,1.0019541904702538,0.48829110990902336,1.01448226729274,0.02915578159137823,1.014135038692622,0.013054262827494433 +53065,0.5172956930669608,0.0127174062627551,0.09984103838188763,0.4179742846313783,0.03562441539367484,0.016247650263316305,0.024584403916753487,0.19300574066245668,0.8069942593375433,0.35681134702759204,0.45608187766082176,1.2606864861838136,0.010098041051706573,1.1898992207956112,0.08405206988062329,1.0594795668964732,0.48829110990902336,1.2238193487610471,0.02915578159137823,1.240369746182945,0.013054262827494433 +53067,0.49442712700029323,0.010273399314343385,0.08649220896559931,0.4095083440218771,0.029463519137103992,0.01325038640202959,0.020778389277854678,0.17493418997932128,0.8250658100206787,0.3406494005584083,0.44972178443352057,1.0176389877987608,0.010098041051706573,1.030239137845085,0.08405206988062329,1.0126623295527528,0.48829110990902336,1.011498092837166,0.02915578159137823,1.0158289139972845,0.013054262827494433 +53069,0.5560580050838404,0.018507802644280938,0.1285371998542671,0.4282677475296781,0.05305872985513306,0.02372031514297233,0.03328394245756861,0.23115789841904483,0.7688421015809552,0.4127889040315954,0.4470577265557659,1.836327946294141,0.010098041051706573,1.5250468802667627,0.08405206988062329,1.1385767855850526,0.48829110990902336,1.8178591519177576,0.02915578159137823,1.8201883595523414,0.013054262827494433 +53071,0.49197136140372777,0.011533499987306923,0.08971525037538489,0.40428871267837685,0.03414472709017624,0.0150673755971173,0.023443437752959276,0.18235868469945676,0.8176413153005433,0.3805899994405467,0.44127971962769985,1.1420118164567,0.010098041051706573,1.0652079845118623,0.08405206988062329,1.0079995311205914,0.48829110990902336,1.1636762973872685,0.02915578159137823,1.1493205422703254,0.013054262827494433 +53073,0.4882225486236941,0.0102486683117333,0.08473773308150964,0.4049421630997476,0.029584308288096717,0.013258845540036535,0.02099179634497512,0.1735637432568128,0.8264362567431872,0.3491279175434092,0.4481715580746313,1.0152873443232506,0.010098041051706573,1.0094774557922173,0.08405206988062329,1.0003103923215184,0.48829110990902336,1.0148613338112962,0.02915578159137823,1.0153456353306218,0.013054262827494433 +53075,0.44583239074415687,0.007336805261409805,0.06413568853289417,0.3815685648778462,0.02117168638676896,0.009506789885770119,0.016456420425540744,0.14385605412348507,0.856143945876515,0.33010772739908045,0.4490331904647565,0.7256440038351228,0.010098041051706573,0.7646493700994814,0.08405206988062329,0.9139896714868591,0.48829110990902336,0.7276083221292695,0.02915578159137823,0.7251659735481648,0.013054262827494433 +53077,0.4740438104220942,0.009039233259577503,0.07562833987378136,0.3998129911788144,0.026095900029606024,0.011671506274972083,0.01906834993062954,0.1595387139565033,0.8404612860434967,0.34505451360109635,0.4472544063140439,0.8945778073271663,0.010098041051706573,0.9015586651625496,0.08405206988062329,0.9706636647146973,0.48829110990902336,0.8948984929283078,0.02915578159137823,0.8933863597401044,0.013054262827494433 +54001,0.5090227504395242,0.01234557076332992,0.09684886978701893,0.4136712981368704,0.035262226875629334,0.015835881871218496,0.02425347541474312,0.1902643245383299,0.8097356754616701,0.3640953885489295,0.4490891039602237,1.2243941649962824,0.010098041051706573,1.1505828135165284,0.08405206988062329,1.0425895966266556,0.48829110990902336,1.2089143550762271,0.02915578159137823,1.2139939841499687,0.013054262827494433 +54003,0.485667678153367,0.009004184560682207,0.07984229797285455,0.4069299682862061,0.0253143449851469,0.01158066152231765,0.01853980605610492,0.16439697670727324,0.8356030232927267,0.3170543136640867,0.45747427117361955,0.8938801711097735,0.010098041051706573,0.9533603836645527,0.08405206988062329,0.9944745176252278,0.48829110990902336,0.8690359089355085,0.02915578159137823,0.8839500409970791,0.013054262827494433 +54005,0.5052377333297509,0.011246717365869442,0.09250258604671249,0.41381848696003376,0.03162014490070715,0.014369926836040143,0.022260248243432576,0.18308724773400745,0.8169127522659926,0.34182984770544067,0.4544548066166128,1.1156617519422696,0.010098041051706573,1.1012665038562823,0.08405206988062329,1.0344666071186714,0.48829110990902336,1.0866086389899023,0.02915578159137823,1.1006188644544326,0.013054262827494433 +54007,0.5161620019014069,0.012814295717162603,0.10049452728825904,0.4166766360397136,0.03683593119201462,0.016481236783753205,0.02482611209263383,0.19469570971528952,0.8053042902847105,0.3665466387672459,0.4474228355417833,1.2708374113739864,0.010098041051706573,1.1954197734623817,0.08405206988062329,1.0570690832017562,0.48829110990902336,1.262556503394181,0.02915578159137823,1.2654799387600422,0.013054262827494433 +54009,0.5241003117114941,0.01422062706409477,0.10741772188647836,0.41824887915413267,0.04155617073452579,0.018447504133745275,0.027133406995420602,0.20495641671285533,0.7950435832871446,0.3868651280693083,0.4439173246157322,1.40981900607657,0.010098041051706573,1.2756181125076176,0.08405206988062329,1.0735031181880879,0.48829110990902336,1.4207831580626846,0.02915578159137823,1.412735362441468,0.013054262827494433 +54011,0.501644657440643,0.01208069978399914,0.09436161668981252,0.40891238857696827,0.03519309278628606,0.01565084748295341,0.0240821856762794,0.1881044984536247,0.8118955015463754,0.37295983283090123,0.44471361406043247,1.1979270144741743,0.010098041051706573,1.1209652615444976,0.08405206988062329,1.027124993332173,0.48829110990902336,1.2044479495956097,0.02915578159137823,1.1991178012303687,0.013054262827494433 +54013,0.5214819131669011,0.013787520097949407,0.10486036755177902,0.4180250230410505,0.039156540608603234,0.017654369020067562,0.026439114665011768,0.20108150427494942,0.7989184957250506,0.3734160152477829,0.45086641326503324,1.367792657357132,0.010098041051706573,1.247312152030077,0.08405206988062329,1.068303635036045,0.48829110990902336,1.3414849809681244,0.02915578159137823,1.3490932808312686,0.013054262827494433 +54015,0.5080015053657861,0.011971591793764592,0.09513481956995878,0.4139017817055359,0.03427940734243756,0.015379439597896597,0.023566055744548346,0.1872727119213102,0.8127272880786898,0.36032451101911955,0.44864951847802237,1.1869080071943416,0.010098041051706573,1.1326084382698327,0.08405206988062329,1.039933608984569,0.48829110990902336,1.1751395568615863,0.02915578159137823,1.1791095226496247,0.013054262827494433 +54017,0.5074075450965534,0.01148300305014961,0.09392906929749953,0.41410595928994526,0.032452721544206795,0.0148145964620474,0.022630729797217614,0.18511563378433007,0.81488436621567,0.3455024284486412,0.45649781457826566,1.1380487485066424,0.010098041051706573,1.1167868745126333,0.08405206988062329,1.0385750432487924,0.48829110990902336,1.1169228901620265,0.02915578159137823,1.1291598019827778,0.013054262827494433 +54019,0.5134412177397538,0.012847871274119519,0.1000511144439683,0.4146996048920458,0.037351722898520484,0.01665201705053681,0.025023061706416556,0.194863814955115,0.805136185044885,0.37332640526896477,0.4458165717222217,1.274580902617827,0.010098041051706573,1.1888851678313508,0.08405206988062329,1.051446576884964,0.48829110990902336,1.2788603736020292,0.02915578159137823,1.2746688609692007,0.013054262827494433 +54021,0.4963094860351578,0.010870674750466481,0.08963218781665136,0.4078418079760677,0.0315496460313891,0.01411181100089768,0.02190301627580904,0.18059736986429867,0.8194026301357014,0.35199013657823475,0.4472890436506856,1.0784218946334814,0.010098041051706573,1.0649530552627748,0.08405206988062329,1.015633595497503,0.48829110990902336,1.0816240628020646,0.02915578159137823,1.0810432816728204,0.013054262827494433 +54023,0.5153189278257913,0.012699528649613386,0.09989254130252961,0.41608280156086985,0.0361836576023411,0.016330194359108884,0.02464401744992101,0.19384605514878214,0.8061539448512178,0.36222581917059316,0.4513140860047358,1.2598265770820545,0.010098041051706573,1.1898704593274292,0.08405206988062329,1.0552481947953145,0.48829110990902336,1.240507647692953,0.02915578159137823,1.2480785719375258,0.013054262827494433 +54025,0.521850052026019,0.013852329204212827,0.10561650410023282,0.4179515262059325,0.040108442279676214,0.017881920410835632,0.026544654255437658,0.2023886050987054,0.7976113949012946,0.3797554427820509,0.4458393144801032,1.373630749577095,0.010098041051706573,1.2545076400756086,0.08405206988062329,1.069063043634394,0.48829110990902336,1.3728551628486683,0.02915578159137823,1.371242306452462,0.013054262827494433 +54027,0.508832335751881,0.01185788881894864,0.09539003654269046,0.41433045630729537,0.03349057113723236,0.015264524353576996,0.0233041180478963,0.18746850355281852,0.8125314964471815,0.3510908722866893,0.4557857281987949,1.1752402424738877,0.010098041051706573,1.1342225386975264,0.08405206988062329,1.0416618758125318,0.48829110990902336,1.1514119047784752,0.02915578159137823,1.163450257910819,0.013054262827494433 +54029,0.5229544136429316,0.01411960543929567,0.10683462566657577,0.41802759778717347,0.04171327677897693,0.01844689680373395,0.026999686915227767,0.20429051343569204,0.795709486564308,0.39044716559555775,0.44223082500751887,1.4000409515007395,0.010098041051706573,1.2671192906644477,0.08405206988062329,1.070656058771353,0.48829110990902336,1.4221024802142623,0.02915578159137823,1.40726351193373,0.013054262827494433 +54031,0.5072758051609272,0.01245543319684661,0.09575677413905861,0.41259362142113437,0.03505949255498272,0.01590854606863857,0.024553572376461504,0.1887666889783575,0.8112333110216425,0.36613067712649855,0.45375859458575135,1.2351650656874231,0.010098041051706573,1.1386404051795331,0.08405206988062329,1.0389565492473714,0.48829110990902336,1.2029264629012963,0.02915578159137823,1.2148343172758456,0.013054262827494433 +54033,0.509356700578151,0.01245246404996948,0.09767257006326496,0.4132592757637567,0.03634762584557646,0.016177452102811317,0.02444743347016967,0.19175671970625033,0.8082432802937497,0.37213749798979584,0.4450758949578031,1.2353084245077972,0.010098041051706573,1.1600906449134794,0.08405206988062329,1.0432069287114516,0.48829110990902336,1.2440622767638687,0.02915578159137823,1.2376376421256947,0.013054262827494433 +54035,0.5117604660838722,0.012688058376956402,0.09853172699511067,0.4142583634785896,0.036297531092685215,0.016282564992840795,0.024792963149437502,0.1925348547321402,0.8074651452678598,0.36838419664040156,0.44858601956324534,1.2582082973315467,0.010098041051706573,1.1731983754895055,0.08405206988062329,1.047983889450248,0.48829110990902336,1.2439906874881677,0.02915578159137823,1.2479001585130687,0.013054262827494433 +54037,0.4903462484143012,0.009338540118925456,0.08220529066456111,0.4094341876690072,0.026327317398619012,0.012039404111788934,0.01904478753355359,0.16764743470639257,0.8323525652936075,0.32026305345780837,0.45729703218530177,0.9269876977759752,0.010098041051706573,0.9807840507437232,0.08405206988062329,1.0042013028878696,0.48829110990902336,0.9037976260364207,0.02915578159137823,0.9178119757257511,0.013054262827494433 +54039,0.5124321253624973,0.012821665935378684,0.09973357297499785,0.41399895749084575,0.037271496162471884,0.01661329540227265,0.025021198517381337,0.19462786979728444,0.8053721302027156,0.37371062773230285,0.44573728218080844,1.272026466227509,0.010098041051706573,1.1860174172322746,0.08405206988062329,1.0494308766333227,0.48829110990902336,1.2762168630996364,0.02915578159137823,1.272011915913366,0.013054262827494433 +54041,0.5174619324705538,0.013250573137728936,0.10255064261499083,0.4166146980676159,0.03850123850469737,0.017155992688394465,0.025606855898492514,0.19818007118973235,0.8018199288102676,0.3754363456233405,0.44559586534602874,1.3145315770144972,0.010098041051706573,1.216975056368616,0.08405206988062329,1.0597544331728352,0.48829110990902336,1.317276338397496,0.02915578159137823,1.3150105820940432,0.013054262827494433 +54043,0.5046596080885213,0.011404229797828137,0.09268485085183659,0.4132501859157429,0.032293911371291124,0.014684644304076884,0.022597865204674248,0.18365815168544047,0.8163418483145595,0.3484270738366432,0.4547186661672499,1.1308106751115483,0.010098041051706573,1.1030209469673873,0.08405206988062329,1.0334154855544528,0.48829110990902336,1.1084043844319678,0.02915578159137823,1.1192764582923556,0.013054262827494433 +54045,0.5106459600298928,0.011875836683916528,0.096484850130077765,0.41500438074796203,0.03405559772674319,0.015321957065475825,0.023256497874224492,0.1889466630156628,0.8110533369843372,0.35296316137539246,0.44991009079966293,1.1767846015544041,0.010098041051706573,1.146990350603235,0.08405206988062329,1.0452164969364834,0.48829110990902336,1.1681013049573252,0.02915578159137823,1.1726263361678626,0.013054262827494433 +54047,0.5152955331017561,0.012731165229499467,0.10042562445830144,0.4159727287132701,0.03685570404510419,0.016450735654821524,0.02470653132361896,0.19488937513935378,0.8051106248606462,0.36699501988566025,0.44635521369199826,1.2631972342057756,0.010098041051706573,1.1943092951052887,0.08405206988062329,1.0553212444193985,0.48829110990902336,1.263021419608292,0.02915578159137823,1.2619255410740897,0.013054262827494433 +54049,0.5082796873553911,0.012603930537760544,0.09813792480422653,0.4118582442744331,0.03712438312350587,0.01645142244719653,0.02479723437963758,0.19307858890612745,0.8069214110938725,0.3782878351826227,0.44314332153252833,1.248788586482445,0.010098041051706573,1.1637260709351707,0.08405206988062329,1.040498737130719,0.48829110990902336,1.268216491939633,0.02915578159137823,1.2566772443241305,0.013054262827494433 +54051,0.5182550446581888,0.01340947804467634,0.1031526288806474,0.41665155839431345,0.03905178186820808,0.01739529944378264,0.02587428368115637,0.1990383498315601,0.8009616501684399,0.37858251691668365,0.44544188796527334,1.3299310674884475,0.010098041051706573,1.2258924424319706,0.08405206988062329,1.061537485409292,0.48829110990902336,1.3360791632860036,0.02915578159137823,1.330654646045307,0.013054262827494433 +54053,0.5116005748048049,0.012346498635272294,0.09764395648332955,0.4150847975850631,0.03530468051833434,0.01586000497451391,0.024133082023965576,0.19085974741248957,0.8091402525875104,0.3615654443945212,0.4492323607425801,1.2244149817505625,0.010098041051706573,1.1614940709782688,0.08405206988062329,1.047601893441864,0.48829110990902336,1.210260487871003,0.02915578159137823,1.2155971992776202,0.013054262827494433 +54055,0.514436589259325,0.013219884256510786,0.10149331630240985,0.414428098848473,0.03852817631164011,0.017147862618355672,0.025697791588939072,0.19729023638955734,0.8027097636104427,0.379612941179707,0.4450733011511622,1.310888809509286,0.010098041051706573,1.2045729935225222,0.08405206988062329,1.0536909867372812,0.48829110990902336,1.317998006023801,0.02915578159137823,1.3118991718295079,0.013054262827494433 +54057,0.5110141161355383,0.01273348262805822,0.09878659632863222,0.41387472537439207,0.03694568675793677,0.016461667593169017,0.024918064346936494,0.19331480914008775,0.8066851908599122,0.37399493586184485,0.4455639896755385,1.2627261432460863,0.010098041051706573,1.1723091046394654,0.08405206988062329,1.046682209286594,0.48829110990902336,1.2641922824013743,0.02915578159137823,1.261888504349245,0.013054262827494433 +54059,0.5030096057334588,0.01092297595309072,0.09101019814166947,0.41292053145137186,0.03083756093464223,0.01404203699127582,0.021715243264914363,0.18093133233303527,0.8190686676669647,0.33883632344849385,0.45535498157707105,1.083334967724832,0.010098041051706573,1.084033916833365,0.08405206988062329,1.0300072902908688,0.48829110990902336,1.0580523317639565,0.02915578159137823,1.0716639505421026,0.013054262827494433 +54061,0.46348871643561,0.008312556340177019,0.07234301601954594,0.3923466119333265,0.02405341552401044,0.010787477601916964,0.017934754494356362,0.15608366170354476,0.8439163382964552,0.3324911905457686,0.4484800751539323,0.8227849802322081,0.010098041051706573,0.8630985753002984,0.08405206988062329,0.9498917590180673,0.48829110990902336,0.8262263053653092,0.02915578159137823,0.824703857638966,0.013054262827494433 +54063,0.524842581212104,0.013819207002590043,0.10557589236362279,0.42080144001062075,0.03897732732472693,0.017723302527910458,0.026330194037753392,0.2011572538946807,0.7988427461053194,0.3691877610703194,0.4547079993518931,1.3695902776586357,0.010098041051706573,1.2562781033459163,0.08405206988062329,1.0753936989074249,0.48829110990902336,1.3379026039452686,0.02915578159137823,1.3508826600622346,0.013054262827494433 +54065,0.5192230060300489,0.013399653029226875,0.10279447370841768,0.4176839314523342,0.03775293941963696,0.01707150396933617,0.025807125018746567,0.19797750198778497,0.802022498012215,0.3672662357971237,0.4521900607415095,1.3286885608452592,0.010098041051706573,1.2230978609861598,0.08405206988062329,1.0638496659909853,0.48829110990902336,1.293423383214634,0.02915578159137823,1.3070887460260188,0.013054262827494433 +54067,0.5155843394729895,0.012733747071321501,0.10003422331501136,0.41643668896695213,0.03646008756536899,0.01635861569596799,0.024697699476941923,0.19402106630558735,0.8059789336944126,0.3644761398362125,0.44867187075836734,1.262713503676804,0.010098041051706573,1.190418070121558,0.08405206988062329,1.055997420516154,0.48829110990902336,1.249688571666506,0.02915578159137823,1.2545266773249844,0.013054262827494433 +54069,0.5176648687450484,0.014020711485566266,0.10482086348480658,0.41434182438758527,0.041248056277250755,0.018251658547749003,0.027084533512108027,0.20248788321084854,0.7975121167891515,0.3935099836611203,0.4424852997937556,1.3902713342992055,0.010098041051706573,1.2448578094895666,0.08405206988062329,1.0600510953669366,0.48829110990902336,1.4066630684931307,0.02915578159137823,1.3936577416182232,0.013054262827494433 +54071,0.5303593910604076,0.014801835911812718,0.11091317018032586,0.42076700703958625,0.04300852481787635,0.019127445103892415,0.02790906725007307,0.2091283232650309,0.790871676734969,0.38776751893352107,0.44473613510087556,1.468694808688014,0.010098041051706573,1.3201314356097957,0.08405206988062329,1.0863153205414229,0.48829110990902336,1.4713705047198529,0.02915578159137823,1.4659039511336305,0.013054262827494433 +54073,0.5082681642539504,0.011913185796114048,0.09607338159578076,0.4136682550132619,0.03490911271023754,0.01554803557100724,0.023438780222642,0.18902104902989514,0.8109789509701049,0.363358842276565,0.44538615747880583,1.1805443538300884,0.010098041051706573,1.140627598296633,0.08405206988062329,1.0405907557522829,0.48829110990902336,1.1955862358638454,0.02915578159137823,1.1873987261058714,0.013054262827494433 +54075,0.5286449975696388,0.014098679254474153,0.10858450108172008,0.42101568313642257,0.04079449879983684,0.018218093935720894,0.026669464989341782,0.2054015484510778,0.7945984515489222,0.37569356946379606,0.4465821243474563,1.3985251132012921,0.010098041051706573,1.2908607495251008,0.08405206988062329,1.0824738703771546,0.48829110990902336,1.396684158260655,0.02915578159137823,1.3972667294924799,0.013054262827494433 +54077,0.5086732756273145,0.011914306868576726,0.09602774765922319,0.4142103792187717,0.03437569682710567,0.01538309899060218,0.023422317309443014,0.1887807995039611,0.8112192004960389,0.3579767063692448,0.44749926286504865,1.180612453614803,0.010098041051706573,1.140273903083418,0.08405206988062329,1.0416560273381097,0.48829110990902336,1.1771753464546832,0.02915578159137823,1.1796515173022315,0.013054262827494433 +54079,0.5042151499635059,0.010967728744172033,0.09125056406878326,0.4140132899391292,0.031089678705394506,0.014170595872479201,0.021752080922133845,0.18097545080783034,0.8190245491921697,0.34070670162608074,0.4557974370452532,1.0877985374893209,0.010098041051706573,1.0857142257969217,0.08405206988062329,1.0325619209179249,0.48829110990902336,1.0668959607322832,0.02915578159137823,1.0784453282764626,0.013054262827494433 +54081,0.509613610950657,0.012469890208845733,0.09800187010533337,0.4134629635584607,0.0363697597030406,0.016202997907527265,0.024469303685951044,0.1923062257354471,0.8076937742645529,0.3711129151305993,0.4455074226452108,1.236819016124472,0.010098041051706573,1.1630472411771537,0.08405206988062329,1.043786150510889,0.48829110990902336,1.2450200491512984,0.02915578159137823,1.2391410281838977,0.013054262827494433 +54083,0.5149591336653783,0.012932206226327687,0.10099861208178962,0.41511735975343494,0.03775714512410058,0.016791471926437238,0.025113072826340174,0.19612937314637235,0.8038706268536276,0.3738382572378766,0.44472302848234024,1.2825909458665503,0.010098041051706573,1.1991747587615134,0.08405206988062329,1.054112697666345,0.48829110990902336,1.2913365594942685,0.02915578159137823,1.286183189730346,0.013054262827494433 +54085,0.5165440761267623,0.01274615914382424,0.1002949155172766,0.4171508774050522,0.03611303151290114,0.016401873794500324,0.02467584032595947,0.19416526130611117,0.8058347386938889,0.36006841749301227,0.4541815823088921,1.2637519956554246,0.010098041051706573,1.1941407605577425,0.08405206988062329,1.0578930338094596,0.48829110990902336,1.2394358265806793,0.02915578159137823,1.2503422580129602,0.013054262827494433 +54087,0.5162361938130772,0.012915327666999758,0.10046303311249502,0.41682249895417633,0.03649019309450616,0.01655666336985366,0.02501825292721773,0.19460672133514037,0.8053932786648597,0.3632201016033998,0.4537291246163994,1.2807437230759764,0.010098041051706573,1.1958410147469531,0.08405206988062329,1.0576064984407314,0.48829110990902336,1.2513900798874507,0.02915578159137823,1.2636249241612747,0.013054262827494433 +54089,0.528977926865241,0.014815290525931045,0.1102544230598048,0.4201172577114798,0.04273480801661586,0.019071327136100553,0.02800738891644772,0.2084291564171306,0.7915708435828694,0.38760175628904625,0.4462715060913663,1.4703236589184983,0.010098041051706573,1.310343488537431,0.08405206988062329,1.0831984866793856,0.48829110990902336,1.4642823099127589,0.02915578159137823,1.4642030619738455,0.013054262827494433 +54091,0.510049556235997,0.012210826160387604,0.0973828314322825,0.4140669743416065,0.03567765340912599,0.01589985436294795,0.02394047011921666,0.19092817598144135,0.8090718240185586,0.3663649216641981,0.4456530305011856,1.210596525240621,0.010098041051706573,1.1564615782194192,0.08405206988062329,1.044448253036964,0.48829110990902336,1.2216957284343088,0.02915578159137823,1.2152931839652488,0.013054262827494433 +54093,0.5305538439918662,0.0146496381371327,0.11042085507480434,0.4213651896234183,0.04233788844856271,0.018869256160650362,0.027611972475610393,0.2081237490317706,0.7918762509682293,0.38342293600136507,0.44568250453905045,1.4525080386613283,0.010098041051706573,1.3102641079426476,0.08405206988062329,1.0867118901969097,0.48829110990902336,1.4489616530737843,0.02915578159137823,1.450636951463171,0.013054262827494433 +54095,0.5243774374334527,0.013755743001581416,0.10568082301202028,0.4198011600927046,0.04016697157485877,0.017854169590690337,0.026232522644201527,0.20153579362466745,0.7984642063753326,0.3800781488074721,0.4444987732623981,1.3642622015710244,0.010098041051706573,1.2554974426209933,0.08405206988062329,1.0738290615633395,0.48829110990902336,1.3735433308428031,0.02915578159137823,1.3675357108630222,0.013054262827494433 +54097,0.5082167949777026,0.012240027247735649,0.09648624925728855,0.4128228687307731,0.034815502844205454,0.015743476490683868,0.02408426358336439,0.18985253972474833,0.8101474602752516,0.36083382981721096,0.45219730305587547,1.213338826724613,0.010098041051706573,1.1465751801797999,0.08405206988062329,1.0404958232144064,0.48829110990902336,1.1952893869430417,0.02915578159137823,1.2028356613934497,0.013054262827494433 +54099,0.509301464450681,0.012211668381666284,0.09647774226876984,0.41405865737039443,0.03501032823218668,0.015686040114656748,0.02397728896153374,0.18943150374175374,0.8105684962582462,0.36288502828615254,0.44804036142214215,1.2111554221130278,0.010098041051706573,1.146657637038408,0.08405206988062329,1.0428237857789546,0.48829110990902336,1.2003211634422901,0.02915578159137823,1.2041226936868998,0.013054262827494433 +54101,0.5192662663460587,0.013381898762230827,0.10318795385191984,0.41753581658854166,0.03844301767642411,0.017193708337596147,0.025770783949428798,0.19871877019477227,0.8012812298052278,0.37255334795757133,0.4472517865875162,1.3266558452729353,0.010098041051706573,1.2264041274338184,0.08405206988062329,1.0638336584001955,0.48829110990902336,1.3174736033767838,0.02915578159137823,1.3203332791262534,0.013054262827494433 +54103,0.519354161537851,0.013463392432051722,0.10347116550932567,0.4173762442513877,0.03893947427206401,0.017365653764381473,0.02592333599905216,0.1992304542298052,0.8007695457701948,0.37633164834269184,0.4459652855878425,1.335213016815184,0.010098041051706573,1.2301360499047944,0.08405206988062329,1.063787970157343,0.48829110990902336,1.333084400828716,0.02915578159137823,1.3324665725538971,0.013054262827494433 +54105,0.5094030009205992,0.01123635958380664,0.09371258655414508,0.4158818509716131,0.031261569922691024,0.014328444976461758,0.02205789829172611,0.1839655172521296,0.8160344827478704,0.33358987380663935,0.45834054437750876,1.114825802841103,0.010098041051706573,1.1170573151377559,0.08405206988062329,1.042845352186717,0.48829110990902336,1.074463358331208,0.02915578159137823,1.0965711241514757,0.013054262827494433 +54107,0.5112184581951942,0.01255005383934566,0.09827233480421001,0.41430789627334563,0.03644306938467716,0.01623710510401427,0.024549297151069963,0.19223158559483688,0.8077684144051631,0.37083752469383613,0.44554713360234466,1.2449522487962836,0.010098041051706573,1.1676244779438425,0.08405206988062329,1.0467712492254773,0.48829110990902336,1.2480860903353042,0.02915578159137823,1.244983700940586,0.013054262827494433 +54109,0.5124381668363069,0.011743164737154407,0.09592874421093371,0.41690494652289,0.032989099725810725,0.014999925052276606,0.022916257018196773,0.1872006232540777,0.8127993767459223,0.34389170834210414,0.45469337377948027,1.1651749231836654,0.010098041051706573,1.1434535288570289,0.08405206988062329,1.0494064286390792,0.48829110990902336,1.1319573615883902,0.02915578159137823,1.1482344688084352,0.013054262827494433 +55001,0.5422889905661888,0.015767818695017845,0.11697224455871942,0.42654470599082495,0.045218554809281775,0.020216659876926703,0.029076413073691767,0.21570093915532373,0.7842990608446763,0.3865750800958796,0.44708770464236364,1.564029947635703,0.010098041051706573,1.3918503605965715,0.08405206988062329,1.1105138022029513,0.48829110990902336,1.548285393141437,0.02915578159137823,1.5538548980846414,0.013054262827494433 +55003,0.501394963469092,0.011885994813563405,0.09355229277261842,0.40990806727780926,0.035013673946853216,0.015531964994048145,0.02370585203195027,0.1865840297344458,0.8134159702655542,0.3742684749796028,0.4435971220164986,1.176889519015078,0.010098041051706573,1.110675694051817,0.08405206988062329,1.0266763636831495,0.48829110990902336,1.1953134462856907,0.02915578159137823,1.1840373004851428,0.013054262827494433 +55005,0.5127213527228519,0.013022538319381202,0.10016009512904243,0.4139912263695952,0.03835154357117694,0.01697613620095265,0.025398860902172037,0.19534995879756797,0.804650041202432,0.3829024275762346,0.4426454484014835,1.2908253121420632,0.010098041051706573,1.1884703603244007,0.08405206988062329,1.0496990668146995,0.48829110990902336,1.3087936199506967,0.02915578159137823,1.296483464335014,0.013054262827494433 +55007,0.5394825576578535,0.01485667117917424,0.11343407253355758,0.42699534828297386,0.04189301495911771,0.019043862224767144,0.02753874238988191,0.2102645783879057,0.7897354216120943,0.3693159737937149,0.45458323406304246,1.4726270000305066,0.010098041051706573,1.350122863823918,0.08405206988062329,1.1047772918105703,0.48829110990902336,1.437506053242347,0.02915578159137823,1.452760077096618,0.013054262827494433 +55009,0.48306452222792196,0.009246016547066313,0.07983538402311481,0.40456290858020627,0.02669598155155862,0.011972239286557341,0.019140334513541052,0.16526857251886215,0.8347314274811378,0.33438783915449455,0.44846597093405444,0.915468230754231,0.010098041051706573,0.9506542080386393,0.08405206988062329,0.9888045834661491,0.48829110990902336,0.9168331659031843,0.02915578159137823,0.9167905964262253,0.013054262827494433 +55011,0.5137499579484436,0.013058726257149211,0.10073160550306764,0.4141286852092484,0.038205317332539006,0.01697938735251729,0.02541844734994547,0.1960712676363399,0.8039287323636601,0.3792783520299943,0.4444247172384079,1.2951211073513864,0.010098041051706573,1.1972757945614305,0.08405206988062329,1.0519966751873828,0.48829110990902336,1.305824615437606,0.02915578159137823,1.2977638197284171,0.013054262827494433 +55013,0.5428490683660749,0.01605107431718141,0.11763928602135526,0.42668318315158693,0.0459698611530565,0.020544067466215996,0.029568208278396145,0.21670717125008346,0.7832928287499166,0.3907696374892271,0.4469029697047505,1.591780126317494,0.010098041051706573,1.3994748871052591,0.08405206988062329,1.1118957776175673,0.48829110990902336,1.5740164045966327,0.02915578159137823,1.5794309046343225,0.013054262827494433 +55015,0.4863070783446186,0.009196794628338133,0.08048882533792975,0.40703901402055986,0.02647033825042153,0.011893777415889997,0.018911496537627772,0.1655102895312822,0.8344897104687178,0.32886972991948465,0.44932472352145303,0.9102528736645639,0.010098041051706573,0.9594132205347237,0.08405206988062329,0.9956905821206974,0.48829110990902336,0.9080097044681443,0.02915578159137823,0.9103229747196329,0.013054262827494433 +55017,0.5000026131686774,0.011359769541383478,0.09161227569763036,0.4100934548422359,0.03326530181168848,0.014781018477361109,0.022719420343411734,0.1832235938069481,0.8167764061930519,0.36310965488382596,0.44433742285084216,1.1249590659864006,0.010098041051706573,1.0865569230460737,0.08405206988062329,1.0237611529736,0.48829110990902336,1.1383045730774337,0.02915578159137823,1.1308842089861444,0.013054262827494433 +55019,0.49408649553573025,0.011800756045496769,0.09036880121274829,0.4058707435400509,0.0351291951243316,0.015448507137933939,0.023883988233075252,0.18290077148286113,0.8170992285171389,0.3887314499351347,0.43976262716118447,1.1686988102475147,0.010098041051706573,1.0701203213058608,0.08405206988062329,1.0111387943104844,0.48829110990902336,1.1977898765087653,0.02915578159137823,1.1785247614136827,0.013054262827494433 +55021,0.5010092043611818,0.011083537304995263,0.09133369178613893,0.4112663228881147,0.03221395685934307,0.01436240405982954,0.02212242251941752,0.1822994288150756,0.8177005711849243,0.35270617260028414,0.4458441452113631,1.098101719944339,0.010098041051706573,1.083817516279142,0.08405206988062329,1.026041389727581,0.48829110990902336,1.104257391779604,0.02915578159137823,1.1018873336748563,0.013054262827494433 +55023,0.5167991984676371,0.013466832320403153,0.10258318990798992,0.4155643876170611,0.039252950128693134,0.017459171109148727,0.026058152490045842,0.19849719235664384,0.8015028076433561,0.38264505289707146,0.4447862148426499,1.3356763841912236,0.010098041051706573,1.219239599407823,0.08405206988062329,1.0584322394479546,0.48829110990902336,1.3421076957918128,0.02915578159137823,1.335605416999685,0.013054262827494433 +55025,0.47568829933365986,0.008444142625327847,0.07572469310836336,0.4010194166155755,0.024379189260472587,0.010959242442636567,0.01775141965265139,0.1591897324664867,0.8408102675335133,0.321945038794486,0.4495326864870536,0.8363248661129072,0.010098041051706573,0.9047178458482561,0.08405206988062329,0.9736808501029843,0.48829110990902336,0.8375547128048441,0.02915578159137823,0.8390092416047605,0.013054262827494433 +55027,0.49896164701712725,0.011180184666457078,0.09115859769089657,0.4096954453411462,0.03307223479014152,0.014643305801723022,0.02240690187972165,0.18269660250613906,0.8173033974938609,0.3627988541715384,0.44276735136411266,1.1066047561834709,0.010098041051706573,1.080130571737775,0.08405206988062329,1.0217642800699125,0.48829110990902336,1.129836306646035,0.02915578159137823,1.1179903475946102,0.013054262827494433 +55029,0.541512781135703,0.01611619710770086,0.11803421651284388,0.42528520145022103,0.046771016044543354,0.020808424257843766,0.029761434391078843,0.21797124763203793,0.7820287523679621,0.39624964206420576,0.4448999833150178,1.5985124189717737,0.010098041051706573,1.403882182668373,0.08405206988062329,1.1093232764226424,0.48829110990902336,1.600667431346884,0.02915578159137823,1.5951567573383114,0.013054262827494433 +55031,0.49977156349517526,0.011065757977571762,0.09073005554437234,0.4104973974361631,0.03213106406896829,0.014347950408378166,0.022141631869134128,0.18154305320984562,0.8184569467901543,0.3541391424945652,0.4465445146037104,1.0963197568307805,0.010098041051706573,1.0780453880828003,0.08405206988062329,1.0234332128361778,0.48829110990902336,1.101237122282598,0.02915578159137823,1.0990082612210723,0.013054262827494433 +55033,0.47679941680324106,0.009614008584403033,0.07943137166520473,0.39882563944888877,0.02789512195865005,0.01244748181944361,0.020163633271326774,0.16659284568291188,0.8334071543170881,0.3511851976600026,0.44622431971779736,0.9519880328429919,0.010098041051706573,0.9466360125843435,0.08405206988062329,0.977127500074249,0.48829110990902336,0.9568535539004897,0.02915578159137823,0.9532396112420713,0.013054262827494433 +55035,0.4775146380923742,0.009649186742340518,0.08002529274464532,0.3990830103034634,0.028133858097340175,0.0125370613370712,0.020207101463712414,0.16758709861615717,0.8324129013838428,0.3515620765938739,0.4456218302407829,0.9555225701224775,0.010098041051706573,0.9540175611474818,0.08405206988062329,0.9789260963220443,0.48829110990902336,0.9649259161965222,0.02915578159137823,0.9595149039420423,0.013054262827494433 +55037,0.5343423683481083,0.014526420789304984,0.1114584762707708,0.42400902111921757,0.042224489759209324,0.018795954997607795,0.027185605427869512,0.20859000310108083,0.7914099968989192,0.37883605780354995,0.4451434488562014,1.4410101895776162,0.010098041051706573,1.3242931660119845,0.08405206988062329,1.0939814968881554,0.48829110990902336,1.4446164662294272,0.02915578159137823,1.4417834016660547,0.013054262827494433 +55039,0.49962327268131124,0.011416490494959982,0.091804690503039,0.40949629353899575,0.033511955204967796,0.014886146457629057,0.022850197577249536,0.18374782665818162,0.8162521733418184,0.3650353268590177,0.4442040569277898,1.1305471841593138,0.010098041051706573,1.089002569544242,0.08405206988062329,1.0228989379887046,0.48829110990902336,1.146343024871236,0.02915578159137823,1.1373784082259712,0.013054262827494433 +55041,0.5206842462024179,0.014558277799380615,0.10644926247431867,0.41531368740507946,0.04192149572760366,0.018688974645759655,0.027959896819542012,0.20444110466314383,0.7955588953368562,0.39381668555681537,0.4458088701604628,1.4438921942784437,0.010098041051706573,1.266505921849677,0.08405206988062329,1.0665176910451502,0.48829110990902336,1.4358581452087287,0.02915578159137823,1.4356474557874919,0.013054262827494433 +55043,0.4919424913376117,0.011643270836159566,0.09004224285707246,0.40402538349813777,0.034387090255874754,0.015194172006981872,0.02366795111457243,0.18303408313488825,0.8169659168651118,0.38189953031777224,0.4418568682003,1.1532334803810227,0.010098041051706573,1.069341734286641,0.08405206988062329,1.008169850606274,0.48829110990902336,1.172916358444923,0.02915578159137823,1.159392128391069,0.013054262827494433 +55045,0.5014443176466239,0.011302748282104525,0.09209055893712664,0.41094130165101844,0.03329552116075796,0.014791535512183955,0.02254038561081025,0.18365061821684533,0.8163493817831546,0.3615519500048853,0.44425000710357504,1.118540068368071,0.010098041051706573,1.0914056286649763,0.08405206988062329,1.0266339347629603,0.48829110990902336,1.1389748371439827,0.02915578159137823,1.1284784904381886,0.013054262827494433 +55047,0.5186559302812914,0.013899775594371978,0.10455199921234269,0.4158568883797641,0.04106007723911832,0.01813784302636043,0.026799607953645645,0.2015825774047146,0.7984174225952854,0.39272397991860736,0.4417391355776685,1.377640018668505,0.010098041051706573,1.2402346844466106,0.08405206988062329,1.0622031652976598,0.48829110990902336,1.4001537888505795,0.02915578159137823,1.3842704064412588,0.013054262827494433 +55049,0.5004040508138945,0.01085228331536017,0.0899597403644013,0.411754573913664,0.031391986105389534,0.014033168493447174,0.021687041297346027,0.17977420490118748,0.8202257950988125,0.3489559438280895,0.44703028493752706,1.0750722105861368,0.010098041051706573,1.0690533628090058,0.08405206988062329,1.0248289179830805,0.48829110990902336,1.0761620887910917,0.02915578159137823,1.0761163900307347,0.013054262827494433 +55051,0.5508984446764066,0.017513817380646737,0.12569079780513637,0.42768295051361016,0.05217376992578149,0.022944061155185307,0.03179137198496579,0.22815602225736206,0.7718439777426379,0.4150961791703211,0.4397623784484774,1.7359238566270037,0.010098041051706573,1.4905307671423742,0.08405206988062329,1.1281998177230674,0.48829110990902336,1.7808488355810423,0.02915578159137823,1.7529634137262025,0.013054262827494433 +55053,0.50377561528198,0.011789874263122817,0.09395875235765465,0.4112560988167445,0.034057672231537106,0.015237760726187002,0.02340302687442232,0.18650913126285956,0.8134908687371405,0.3624747176494675,0.44741051656715897,1.1693796526955005,0.010098041051706573,1.116770021434109,0.08405206988062329,1.0315905290981657,0.48829110990902336,1.1680601401199608,0.02915578159137823,1.1678141571914318,0.013054262827494433 +55055,0.49051970052216043,0.010125815761941073,0.0849365344536055,0.40754749924726824,0.029112672137844287,0.013078220624028103,0.020643035847820373,0.17315621444600526,0.8268437855539947,0.34275794656710856,0.4492277645317002,1.0030279704639113,0.010098041051706573,1.010304282660739,0.08405206988062329,1.0047210405487637,0.48829110990902336,0.9994939431347134,0.02915578159137823,1.0020017557097574,0.013054262827494433 +55057,0.5138135775950513,0.012940834547176877,0.1000709111920807,0.4150968503788839,0.03736404383811318,0.016671336242698682,0.025185855554357997,0.19476112651688032,0.8052388734831197,0.3733756732402978,0.4461866149962358,1.2835484242244295,0.010098041051706573,1.18950889865298,0.08405206988062329,1.0523542306386897,0.48829110990902336,1.2801783693158018,0.02915578159137823,1.2806872807010787,0.013054262827494433 +55059,0.4800683607237447,0.008959424985407784,0.07830157012184767,0.4030105220863602,0.025932833086837408,0.011614040245150194,0.01866281079615552,0.16310504196485948,0.8368949580351406,0.3311917378729758,0.447850807748617,0.8869272750872947,0.010098041051706573,0.9320140834269708,0.08405206988062329,0.982668591893634,0.48829110990902336,0.891072769664661,0.02915578159137823,0.8900585417190584,0.013054262827494433 +55061,0.5081484620612359,0.012399262787658103,0.09688556569991727,0.41286262412228175,0.036299592834013,0.016113729802654866,0.024400866505355858,0.19066389634815387,0.8093361036518462,0.37466461151131,0.44390938147262565,1.2291670609131327,0.010098041051706573,1.1504558356870087,0.08405206988062329,1.0403148935159714,0.48829110990902336,1.2409110857144623,0.02915578159137823,1.2327011084211634,0.013054262827494433 +55063,0.4830422081021799,0.010249978750686846,0.0835989838975622,0.40075818489740295,0.03007615367629285,0.013361123969305569,0.021219633768564228,0.1730676584682185,0.8269323415317815,0.3597669765118986,0.4442431074501826,1.0147005242513998,0.010098041051706573,0.9939714461262086,0.08405206988062329,0.9898761347087575,0.48829110990902336,1.0292158468179113,0.02915578159137823,1.0204939455728828,0.013054262827494433 +55065,0.5024837790827738,0.011828494483413124,0.09319585221964313,0.41098369118803346,0.03446511420037146,0.015329677989797322,0.023540052387371942,0.18547036959036056,0.8145296304096394,0.3698138208892,0.4447882546007087,1.1718651385025247,0.010098041051706573,1.1083904531397148,0.08405206988062329,1.0285872437593138,0.48829110990902336,1.1795789336386306,0.02915578159137823,1.1731640752877897,0.013054262827494433 +55067,0.5225286701949201,0.014290972678582975,0.1070427921900857,0.4174057695283614,0.04212739583157706,0.018633487745378274,0.027349643175085456,0.20485534726765378,0.7951446527323462,0.39355658582567227,0.44231283177042086,1.4176474825907524,0.010098041051706573,1.2707785990614608,0.08405206988062329,1.0701768586031344,0.48829110990902336,1.4358394482459111,0.02915578159137823,1.4224255984813676,0.013054262827494433 +55069,0.5182176555151614,0.013540520475471666,0.10368101033970362,0.4160454303013975,0.04006191008717849,0.01771410779259589,0.026129021910708546,0.20007232334960506,0.7999276766503949,0.38639583040248576,0.44216832782182186,1.3420202025305832,0.010098041051706573,1.2303358747092816,0.08405206988062329,1.0614005747837199,0.48829110990902336,1.3664337819366823,0.02915578159137823,1.351895154121157,0.013054262827494433 +55071,0.5100831435640614,0.012648199995019708,0.0984992330490397,0.413032724478046,0.037366289716155104,0.016536876066091707,0.024796349682610557,0.1931042699447079,0.8068957300552921,0.3793561488702312,0.4425613619042857,1.2533387883897158,0.010098041051706573,1.1698081142790624,0.08405206988062329,1.0444039652902632,0.48829110990902336,1.274404120671182,0.02915578159137823,1.2619866182349435,0.013054262827494433 +55073,0.4958187951640836,0.010872477726653444,0.08872987251109099,0.40895705586244335,0.03167077063373396,0.014104099776065623,0.021928329124867814,0.17895625050221664,0.8210437494977834,0.35693470234362396,0.44533490956619515,1.0768686858169763,0.010098041051706573,1.053328609306072,0.08405206988062329,1.0153603862171563,0.48829110990902336,1.0853372595153616,0.02915578159137823,1.080330174130121,0.013054262827494433 +55075,0.5224925299781413,0.013849560174953226,0.10567880748091556,0.4182658806210009,0.04047904066506437,0.017981120200776704,0.026506714221412174,0.20225898250705454,0.7977410174929455,0.3830383936947287,0.4442081607011847,1.373554412802211,0.010098041051706573,1.2545047735516324,0.08405206988062329,1.0699314273522218,0.48829110990902336,1.3842216852316915,0.02915578159137823,1.3769832800542599,0.013054262827494433 +55077,0.5328480312323041,0.014947495076821329,0.11129477060025827,0.42265935603478866,0.04267052153110627,0.019146444566556644,0.028052079018200813,0.2088677522986614,0.7911322477013386,0.3834009567652341,0.4487042548237693,1.4833466780718378,0.010098041051706573,1.324916653928112,0.08405206988062329,1.0912825304037232,0.48829110990902336,1.4603595859862455,0.02915578159137823,1.4666269446597167,0.013054262827494433 +55078,0.4779547614378353,0.009089437517342413,0.07658697433410608,0.40287736506420413,0.024813240325078867,0.011505297996709641,0.019017359488162817,0.16023896090857814,0.8397610390914219,0.32398773473975606,0.4636757572158433,0.9022409266430393,0.010098041051706573,0.9140474720676819,0.08405206988062329,0.9785891790004686,0.48829110990902336,0.8555760314677379,0.02915578159137823,0.8780659867566973,0.013054262827494433 +55079,0.47795702458738565,0.009379686605849844,0.07882509026496426,0.400753108750543,0.027549191547771426,0.012236454413791717,0.019624539704060653,0.16492087407442746,0.8350791259255725,0.34949774818102985,0.4441674592364427,0.9288302558040195,0.010098041051706573,0.9385267555098215,0.08405206988062329,0.9790428271027037,0.48829110990902336,0.9441024161605167,0.02915578159137823,0.9358017706652821,0.013054262827494433 +55081,0.49503909670268553,0.010821000988689126,0.08810433922995681,0.40882049357576844,0.031460975489588566,0.014023271311844799,0.021858881572717655,0.17797450709811552,0.8220254929018844,0.3570876958451935,0.44573542598784144,1.0719437574611854,0.010098041051706573,1.04646678091658,0.08405206988062329,1.013471363813036,0.48829110990902336,1.078010261028391,0.02915578159137823,1.073704922117976,0.013054262827494433 +55083,0.5109453033724338,0.011887017446865308,0.09626358173648296,0.41551714200701206,0.033874663559265245,0.01534214900600225,0.023264755284776003,0.18840290947212276,0.8115970905278772,0.3518949009397505,0.4529092659226112,1.1784813739736175,0.010098041051706573,1.1449461778942382,0.08405206988062329,1.0462362580939226,0.48829110990902336,1.1633493990077943,0.02915578159137823,1.1710655441512108,0.013054262827494433 +55085,0.5346501567275289,0.015088827508813268,0.11303073099277255,0.4227901481620523,0.04360621970967876,0.019464994790295936,0.02822187054272746,0.21141063847172095,0.7885893615282791,0.3857908316320368,0.44638115663063355,1.4974027222583506,0.010098041051706573,1.3437059881192726,0.08405206988062329,1.0947315206038144,0.48829110990902336,1.4947090489308732,0.02915578159137823,1.493991572972856,0.013054262827494433 +55087,0.48388820546361944,0.009349020504504407,0.0805345191745105,0.40452543453599543,0.027065245663268817,0.012127441746179817,0.01932062075277696,0.1664320772136807,0.8335679227863193,0.3360701217402323,0.4480817169392402,0.9256279537268408,0.010098041051706573,0.9583962449371894,0.08405206988062329,0.9904330846095766,0.48829110990902336,0.9292614125617704,0.02915578159137823,0.9282694657540698,0.013054262827494433 +55089,0.5067185888856145,0.0116082837569263,0.09425658282216476,0.41352681177611883,0.033533574722128104,0.014990739763228286,0.022908738719168497,0.18601366693386104,0.813986333066139,0.35576904782763424,0.4470367351959113,1.150319000687353,0.010098041051706573,1.1206163756565974,0.08405206988062329,1.0377663629168707,0.48829110990902336,1.1493939378943177,0.02915578159137823,1.1500966428897148,0.013054262827494433 +55091,0.513225193071154,0.0132011305875036,0.10101659769367027,0.4138567636153522,0.03909663252015619,0.0172823669604791,0.025721906807628953,0.19682704406848017,0.8031729559315198,0.38703176916248483,0.44204234089903294,1.3078071705246144,0.010098041051706573,1.1982989068352254,0.08405206988062329,1.0510277074762167,0.48829110990902336,1.33530624346557,0.02915578159137823,1.3189993712952797,0.013054262827494433 +55093,0.4740806092426836,0.008434372556211982,0.07511567749924489,0.3997947175317894,0.02418373259217865,0.010902152846825278,0.017791009359537834,0.15844494804214382,0.8415550519578562,0.32195319801810696,0.45080521814697805,0.8353466654980599,0.010098041051706573,0.8977989944884719,0.08405206988062329,0.9713036699064603,0.48829110990902336,0.8301559399260721,0.02915578159137823,0.83381347105532,0.013054262827494433 +55095,0.5077212959564673,0.011916003171197672,0.09541423144554258,0.4136790587663889,0.03459428935459633,0.015425141986887417,0.02346957526914405,0.18792639230504823,0.8120736076949517,0.3625694912644235,0.4458869447722294,1.1808431596317188,0.010098041051706573,1.1330139674571438,0.08405206988062329,1.0396039747956296,0.48829110990902336,1.1848187056304154,0.02915578159137823,1.1823152685852558,0.013054262827494433 +55097,0.48324093808386914,0.009832574759522292,0.08219891744295699,0.4022291659819874,0.028536099166912948,0.012767867950996603,0.02034714773651026,0.17009924235494078,0.8299007576450592,0.34715906309491174,0.4474286368404795,0.9740099458509667,0.010098041051706573,0.9793875889514287,0.08405206988062329,0.9902777844322815,0.48829110990902336,0.9788683294376344,0.02915578159137823,0.976626146516996,0.013054262827494433 +55099,0.5354687406960159,0.015153199038601652,0.11338643198446491,0.42336749823998127,0.044191257444452625,0.01963382791865416,0.028298942378793462,0.21175172959131533,0.7882482704086846,0.3897402596679934,0.444292130481542,1.502977621186063,0.010098041051706573,1.3475796846334525,0.08405206988062329,1.096417795026956,0.48829110990902336,1.5100116108199568,0.02915578159137823,1.5032651044792766,0.013054262827494433 +55101,0.4928646037780068,0.010292597328802928,0.0861001043759035,0.40858636149364735,0.029968984639988146,0.013363879950114413,0.020883214679865425,0.1746932194276305,0.8253067805723695,0.3480714089398415,0.44592368112073943,1.0194228327597803,0.010098041051706573,1.0226218917859748,0.08405206988062329,1.0093167186541714,0.48829110990902336,1.0274596055509595,0.02915578159137823,1.0239823074660532,0.013054262827494433 +55103,0.5125781122309585,0.013081584283093646,0.1003179455290701,0.41377942841511733,0.03858104786920214,0.017074700127479275,0.02552115271984013,0.19571250339278753,0.8042874966072124,0.38458769929675385,0.4425670392718751,1.2962507327877035,0.010098041051706573,1.1906231562892566,0.08405206988062329,1.0498997878409848,0.48829110990902336,1.3172192206955922,0.02915578159137823,1.3036750937397166,0.013054262827494433 +55105,0.4910062575759251,0.010301766467684005,0.08536742941543055,0.4076764030720009,0.029658886162862864,0.01329389535600102,0.020980927042647774,0.17386220256516802,0.826137797434832,0.34742625338443056,0.4482263859472533,1.0206423318280433,0.010098041051706573,1.0149108479370914,0.08405206988062329,1.0058737787671443,0.48829110990902336,1.0172766984562605,0.02915578159137823,1.0184577705815412,0.013054262827494433 +55107,0.5230910594611196,0.014318268603608714,0.10713429714571363,0.4175813010848278,0.04205382737855993,0.01862408514549654,0.027372420813995896,0.20481003299135286,0.7951899670086471,0.3925337496858024,0.44286302356849344,1.419935683987081,0.010098041051706573,1.272167619902643,0.08405206988062329,1.0710324900669144,0.48829110990902336,1.4355028608163156,0.02915578159137823,1.4236030542502531,0.013054262827494433 +55109,0.4800126093660648,0.008310223522141932,0.07583143840060705,0.40477686944276514,0.0238636612002079,0.010753016590810394,0.01731251087990572,0.1579780133291808,0.8420219866708192,0.3146935058008456,0.4506021310224063,0.8230626327214469,0.010098041051706573,0.9063385498934877,0.08405206988062329,0.9828862146787181,0.48829110990902336,0.8191499345985345,0.02915578159137823,0.8238431206584944,0.013054262827494433 +55111,0.4999633456294934,0.011303671870256587,0.09137522231386948,0.41030545588714407,0.03295809284253082,0.014675013138212527,0.02260900117792509,0.18276384281495844,0.8172361571850415,0.3606896049929308,0.44526281324370615,1.1198152208201135,0.010098041051706573,1.0848522115714427,0.08405206988062329,1.0236841318039742,0.48829110990902336,1.128890530928937,0.02915578159137823,1.123621125352269,0.013054262827494433 +55113,0.5298295240211787,0.014409706000955574,0.10916419857208859,0.4217809960631014,0.04105155244602826,0.01846714104091536,0.027196872480023556,0.20603645818673746,0.7939635418132626,0.3760532572308412,0.44985244017737647,1.4280807368011623,0.010098041051706573,1.297797471604388,0.08405206988062329,1.0854433007774777,0.48829110990902336,1.4077723035591898,0.02915578159137823,1.4152560146205593,0.013054262827494433 +55115,0.5122356110496568,0.013141216147450112,0.10049038925936304,0.41358206926430574,0.03871193260860801,0.017122784117803984,0.02565463209502665,0.19618001382887335,0.8038199861711266,0.38523019856847734,0.4423128209826587,1.3031238267826104,0.010098041051706573,1.1915169253730953,0.08405206988062329,1.0489373811333529,0.48829110990902336,1.32101100179759,0.02915578159137823,1.3088336748229101,0.013054262827494433 +55117,0.49839215185190405,0.01117887449918339,0.09058453480392603,0.40958671213854925,0.032907135427832246,0.014605273061277246,0.022429876669697566,0.18175353377322642,0.81824646622677355,0.3632754255355078,0.44383301285241544,1.1065977335659096,0.010098041051706573,1.0743014889717286,0.08405206988062329,1.0205435208509683,0.48829110990902336,1.1252558170989428,0.02915578159137823,1.114685769041662,0.013054262827494433 +55119,0.5069418280167425,0.012372630914661578,0.09653764182611668,0.4119370552097542,0.03664394844029307,0.01619689552136743,0.024406411605579634,0.19043139960218156,0.8095686003978184,0.3795819718312163,0.4420073766820826,1.2255714958728021,0.010098041051706573,1.1457511191352,0.08405206988062329,1.0376442318998274,0.48829110990902336,1.2493897218833827,0.02915578159137823,1.2348097028690708,0.013054262827494433 +55121,0.5046890549984075,0.012076058145390983,0.09495710390256702,0.4114951204211741,0.03545634199147324,0.015721569656770656,0.023927719505288433,0.1881497190440689,0.8118502809559311,0.37339325373543464,0.44340641966256633,1.1964622487380945,0.010098041051706573,1.126726384730721,0.08405206988062329,1.03329048576497,0.48829110990902336,1.2114687892872862,0.02915578159137823,1.2022898254471284,0.013054262827494433 +55123,0.5069365881909631,0.01245605509968718,0.09641069256486552,0.41250839124907995,0.036540201994288826,0.016202642585886842,0.02457122920272423,0.19018294360822027,0.8098170563917797,0.379005699701871,0.44341962281487357,1.2336713964886434,0.010098041051706573,1.1443069766327127,0.08405206988062329,1.0380957565129454,0.48829110990902336,1.2487786051773893,0.02915578159137823,1.2382406618564896,0.013054262827494433 +55125,0.5520920032399511,0.01772572543018639,0.12539837330459977,0.4281728400517475,0.051288866712624184,0.022820896852848417,0.03210647016468813,0.22713310928015548,0.7728668907198445,0.40900743256087235,0.44494835459546833,1.7586133240540356,0.010098041051706573,1.4895959045626737,0.08405206988062329,1.1305308935478555,0.48829110990902336,1.7549942871896709,0.02915578159137823,1.7511321531267479,0.013054262827494433 +55127,0.491044782418657,0.010380468876495874,0.08582595165699769,0.40684554085550184,0.030122609493377764,0.013447440146105995,0.021139556407394327,0.17478233091951242,0.8252176690804875,0.3509732069591536,0.4464234796478146,1.0281084429349514,0.010098041051706573,1.0204206347661713,0.08405206988062329,1.0056675714637704,0.48829110990902336,1.0324276656478557,0.02915578159137823,1.0302079076986619,0.013054262827494433 +55129,0.5324598677132166,0.01551381488136259,0.113999533167013,0.42060911728640876,0.04635680437517423,0.0203570336106615,0.02913612052677432,0.21409976616005405,0.7859002338399459,0.4066403000726329,0.43913798384177316,1.5368954859627366,0.010098041051706573,1.3509431467291995,0.08405206988062329,1.090377981092692,0.48829110990902336,1.5824731104254879,0.02915578159137823,1.5554471544496398,0.013054262827494433 +55131,0.4971315464939329,0.0104089425918708,0.08787038076245807,0.4106311937722706,0.03031513333322018,0.013535957777993171,0.02093800456897344,0.17675478730362662,0.8232452126963734,0.34499831536148395,0.4465082712718959,1.0303259474290263,0.010098041051706573,1.042641505492504,0.08405206988062329,1.0179704765938702,0.48829110990902336,1.0398674003879906,0.02915578159137823,1.037126022497748,0.013054262827494433 +55133,0.5019398502750692,0.011052328273649475,0.09129265794259957,0.4118030077857522,0.03202134721184906,0.014312000454342461,0.02201922853424103,0.1818796772015015,0.8181203227984986,0.35075490114421404,0.44695185245193253,1.094740462124585,0.010098041051706573,1.0843124523582983,0.08405206988062329,1.0276256535826165,0.48829110990902336,1.0976020630583727,0.02915578159137823,1.09692549999485,0.013054262827494433 +55135,0.5118720753974817,0.013105267671292444,0.10051838243506102,0.4130962983338529,0.03890124178470301,0.01717115235146124,0.025602622805934217,0.19637403028287084,0.8036259697171292,0.3870062454480383,0.4414037075344312,1.2982746603888553,0.010098041051706573,1.1914249816064726,0.08405206988062329,1.0480711581481168,0.48829110990902336,1.3268914140138373,0.02915578159137823,1.3102319368648478,0.013054262827494433 +55137,0.5262807922342894,0.014342831610143422,0.10822272860824403,0.41968236388238994,0.04145807025783989,0.0185157100227442,0.02725319225361029,0.20563685812813307,0.794363141871867,0.3830809922369834,0.44661292500084,1.4231293163309484,0.010098041051706573,1.285788273216599,0.08405206988062329,1.077561627772421,0.48829110990902336,1.4215430692971198,0.02915578159137823,1.4194370372306078,0.013054262827494433 +55139,0.4894016000507816,0.010330862876981211,0.08574626521984,0.40540515959634854,0.030352064824341253,0.013487250789478525,0.021109172662919888,0.1752063442598936,0.8247936557401064,0.3539753567869494,0.44436023932916224,1.022777159663154,0.010098041051706573,1.0181072268868758,0.08405206988062329,1.0020680700269582,0.48829110990902336,1.0393400964411437,0.02915578159137823,1.031271568429048,0.013054262827494433 +55141,0.5094632461166575,0.012630286275971368,0.0981255962129032,0.4127573170876122,0.03727681740177982,0.016499573832253145,0.024791359086734337,0.19260583950041077,0.8073941604995892,0.3798888245315756,0.4426229217590168,1.2516244315080307,0.010098041051706573,1.1647284882268583,0.08405206988062329,1.043041548283017,0.48829110990902336,1.271682115121,0.02915578159137823,1.259433022230338,0.013054262827494433 +56001,0.45168863093723294,0.007187331394183169,0.06537054332144111,0.38634944912056135,0.02050371277535722,0.009293167604429855,0.015912137038450114,0.14472479235485797,0.855275207645142,0.31365369987114877,0.4532431616774805,0.7114449784818109,0.010098041051706573,0.7801108018945266,0.08405206988062329,0.9260421950898087,0.48829110990902336,0.704963877388877,0.02915578159137823,0.7088281078447483,0.013054262827494433 +56003,0.5132088503641272,0.013190248408113316,0.09991239513357139,0.4146118191353849,0.037879303057741044,0.016924294514114063,0.025701521707497232,0.1946817461598382,0.8053182538401618,0.37912516266976454,0.4467952984329103,1.3072980602462212,0.010098041051706573,1.1890670837951385,0.08405206988062329,1.0509058472647361,0.48829110990902336,1.2985174025252397,0.02915578159137823,1.2992838978557488,0.013054262827494433 +56005,0.4609519443535477,0.005866021997451242,0.06317185516541271,0.3975131410109295,0.016121601864793923,0.007512161161142067,0.012725886221562469,0.13704650981352676,0.8629534901864733,0.2552022862488401,0.4659686564737091,0.5818558669957268,0.010098041051706573,0.7574431450103389,0.08405206988062329,0.9438130037755947,0.48829110990902336,0.5576305748391669,0.02915578159137823,0.5740580018446584,0.013054262827494433 +56007,0.4974977458842699,0.010041359389387241,0.08673092375316825,0.41186918139819684,0.02836929939724482,0.01298112845635158,0.020183728413762713,0.1743343049705877,0.8256656950294123,0.3270955521929224,0.45757663150512223,0.9953736230015549,0.010098041051706573,1.035485295374048,0.08405206988062329,1.0191247243443198,0.48829110990902336,0.9738236314472937,0.02915578159137823,0.9868125637525986,0.013054262827494433 +56009,0.49509563222156133,0.010031087324667868,0.08598397991728376,0.4107073966962112,0.028540183331097896,0.012920219404991506,0.020260908543379825,0.17367145723233707,0.826328542767663,0.3319244277661192,0.4527027473896218,0.9936866356480343,0.010098041051706573,1.0246559731473825,0.08405206988062329,1.0143275488833272,0.48829110990902336,0.9804592619619853,0.02915578159137823,0.9882742544730934,0.013054262827494433 +56011,0.515616609674838,0.012588674783678167,0.09912474514690375,0.41706088532429375,0.035475968835275484,0.016145695712946197,0.024414796861600193,0.19224505822148463,0.8077549417785154,0.35789215682420955,0.45511641381564594,1.2479391571651304,0.010098041051706573,1.1808542028427662,0.08405206988062329,1.0556705141654814,0.48829110990902336,1.2180160982461774,0.02915578159137823,1.2310075427850822,0.013054262827494433 +56013,0.4983733489405748,0.011157086330818525,0.08977852728065958,0.4102003698624624,0.03209810081058502,0.014377200029737367,0.022387004350324678,0.18014311453754045,0.8198568854624595,0.35752536583989736,0.4479143521474699,1.104699747296352,0.010098041051706573,1.0678789465543996,0.08405206988062329,1.0202550294397474,0.48829110990902336,1.0998116855721038,0.02915578159137823,1.1012425376069102,0.013054262827494433 +56015,0.5174510275363093,0.01408200968466784,0.1049893295538786,0.41422456819461667,0.04170175031503386,0.01841338850444134,0.027214188271526257,0.20289713222477182,0.7971028677752282,0.3971998915721553,0.4415495360587573,1.3962454163592621,0.010098041051706573,1.2450885470503372,0.08405206988062329,1.0596352312765356,0.48829110990902336,1.4206741227565938,0.02915578159137823,1.4029216611566155,0.013054262827494433 +56017,0.5451486416407565,0.017393064232863856,0.12232310018928208,0.4236254573969528,0.04995775755045729,0.02229015759028863,0.0319051776053504,0.2243848573503204,0.7756151426496796,0.4084082031370439,0.44618010661858853,1.724511649674303,0.010098041051706573,1.4529406533495588,0.08405206988062329,1.116402533142784,0.48829110990902336,1.711026939473188,0.02915578159137823,1.7130602682830172,0.013054262827494433 +56019,0.524858460490214,0.014171310509592323,0.10703865133457507,0.41932993520832595,0.040661466486123996,0.01820080024736056,0.027000251641854874,0.20393812692778496,0.7960618730722151,0.37987648367342364,0.44761790019481235,1.4054215947992197,0.010098041051706573,1.2731844340967071,0.08405206988062329,1.0754546676086507,0.48829110990902336,1.3929780167171297,0.02915578159137823,1.3965612815868655,0.013054262827494433 +56021,0.48825205617395545,0.009677042732571807,0.08261241411552522,0.40707404310056056,0.027673254211627835,0.012477660592556554,0.01981976851956984,0.1692003404202601,0.8307996595797399,0.3349769463573543,0.4508924211491416,0.9589700480348582,0.010098041051706573,0.9856400015312701,0.08405206988062329,1.0000428921620357,0.48829110990902336,0.9499739926699495,0.02915578159137823,0.9551983893462437,0.013054262827494433 +56023,0.4949369168138005,0.010547603717641279,0.0866909993480499,0.41022643958525556,0.030191884533471505,0.013590850859388093,0.02131100622993006,0.17515565398946348,0.8248443460105366,0.3482701175499907,0.45014914005520007,1.0456063601493781,0.010098041051706573,1.0310068276383837,0.08405206988062329,1.0134487691464265,0.48829110990902336,1.0375917247416093,0.02915578159137823,1.0414796726677324,0.013054262827494433 +56025,0.48909977033065044,0.01013968021438651,0.08454341620256063,0.40606179612534893,0.029413479974860338,0.013149065138708883,0.020731312565392727,0.17285515416497946,0.8271448458350206,0.34790976395355866,0.44704214360039585,1.004420147194312,0.010098041051706573,1.0061589149288863,0.08405206988062329,1.0018837749516885,0.48829110990902336,1.00856075097357,0.02915578159137823,1.006428564132401,0.013054262827494433 +56027,0.5193643975486988,0.012149079473460526,0.09997772313136259,0.41914602706715376,0.03410927417262495,0.015637050800663826,0.02339220695681466,0.19250014749420338,0.8074998525057966,0.34116874343905734,0.45843985777960766,1.2044080996351747,0.010098041051706573,1.1890506497846043,0.08405206988062329,1.063542046878836,0.48829110990902336,1.173318529764759,0.02915578159137823,1.1915467693379953,0.013054262827494433 +56029,0.5157157880966856,0.012871735614849816,0.10042581940679549,0.4163491075149539,0.036947795456615765,0.01654620076375502,0.024958971417870655,0.19473093848344197,0.8052690615165581,0.36791131677951366,0.44782646865044035,1.2759307099436343,0.010098041051706573,1.1945979115952365,0.08405206988062329,1.0564827636510814,0.48829110990902336,1.2659392816298105,0.02915578159137823,1.2695649121454036,0.013054262827494433 +56031,0.5281761211527918,0.01436571513079692,0.10853319369253053,0.4210289904528274,0.041521603310674726,0.018524834376188147,0.027198721326974148,0.20548674835137776,0.7945132516486222,0.3825705472954522,0.44614930299248884,1.424843680136297,0.010098041051706573,1.2894427551180159,0.08405206988062329,1.0819791783293533,0.48829110990902336,1.4212786351397309,0.02915578159137823,1.4201978006369202,0.013054262827494433 +56033,0.5113589322348601,0.012138467116565039,0.09738112661931142,0.41505792284488885,0.035275353372650496,0.015757355094192703,0.02373766517290444,0.1904359550222653,0.8095640449777347,0.3622401444435037,0.4466958821852544,1.2028023439297575,0.010098041051706573,1.1562785197772585,0.08405206988062329,1.047370234955821,0.48829110990902336,1.209098741988686,0.02915578159137823,1.2055106124129888,0.013054262827494433 +56035,0.49546066872630024,0.010056900164258403,0.08612777114707523,0.4104327870992738,0.02839213828881826,0.012929540292593413,0.020298079744880782,0.17383371997718244,0.8261662800228176,0.32965137621330876,0.4553915651251066,0.9973113804124847,0.010098041051706573,1.0265726444877814,0.08405206988062329,1.0145761973874254,0.48829110990902336,0.9747240346994925,0.02915578159137823,0.9878827201569539,0.013054262827494433 +56037,0.4735565517247988,0.00755964441425933,0.07129443315259935,0.4029027772787186,0.020940549508645805,0.009654143661436545,0.015963551526687606,0.15055104378332237,0.8494489562166776,0.293719279089076,0.46102628096987625,0.7502705570406041,0.010098041051706573,0.853730527386661,0.08405206988062329,0.9695016119417594,0.48829110990902336,0.7218662836035681,0.02915578159137823,0.7382847852234766,0.013054262827494433 +56039,0.4817428750614287,0.007906607441201799,0.07610360476083662,0.40590229946126966,0.022057036328267804,0.010179203512012921,0.016412505198325142,0.15797556891969058,0.8420244310803094,0.2898290612853925,0.46149461607258097,0.7840080011906878,0.010098041051706573,0.9114056991179674,0.08405206988062329,0.986201257510764,0.48829110990902336,0.760519344818716,0.02915578159137823,0.77817120934648365,0.013054262827494433 +56041,0.4744811340974036,0.007595390326596738,0.07144067086471517,0.4040047134982787,0.020751128716954104,0.009594677546191203,0.01600778151284203,0.15056588287881117,0.8494341171211888,0.29046659928837776,0.46236894759137376,0.754130495601868,0.010098041051706573,0.8545107600794789,0.08405206988062329,0.9717396262634944,0.48829110990902336,0.7162212123623641,0.02915578159137823,0.7374724775462943,0.013054262827494433 +56043,0.5101718629345211,0.012490519152005943,0.09752186708162747,0.4138439979832456,0.03626444758982138,0.016150288553620287,0.024482963603990562,0.191154930655484,0.8088450693445159,0.37185965235332724,0.4453477062795054,1.2369038144376288,0.010098041051706573,1.1582518332776464,0.08405206988062329,1.0446483907842912,0.48829110990902336,1.241416238779466,0.02915578159137823,1.2371043776104802,0.013054262827494433 +56045,0.51161151875552,0.01237046332267237,0.09836065595001686,0.4149705186056589,0.03580424980677545,0.01600497162365428,0.024179407361200854,0.19225653126277584,0.8077434687372241,0.36400987224983333,0.44701318167614745,1.2258091139172076,0.010098041051706573,1.1679628631346266,0.08405206988062329,1.0477865105027093,0.48829110990902336,1.2263409780474959,0.02915578159137823,1.2265338290099046,0.013054262827494433 +60000,0.43122882013132213,0.004226342446420727,0.04701524012246997,0.3829370427950189,0.011330714757414668,0.005274702170564581,0.009800695707521772,0.10902620123616139,0.8909737987638386,0.2410008909430069,0.46552245674641896,0.41812120996281954,0.010098041051706573,0.5655549135030719,0.08405206988062329,0.8827205462867889,0.48829110990902336,0.3922252134175084,0.02915578159137823,0.4062181227692796,0.013054262827494433 +66000,0.453923115266458,0.006200053015989859,0.06097712518691201,0.3930704916599067,0.01710331283953379,0.007866507229965597,0.013658817556251476,0.13433359777485168,0.8656664022251483,0.2804873595976743,0.45994055676642975,0.6149210495327828,0.010098041051706573,0.7323928593785545,0.08405206988062329,0.9293115895467032,0.48829110990902336,0.5887397513451238,0.02915578159137823,0.6040919843702361,0.013054262827494433 +69000,0.45254648433090283,0.0041674141022954225,0.055480022033245674,0.39617024648170224,0.011021325263179284,0.005283616702689011,0.009208808921490154,0.12259518956439086,0.8774048104356091,0.198653945317017,0.47939939857694247,0.4132312662017742,0.010098041051706573,0.6626655378074917,0.08405206988062329,0.9263880018009538,0.48829110990902336,0.3853349604537829,0.02915578159137823,0.40762052170127894,0.013054262827494433 +72000,0.4881770255182821,0.010543876376212232,0.08519992384722908,0.4042722970890107,0.03017385394206121,0.013540055136989426,0.02159846904925141,0.1745266970660387,0.8254733029339613,0.35415353182903747,0.44873469471246763,1.0445951022889433,0.010098041051706573,1.0130061209420833,0.08405206988062329,0.9998825199075642,0.48829110990902336,1.0352630390904922,0.02915578159137823,1.038154277185737,0.013054262827494433 +72001,0.4844247345257695,0.009903860136588255,0.08179734008252965,0.404049534605067,0.027950841793997042,0.012728244182134111,0.020444579788609883,0.16885459030618172,0.8311454096938182,0.3417084438906689,0.4553796367187673,0.9825077424147045,0.010098041051706573,0.9753543931309101,0.08405206988062329,0.9923404777197213,0.48829110990902336,0.9602035901686838,0.02915578159137823,0.9704656377178325,0.013054262827494433 +72003,0.4858394614450101,0.009242882969195648,0.08058399888868154,0.4063809553123865,0.0260074605961265,0.011951329228647688,0.019024562026528195,0.16586548702529066,0.8341345129747093,0.32273727979239547,0.4595346471630412,0.916744978314147,0.010098041051706573,0.961796353718999,0.08405206988062329,0.9951005760743583,0.48829110990902336,0.8961775080152505,0.02915578159137823,0.9092559819109051,0.013054262827494433 +72005,0.49546401171834065,0.01106721526185795,0.08848732146050606,0.40864376219407583,0.0312729293272574,0.014221012622762865,0.022337071916636794,0.1785948512256607,0.8214051487743392,0.3534170637226852,0.4547387446166698,1.0971857137091632,0.010098041051706573,1.0518986089218227,0.08405206988062329,1.0147843535049952,0.48829110990902336,1.0745714707948646,0.02915578159137823,1.0839682642875015,0.013054262827494433 +72007,0.48465634445377426,0.009783945754458383,0.0817005720647405,0.40382299777644803,0.027729907789174873,0.012614255583064714,0.020187388169828364,0.16857423409327302,0.831425765906727,0.3394089795014087,0.45489713413288135,0.9703355241372555,0.010098041051706573,0.9744407361564236,0.08405206988062329,0.992545671621681,0.48829110990902336,0.9524500558628471,0.02915578159137823,0.9613678849420413,0.013054262827494433 +72009,0.48722369982719593,0.01038423849341628,0.08440642065797452,0.40416368125485236,0.029414633199598327,0.01334830884278086,0.021313081644220647,0.17323956262372092,0.8267604373762791,0.3484881004348015,0.45379824226273674,1.0291022338647675,0.010098041051706573,1.0049413862359498,0.08405206988062329,0.9981419235004968,0.48829110990902336,1.010941530576058,0.02915578159137823,1.0187058719542657,0.013054262827494433 +72011,0.49251566534149116,0.010628582002072654,0.08660582584883253,0.4075503313380088,0.0299609008999472,0.013616313396026885,0.02158019074317811,0.17584379938206315,0.8241562006179368,0.34594555973916713,0.45446942471782886,1.0540332455507366,0.010098041051706573,1.030387930431823,0.08405206988062329,1.008786420904151,0.48829110990902336,1.0284347367315605,0.02915578159137823,1.040267784291017,0.013054262827494433 +72013,0.49589539822798884,0.011414006079914068,0.09014166368362586,0.40751462880287614,0.03268318312002851,0.014639858434363339,0.02301696309483892,0.1817755599381123,0.8182244400618877,0.36257577000950536,0.4479324544552063,1.131568105645434,0.010098041051706573,1.071128433209462,0.08405206988062329,1.0157863387504147,0.48829110990902336,1.120506909793515,0.02915578159137823,1.1233259286477697,0.013054262827494433 +72015,0.4813658810333712,0.009722793033571108,0.08012885699121831,0.4026979621602119,0.027399108838956066,0.012471907612280248,0.020198342709081753,0.16646143847836048,0.8335385615216395,0.34193809655813334,0.4551939147213315,0.9646449922276072,0.010098041051706573,0.9546903242391795,0.08405206988062329,0.9856322596036824,0.48829110990902336,0.9413796166551569,0.02915578159137823,0.9511435511509493,0.013054262827494433 +72017,0.4848452912869634,0.01049909423126301,0.08376660084364547,0.40279070839490616,0.030426692859554835,0.01355882955469049,0.02165452448428328,0.17276975222611138,0.8272302477738886,0.36323179588423044,0.44562284890034104,1.040225840105865,0.010098041051706573,0.9931776248670556,0.08405206988062329,0.9930871108158481,0.48829110990902336,1.0418321108388664,0.02915578159137823,1.039223075052703,0.013054262827494433 +72019,0.46780015731820057,0.008276422129317226,0.07230081000740934,0.39660148964028324,0.023606131647707855,0.010697484984780105,0.017692217498951272,0.15455490742434677,0.8454450925756533,0.32649885451198557,0.4531655226034811,0.8201680292610996,0.010098041051706573,0.8632555128301052,0.08405206988062329,0.958119465333773,0.48829110990902336,0.8112833309526122,0.02915578159137823,0.8162006200734035,0.013054262827494433 +72021,0.49437668760542364,0.011465839508125861,0.08984823315387742,0.40626705681983877,0.03301524388481161,0.014757627871012306,0.023192516547780827,0.1817404327640706,0.8182595672359294,0.3674556830546515,0.446994361831791,1.1362392385696807,0.010098041051706573,1.0674206274042777,0.08405206988062329,1.0127464054557807,0.48829110990902336,1.1312759095952356,0.02915578159137823,1.1314969174793612,0.013054262827494433 +72023,0.5023086627364932,0.012254421543491918,0.09431993544183837,0.40944946629714174,0.035137973891303326,0.01569106292685666,0.02439619790097166,0.18777286246269217,0.8122271375373078,0.37254026655871575,0.44655571136217986,1.2142209863635363,0.010098041051706573,1.1199109518472519,0.08405206988062329,1.0285333398660783,0.48829110990902336,1.2027177704471166,0.02915578159137823,1.205623779661549,0.013054262827494433 +72025,0.49082133616673584,0.01074488232597157,0.0864847265356174,0.40575107028499957,0.03088057244639363,0.013815213317402875,0.021891636598131606,0.17620408927422393,0.8237959107257761,0.35706388495864577,0.4473755576061634,1.0645904668905775,0.010098041051706573,1.0270544947826656,0.08405206988062329,1.005183953945231,0.48829110990902336,1.0587275277352755,0.02915578159137823,1.0601418841453585,0.013054262827494433 +72027,0.48796735471361385,0.010197438420319921,0.08372148248921801,0.4052839930758799,0.0289258712937768,0.013131277554938918,0.020897788185655897,0.1715718924237336,0.8284281075762664,0.3455011836120077,0.4539630776053415,1.0110414388445486,0.010098041051706573,0.9967755660115977,0.08405206988062329,0.9995993747412621,0.48829110990902336,0.9947969868382793,0.02915578159137823,1.0021363603884121,0.013054262827494433 +72029,0.48024798906999816,0.009059877461054714,0.07768587295521595,0.4041350591087794,0.02541579729139011,0.011671289390358396,0.018864998224353207,0.16176199530924618,0.8382380046907538,0.3271611211222626,0.45921397847755807,0.8994156058418961,0.010098041051706573,0.9276095491948902,0.08405206988062329,0.9838242633193192,0.48829110990902336,0.8746986918309471,0.02915578159137823,0.8882368833866987,0.013054262827494433 +72031,0.4957908319202885,0.011276907754027735,0.08940069194991546,0.4079712528214882,0.032152060993584454,0.014472822240633922,0.02274529303083361,0.18031937299778264,0.8196806270022173,0.3596399568316189,0.45013668777008714,1.1177890672701776,0.010098041051706573,1.0623042341073994,0.08405206988062329,1.0154782742676307,0.48829110990902336,1.1025315248643126,0.02915578159137823,1.1075991735693638,0.013054262827494433 +72033,0.48216491853385945,0.009750686967070451,0.08066037634938486,0.40300961406880714,0.027719641559042878,0.012538214010673314,0.020222721712562175,0.1672879408038488,0.8327120591961512,0.3436587183646866,0.4523223716283235,0.9664622984702891,0.010098041051706573,0.961819531196219,0.08405206988062329,0.9876616762965802,0.48829110990902336,0.9529603250333476,0.02915578159137823,0.9585578143041635,0.013054262827494433 +72035,0.48962529982698466,0.010588276232459603,0.08564543845377615,0.40534143779150417,0.030010789936799676,0.013611941210953438,0.021625263719421986,0.17492036968686064,0.8250796303131394,0.3504073360894387,0.4535682412765241,1.0492113818324067,0.010098041051706573,1.0186873957897453,0.08405206988062329,1.002907762649664,0.48829110990902336,1.0315002604358026,0.02915578159137823,1.0389469133352383,0.013054262827494433 +72037,0.4896594903109338,0.010519461009960436,0.08526695001537715,0.4057105680776012,0.03029378486802109,0.013571975591735307,0.02148321684377153,0.17413519333860483,0.8258648066613952,0.3552816755209125,0.4480118826638344,1.0421194672095926,0.010098041051706573,1.0135190810963306,0.08405206988062329,1.0024734407329405,0.48829110990902336,1.0378563036316697,0.02915578159137823,1.0392189288890146,0.013054262827494433 +72039,0.4827395378406568,0.009980354907994971,0.0817993936469893,0.40245281638024255,0.028487362304727735,0.012849013664718864,0.020674409543163,0.1694482992068276,0.8305517007931724,0.348258844407415,0.4510425895972283,0.9893777919056401,0.010098041051706573,0.9737424737112601,0.08405206988062329,0.9890047171249032,0.48829110990902336,0.978992015718366,0.02915578159137823,0.9827499526384376,0.013054262827494433 +72041,0.47940826377592854,0.009032941209038275,0.07801915903447117,0.4023603607698421,0.025594927668809206,0.011678848340985475,0.018841855452996943,0.162740538554706,0.837259461445294,0.32805951750262535,0.4562954227535361,0.8963135817549859,0.010098041051706573,0.9310875373924138,0.08405206988062329,0.9817533192915348,0.48829110990902336,0.879873655470839,0.02915578159137823,0.8891114507784629,0.013054262827494433 +72043,0.4789632783771459,0.009583897713839972,0.07917216162482188,0.4016139522712345,0.027267435923371407,0.012332530186827544,0.020009671192983206,0.16529902228220517,0.8347009777177948,0.344406864278701,0.45228052323970486,0.9503929943909017,0.010098041051706573,0.9432778334127163,0.08405206988062329,0.9810631480148184,0.48829110990902336,0.9372480375799241,0.02915578159137823,0.9421692268766944,0.013054262827494433 +72045,0.47962400315133347,0.009157763231496249,0.07847288302789804,0.402111449850197,0.02574700817708659,0.011799404387246939,0.01909362995039,0.16361333568023673,0.8363866643197633,0.3281007041366535,0.4582825432023498,0.9090042713775621,0.010098041051706573,0.9369797727172966,0.08405206988062329,0.98259876822880865,0.48829110990902336,0.8856902213806725,0.02915578159137823,0.8985432353624789,0.013054262827494433 +72047,0.48005936776564784,0.009312069183513818,0.0788417580321414,0.40227000985752437,0.026194967248242843,0.011963224837210164,0.019397744964034784,0.16423334971900774,0.8357666502809923,0.3322473762896554,0.45669936227970115,0.9241005463111247,0.010098041051706573,0.941257128954951,0.08405206988062329,0.9833860466979287,0.48829110990902336,0.9001796929556758,0.02915578159137823,0.9123001014248455,0.013054262827494433 +72049,0.5016345557620105,0.01052851036724549,0.08878792280980992,0.41441009955720504,0.029430832229560333,0.01353211098861506,0.020988407290347257,0.1769972219615855,0.8230027780384145,0.3314733727086203,0.4597936912916586,1.044836243201118,0.010098041051706573,1.057853164131497,0.08405206988062329,1.0273791745300196,0.48829110990902336,1.0140709350759973,0.02915578159137823,1.0323137576615058,0.013054262827494433 +72051,0.48342115973184197,0.009408190253418004,0.08007410403500206,0.404728910094739,0.026720460950899617,0.012164357626139866,0.01946168483530347,0.1656404615789261,0.8343595384210739,0.3336966585254522,0.4552450516663082,0.9332636426172529,0.010098041051706573,0.9548186048943974,0.08405206988062329,0.9901663535638384,0.48829110990902336,0.9192156275850943,0.02915578159137823,0.9277278721042936,0.013054262827494433 +72053,0.4928495394752209,0.011487976430140913,0.08906443194066732,0.4054610798143281,0.03305729738291619,0.014749184509615454,0.023309297280409647,0.18071322950915578,0.8192867704908442,0.3711616036010672,0.4461703066275993,1.138471465170086,0.010098041051706573,1.057631004686339,0.08405206988062329,1.009381522365476,0.48829110990902336,1.131712364296587,0.02915578159137823,1.1324721305498804,0.013054262827494433 +72054,0.4800150487851032,0.00932890071279375,0.07865266523290168,0.4024158513711713,0.026413948614023134,0.012026589769434558,0.01943460051180642,0.16385458212605644,0.8361454178739436,0.33583030576023953,0.4553120756451255,0.9252554947092324,0.010098041051706573,0.939210981281541,0.08405206988062329,0.9828971366244819,0.48829110990902336,0.9088824399274062,0.02915578159137823,0.9175996876551842,0.013054262827494433 +72055,0.4940131081527812,0.011085182884024039,0.08791087955725026,0.4079357606516997,0.03101710316996651,0.014191200917537094,0.022439046051781635,0.17795252414651,0.82204747585349,0.3528243981425214,0.45752824948779436,1.0993951949289666,0.010098041051706573,1.045066477718316,0.08405206988062329,1.0119763480825392,0.48829110990902336,1.0681693887571209,0.02915578159137823,1.0810639244847102,0.013054262827494433 +72057,0.47697312870998276,0.009180251219002048,0.07777417136244538,0.40070466740993727,0.02604985048442702,0.01183217801241301,0.019246893936836384,0.16305776296621302,0.836942237033787,0.33494217975050833,0.45421289536715226,0.9104722296889991,0.010098041051706573,0.9272327087062313,0.08405206988062329,0.9770143390913855,0.48829110990902336,0.8942379529805038,0.02915578159137823,0.9023674417218635,0.013054262827494433 +72059,0.48731669488177776,0.010402550499059308,0.08418658567835285,0.40483415846663373,0.029270698852135433,0.013254675370765388,0.021346591668859098,0.1727553900011088,0.8272446099988913,0.34768839496554016,0.45283084759004305,1.031786140633164,0.010098041051706573,0.9991966128834173,0.08405206988062329,0.9981384228123862,0.48829110990902336,1.0048378346529092,0.02915578159137823,1.0149503056741453,0.013054262827494433 +72061,0.4988512095869304,0.011481079967521166,0.09147932038399387,0.40908601301372194,0.0332653453461924,0.014850487133866882,0.02301503884701007,0.183379971073424,0.816620028926576,0.36363787145070264,0.4464251604580648,1.1383741231367661,0.010098041051706573,1.086077618397859,0.08405206988062329,1.0214919251597656,0.48829110990902336,1.1398999338927889,0.02915578159137823,1.1382353071402278,0.013054262827494433 +72063,0.47869231425553294,0.008929756920270666,0.07749875486452927,0.4023120015703539,0.025405472706252583,0.01156418767782676,0.018654481499579354,0.16189680209312762,0.8381031979068724,0.3278178178560714,0.4551849049036068,0.8858523431719529,0.010098041051706573,0.9235503395050373,0.08405206988062329,0.9799319328381086,0.48829110990902336,0.8724822342138101,0.02915578159137823,0.8808693881282331,0.013054262827494433 +72065,0.4879428935563893,0.010195780583128155,0.08381473908908482,0.40540303443654213,0.028654703298195687,0.013047522777348834,0.02089543821166416,0.17177161548188166,0.8282283845181183,0.3418814352895526,0.45533616738479377,1.0115016634296166,0.010098041051706573,0.9978573422679705,0.08405206988062329,0.9994286778128887,0.48829110990902336,0.9843366341487294,0.02915578159137823,0.9972788863329931,0.013054262827494433 +72067,0.5125281485538513,0.013578087795600179,0.10147085296842158,0.41258383989086167,0.03946912237829871,0.017545131116289588,0.026492374777682147,0.19798103431924977,0.8020189656807503,0.3889700463105574,0.44452802745714004,1.3470532222953202,0.010098041051706573,1.2057904816107565,0.08405206988062329,1.0496411738474685,0.48829110990902336,1.3517357432493209,0.02915578159137823,1.344641047475084,0.013054262827494433 +72069,0.4919832840913818,0.01061543556468723,0.08637211304981432,0.40739300133889056,0.0300142403564278,0.013626001284851143,0.02157682162777608,0.17555903999732522,0.8244409600026747,0.34749920196021333,0.4539845461033972,1.0523265179452463,0.010098041051706573,1.0277305819240454,0.08405206988062329,1.007932227631452,0.48829110990902336,1.0301835034091578,0.02915578159137823,1.0399790187206406,0.013054262827494433 +72071,0.49151223419039214,0.010786386653222221,0.08686634982960642,0.4061608207481834,0.030991194121655973,0.013869931054872307,0.021945306551706314,0.17673283346179716,0.8232671665382029,0.35676869331389044,0.4475442604897983,1.0686401698605235,0.010098041051706573,1.0318179971730521,0.08405206988062329,1.0067691861702608,0.48829110990902336,1.062713430858274,0.02915578159137823,1.0640242302839145,0.013054262827494433 +72073,0.4718513102240881,0.00862176553576017,0.07421971562631115,0.3991295833489118,0.024605969765256898,0.011121173651457907,0.01827220853040672,0.15729471131713776,0.8427052886828622,0.33152875294140843,0.4519705485113928,0.8546183539332104,0.010098041051706573,0.8863149765474503,0.08405206988062329,0.9664607627089242,0.48829110990902336,0.8455794590688002,0.02915578159137823,0.8503345820169699,0.013054262827494433 +72075,0.4753593809122611,0.008941519090159559,0.07618069209547795,0.4009047814294602,0.025427156264481797,0.01152261514554434,0.018810019217460082,0.16025915371498456,0.8397408462850154,0.3337742880126858,0.45316177026212845,0.8869850507854964,0.010098041051706573,0.9088897436746446,0.08405206988062329,0.9734080124468636,0.48829110990902336,0.8737589825354617,0.02915578159137823,0.8804223084190372,0.013054262827494433 +72077,0.47630859041076545,0.008819543902801558,0.07602691959038305,0.40159987963488675,0.025215804814454963,0.011399868807871676,0.018516449378323495,0.15961693977599253,0.8403830602240074,0.33166942643885067,0.4520922053353102,0.874309355624848,0.010098041051706573,0.9071269258058255,0.08405206988062329,0.9752172799760859,0.48829110990902336,0.8663983372920582,0.02915578159137823,0.871234445624964,0.013054262827494433 +72079,0.5031287937849545,0.012358192814488245,0.09465474906682816,0.4101767565824844,0.0348932407917915,0.015783986751394814,0.024562682492328874,0.18813224414121918,0.8118677558587808,0.3686369795049181,0.45235083910887225,1.2251524643927492,0.010098041051706573,1.1237559422805299,0.08405206988062329,1.0304808716050236,0.48829110990902336,1.1959082101392673,0.02915578159137823,1.2052552558475025,0.013054262827494433 +72081,0.4871681078295759,0.010373971591084104,0.08438341703435777,0.4040697040789951,0.029986506210766144,0.013410767515444011,0.021294439074228542,0.1732121123656914,0.8267878876343087,0.35536017934135994,0.44722674329525935,1.0277849655774145,0.010098041051706573,1.0038629962731553,0.08405206988062329,0.9980292021793626,0.48829110990902336,1.026925537159636,0.02915578159137823,1.026704319023844,0.013054262827494433 +72083,0.4853244259419922,0.00995269262493922,0.08263253208302022,0.40407222479343785,0.028383655194546477,0.012816524615976422,0.020507297990661616,0.17026246293422037,0.8297375370657796,0.3434925020333354,0.4515459523493274,0.986417053134699,0.010098041051706573,0.9844866271472843,0.08405206988062329,0.9944943557807777,0.48829110990902336,0.9755868756309727,0.02915578159137823,0.981069308078717,0.013054262827494433 +72085,0.4814621712247062,0.009283618025212244,0.07902226611352994,0.40352059122721995,0.02625602490406379,0.011987291989076602,0.019282133841579487,0.16412975065625451,0.8358702493437455,0.33226109798398096,0.4565539541067873,0.9204301153598506,0.010098041051706573,0.9436123356650397,0.08405206988062329,0.9860263647812983,0.48829110990902336,0.9041887817426894,0.02915578159137823,0.9137792911850475,0.013054262827494433 +72087,0.4702445072054129,0.008382019966558112,0.07295321112198212,0.3983377611081753,0.023832693949822667,0.010791452430121938,0.017824812067175653,0.1551388905221483,0.8448611094778518,0.3266846459982821,0.45280036125342155,0.8306527531499976,0.010098041051706573,0.8712839410653221,0.08405206988062329,0.9630279970144676,0.48829110990902336,0.8181662618187917,0.02915578159137823,0.8241665232816944,0.013054262827494433 +72089,0.49060646433839894,0.010784288553400575,0.08629747601260956,0.40594488979906607,0.030415488198262397,0.013770923264389234,0.02198154597890101,0.17589959017149298,0.824100409828507,0.35244933691708624,0.4527602244824711,1.069202686305172,0.010098041051706573,1.025086091275793,0.08405206988062329,1.0047874683568234,0.48829110990902336,1.0434546083256668,0.02915578159137823,1.0529877645829115,0.013054262827494433 +72091,0.4906891225521527,0.010683936673668838,0.08587241833872084,0.40628411437030215,0.03012979448446913,0.013689886473682971,0.02177333098011216,0.1750037129253745,0.8249962870746255,0.35086696132887724,0.45436375215700975,1.0590330352724036,0.010098041051706573,1.021494719126303,0.08405206988062329,1.0047386346063085,0.48829110990902336,1.0348690769963036,0.02915578159137823,1.0445147614795358,0.013054262827494433 +72093,0.4804479082773176,0.009356427151031828,0.07921510335845071,0.4026661298836145,0.026567177055389125,0.012053196241992727,0.019474384194074247,0.16487761106606222,0.8351223889339378,0.3353801980813161,0.4536875038271237,0.9276078043670732,0.010098041051706573,0.9465824444905623,0.08405206988062329,0.9844697747725785,0.48829110990902336,0.912978031563431,0.02915578159137823,0.9203187015608596,0.013054262827494433 +72095,0.49041973210304757,0.010713168431220967,0.08642945710607007,0.40572913319368054,0.03058033337839449,0.013796881041022807,0.02184489678928723,0.17623568435029732,0.8237643156497026,0.3538184133317527,0.45116843136741375,1.0617834175666057,0.010098041051706573,1.0278859999502605,0.08405206988062329,1.0047638240090262,0.48829110990902336,1.0503411787429369,0.02915578159137823,1.0546630954606329,0.013054262827494433 +72097,0.4947692794291677,0.012163447978852191,0.09226356710215143,0.4042776683982329,0.03520870560280949,0.01570278933468485,0.02458408087277686,0.18647796243250808,0.8135220375674919,0.3816100624402206,0.4459916678513692,1.2061892652446564,0.010098041051706573,1.096871335793527,0.08405206988062329,1.0134546112654048,0.48829110990902336,1.2060662630878776,0.02915578159137823,1.2020912322009358,0.013054262827494433 +72099,0.47968589819848184,0.009033229311003019,0.07767270148454893,0.403192467492258,0.025454670689709767,0.01164933773142269,0.01883155069792212,0.16192408777547582,0.8380759122245242,0.32771707695493696,0.45765030211653923,0.8968080717053932,0.010098041051706573,0.9276257539074483,0.08405206988062329,0.9824915374265671,0.48829110990902336,0.875228788434995,0.02915578159137823,0.8870170604680703,0.013054262827494433 +72101,0.4686946323658937,0.008314194663446853,0.07227362156603856,0.3975642456374886,0.023664305886727587,0.010734296367333931,0.017739043908990726,0.1542019399736096,0.8457980600263904,0.3274265959552726,0.4536070662167358,0.8241718918564873,0.010098041051706573,0.863116646557268,0.08405206988062329,0.960027411088316,0.48829110990902336,0.8135959418984186,0.02915578159137823,0.8193994862385621,0.013054262827494433 +72103,0.482412350415593,0.009874902770770062,0.08074421972573159,0.40301593021162874,0.028025241876934826,0.012697868866564481,0.020469838225043245,0.16737593814953394,0.8326240618504661,0.34708666418636197,0.45308686084936195,0.9789915544089145,0.010098041051706573,0.9607823120805374,0.08405206988062329,0.9878055970394839,0.48829110990902336,0.9642420386417834,0.02915578159137823,0.9695489704851923,0.013054262827494433 +72105,0.48123751152942673,0.00952032440148655,0.07974315321932564,0.40274197209916884,0.027020301045327755,0.012256206651990773,0.019783005633184938,0.16570435867705524,0.8342956413229448,0.3388416428807511,0.4535925277601623,0.9439854698397604,0.010098041051706573,0.9515824482194319,0.08405206988062329,0.9857741535762267,0.48829110990902336,0.9282216692428866,0.02915578159137823,0.9357879441165298,0.013054262827494433 +72107,0.473869526072495,0.009062978877711972,0.07634931266627407,0.3994733507677968,0.026001577931039153,0.011683981465340366,0.019125473108235855,0.16111884910403323,0.8388811508959668,0.34056073359419886,0.4493566312140125,0.8976437251755122,0.010098041051706573,0.9100484009991578,0.08405206988062329,0.9709859021973481,0.48829110990902336,0.8928483881039198,0.02915578159137823,0.8942345689122241,0.013054262827494433 +72109,0.4915427952499787,0.01072470133324718,0.08650110593055113,0.4069276041081635,0.030249027366796036,0.013702712280184206,0.02181844884491295,0.17597878916434975,0.8240212108356503,0.3496952673770666,0.45299678941827715,1.0630280500213374,0.010098041051706573,1.0283402719374588,0.08405206988062329,1.0071383121316662,0.48829110990902336,1.0381576310948195,0.02915578159137823,1.0478123319852406,0.013054262827494433 +72111,0.4717537295405011,0.008496835578223592,0.07376701023589805,0.39909730511761643,0.02421844667517769,0.010968914128083838,0.01801116778981208,0.1563676249210553,0.8436323750789447,0.32830999382691534,0.4529156751958932,0.8419860253241116,0.010098041051706573,0.880882326339554,0.08405206988062329,0.9663673783980101,0.48829110990902336,0.8326200226257243,0.02915578159137823,0.8376643779920039,0.013054262827494433 +72113,0.4899744815287334,0.010995975424034871,0.08670639888959678,0.40479180760823114,0.03151650539057981,0.014100803283389043,0.02244193491409417,0.17696105033688797,0.8230389496631121,0.36348534588213915,0.4474101144349504,1.0890920052519921,0.010098041051706573,1.03035179223791,0.08405206988062329,1.0034720076195418,0.48829110990902336,1.0805072118598424,0.02915578159137823,1.081605896478438,0.013054262827494433 +72115,0.48737849471290706,0.010138388689563863,0.0834434557226007,0.4051352911365359,0.028504152716687207,0.013050318755895667,0.02080187944184106,0.1712087353623461,0.8287912646376538,0.3415984209887756,0.45783920980242326,1.0052111106471557,0.010098041051706573,0.9940737228597177,0.08405206988062329,0.9983236631460729,0.48829110990902336,0.9818217167692235,0.02915578159137823,0.9937875183569651,0.013054262827494433 +72117,0.5035938677481113,0.011740400519232625,0.09347877413252711,0.41141206763718163,0.03322711868578637,0.015104865074792518,0.023313231695476014,0.18562333681807963,0.8143766631819204,0.3554509458872394,0.45459449004989877,1.1639888833662848,0.010098041051706573,1.1112357345111719,0.08405206988062329,1.03136375052084,0.48829110990902336,1.1419382783817849,0.02915578159137823,1.1518897531664902,0.013054262827494433 +72119,0.4864995177108763,0.00999609900111091,0.08262491081508808,0.40490090999516093,0.028169376014729318,0.012871039924407326,0.02054698645570196,0.1698355451694231,0.8301644548305769,0.34093078875172994,0.4569160466201759,0.9908371094908679,0.010098041051706573,0.9846591438165955,0.08405206988062329,0.9965158129312248,0.48829110990902336,0.9697558547927292,0.02915578159137823,0.9805005304662463,0.013054262827494433 +72121,0.49531139406302577,0.011558490883874374,0.09009036908247867,0.40723398402365607,0.03312140850218552,0.014804962902120751,0.02333580657020706,0.18188632476929278,0.8181136752307072,0.3676464958408876,0.44699074017772655,1.1454443176736917,0.010098041051706573,1.0700935282952941,0.08405206988062329,1.0142620461875165,0.48829110990902336,1.1347767869301104,0.02915578159137823,1.1368573929334065,0.013054262827494433 +72123,0.4801791489772393,0.009849144398035768,0.08031484184514825,0.40188298453549637,0.02803612800571161,0.012635146422289679,0.020511395421925375,0.16726016116321454,0.8327398388367855,0.3490777963525959,0.45067373139813055,0.9764480985472843,0.010098041051706573,0.9555826598479165,0.08405206988062329,0.9836956862628028,0.48829110990902336,0.9629657139035621,0.02915578159137823,0.9671408019705627,0.013054262827494433 +72125,0.5017577552168295,0.012368380009286998,0.09464803598635566,0.40907649077453856,0.03577739651329252,0.01593303417419828,0.02465010232665388,0.18863293093587455,0.8113670690641255,0.3780046372906264,0.4453379990430163,1.2264224783816198,0.010098041051706573,1.1238452759536028,0.08405206988062329,1.0277464366479812,0.48829110990902336,1.2245777929720516,0.02915578159137823,1.2231134033582167,0.013054262827494433 +72127,0.49885615075119516,0.012104373721804066,0.09354609873707018,0.40745435842747413,0.035741193886942746,0.01579331414687533,0.02426425674731458,0.18752118941744061,0.8124788105825593,0.3820703842220128,0.4418798710763008,1.1999556625619656,0.010098041051706573,1.1094493297662418,0.08405206988062329,1.0219676612280204,0.48829110990902336,1.218775066080232,0.02915578159137823,1.2064046333555392,0.013054262827494433 +72129,0.4838627103006168,0.009852935793266425,0.08196382688815608,0.40283360657038814,0.0280329070797515,0.012696032338573995,0.02036308147644802,0.16939479968860002,0.8306052003114,0.34201559570911527,0.45289745735091774,0.9771926679988668,0.010098041051706573,0.9765817747329468,0.08405206988062329,0.9910341234785293,0.48829110990902336,0.9627923982839666,0.02915578159137823,0.969724845763297,0.013054262827494433 +72131,0.49887363084711234,0.011569621284947219,0.09115171043012181,0.40984193695652216,0.03321744804309884,0.014847019519773205,0.023191486920848922,0.18271503000738215,0.8172849699926179,0.36441936071582337,0.44696448386129944,1.1463338279432373,0.010098041051706573,1.0824255621339816,0.08405206988062329,1.0217478979913075,0.48829110990902336,1.138567670983261,0.02915578159137823,1.1404557452863893,0.013054262827494433 +72133,0.47169994439318486,0.008555284609462097,0.07361750148562327,0.3993795864530011,0.024102139557815663,0.011021696482791936,0.018137132961649982,0.15606849727389302,0.843931502726107,0.32739686992124506,0.4572912067143807,0.8492872957639295,0.010098041051706573,0.8793358383034997,0.08405206988062329,0.9660142585697157,0.48829110990902336,0.8290269332577431,0.02915578159137823,0.8398726811659336,0.013054262827494433 +72135,0.46929341662172797,0.0076152951705730585,0.07020221170312807,0.3998071265215086,0.021429420910915827,0.009815294053320388,0.016227151076170617,0.14959129878379324,0.8504087012162067,0.30525278892261704,0.4580288984067052,0.7557672706991858,0.010098041051706573,0.8401285045170148,0.08405206988062329,0.9608988635456615,0.48829110990902336,0.7361057941311255,0.02915578159137823,0.7483109498321843,0.013054262827494433 +72137,0.48425639525474573,0.009827981356112615,0.0815181969566248,0.4033830427142906,0.027933338039096388,0.012656124998354987,0.020294995486724653,0.16833685162534961,0.8316631483746504,0.34266383558458124,0.4530831575030908,0.9743311319016966,0.010098041051706573,0.9721716998824055,0.08405206988062329,0.9917063987460221,0.48829110990902336,0.9608518615409536,0.02915578159137823,0.9674474219481084,0.013054262827494433 +72139,0.48307982012964634,0.00945019883414618,0.08020107369684429,0.403928365945333,0.02681958901543427,0.012196580586756232,0.019562396192848597,0.16602033526327048,0.8339796647367295,0.33440436367237253,0.45476388843010546,0.9371274525789959,0.010098041051706573,0.9564959876214629,0.08405206988062329,0.9894439699695039,0.48829110990902336,0.9205464026405279,0.02915578159137823,0.9293690436447664,0.013054262827494433 +72141,0.49142072062528463,0.010818819141351143,0.08678233619391187,0.4065538476245387,0.030693111480203428,0.013878837926649781,0.02201539065667654,0.17659478437028434,0.8234052156297157,0.3536792488695029,0.45218087242804994,1.0725284681293048,0.010098041051706573,1.0324919789328173,0.08405206988062329,1.0067017952935866,0.48829110990902336,1.053951664568884,0.02915578159137823,1.0608080715608952,0.013054262827494433 +72143,0.4810789196049713,0.0094762574152474,0.07951463230513842,0.4026900199193151,0.0268455960453547,0.012214661046607182,0.01969792694934263,0.1652839670680859,0.8347160329319141,0.337618313348094,0.454996828007504,0.9397683889896113,0.010098041051706573,0.9488021005698548,0.08405206988062329,0.9852843830726921,0.48829110990902336,0.9221712946982261,0.02915578159137823,0.9308022655079196,0.013054262827494433 +72145,0.4865958842888656,0.01018580756554241,0.08326269362978317,0.40458597961047926,0.02891625765490742,0.013103061220377962,0.02093278610530879,0.17111261380985013,0.8288873861901499,0.34728948097067136,0.4531382095412413,1.0096964452223758,0.010098041051706573,0.9912895336039076,0.08405206988062329,0.9963899394716818,0.48829110990902336,0.9936129378305834,0.02915578159137823,1.0002985980190104,0.013054262827494433 +72147,0.5014136874619548,0.012259691047444699,0.09395730315992853,0.40915785765562374,0.03490023144745322,0.01566472791228944,0.024450252065316654,0.1873847992373715,0.8126152007626285,0.3714477775937025,0.4488430953781697,1.2148296727713264,0.010098041051706573,1.1172646398881039,0.08405206988062329,1.0269355097341262,0.48829110990902336,1.1962518053764897,0.02915578159137823,1.2008188632358707,0.013054262827494433 +72149,0.4709030375179517,0.008457194799493292,0.07329176020710088,0.3984302759926309,0.023828993004673827,0.010866165907719418,0.017959524839911208,0.1556408737420957,0.8443591262579043,0.3251251291733222,0.45600608911959156,0.8398253232876142,0.010098041051706573,0.8760697930486736,0.08405206988062329,0.9643500127458287,0.48829110990902336,0.8183140310770824,0.02915578159137823,0.8288527901453777,0.013054262827494433 +72151,0.4838469533390023,0.009688161590110073,0.08117674164811545,0.4033854813938372,0.027600542573224002,0.012465668229295308,0.020023194366013013,0.16777359263692587,0.8322264073630741,0.3400055485457485,0.4516457673331601,0.9598281850617736,0.010098041051706573,0.9679841292028291,0.08405206988062329,0.9908404358778995,0.48829110990902336,0.9481492242824742,0.02915578159137823,0.9537400884574175,0.013054262827494433 +72153,0.49109998049581594,0.010621355958510869,0.08615043139701975,0.4065478963932091,0.030221409883604056,0.013668573248324975,0.021627685563716612,0.17542340626860142,0.8245765937313986,0.35079812594704574,0.45228112457256836,1.0524334395392037,0.010098041051706573,1.0251552768280567,0.08405206988062329,1.0058847320135564,0.48829110990902336,1.038654804848281,0.02915578159137823,1.0442520395379205,0.013054262827494433 +78000,0.49894541692599875,0.010547869855155424,0.08786314574696748,0.41244665090062294,0.029145843921922435,0.013407628097723414,0.021140328174854915,0.1760977108243464,0.8239022891756536,0.33171864806500373,0.460018523863661,1.046595949165634,0.010098041051706573,1.0476749128202962,0.08405206988062329,1.0218270517493733,0.48829110990902336,1.004694662577577,0.02915578159137823,1.0267085437640042,0.013054262827494433 diff --git a/sample_data/param-age-dist.rds b/sample_data/param-age-dist.rds new file mode 100644 index 000000000..ad23f2117 Binary files /dev/null and b/sample_data/param-age-dist.rds differ diff --git a/sample_data/united-states-commutes/census_tracts_island_areas_2010.csv b/sample_data/united-states-commutes/census_tracts_island_areas_2010.csv new file mode 100644 index 000000000..40713b038 --- /dev/null +++ b/sample_data/united-states-commutes/census_tracts_island_areas_2010.csv @@ -0,0 +1,5 @@ +USPS,geoid,population +"AS","60000",55519 +"MP","69000",53883 +"GU","66000",159385 +"VI","78000",106405 \ No newline at end of file diff --git a/scripts/QuantileSummarizeGeoExtent.R b/scripts/QuantileSummarizeGeoExtent.R new file mode 100644 index 000000000..dd2e17a32 --- /dev/null +++ b/scripts/QuantileSummarizeGeoExtent.R @@ -0,0 +1,119 @@ +## First parse the options to the scripts +suppressMessages({ + library(optparse, quietly=TRUE) + library(tidyverse, quietly=TRUE) + library(parallel, quietly=TRUE) +}) + +##List of specified options +option_list <- list( + make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file"), + make_option(c("-j", "--jobs"), action="store", default=detectCores(), type='numeric', help="number of cores used"), + make_option(c("-n", "--num_simulations"), action="store", default=-1, type='numeric', help="number of simulations to run, overrides config file value"), + + make_option(c("-d", "--name_filter"), type="character", default="", help="filename filter, usually deaths"), + make_option(c("-o","--outfile"), type="character", default=NULL, help="file to save output"), + make_option("--start_date", type="character", default=NULL, help="earliest date to include"), + make_option("--end_date", type="character", default=NULL, help="latest date to include") +) + +opt_parser <- OptionParser(option_list = option_list, usage="%prog [options] [one or more scenarios]") +arguments <- parse_args(opt_parser, positional_arguments=TRUE) +opts <- arguments$options + +scenarios <- arguments$args + +if(is.null(opts$outfile)) { + stop("outfile must be specified") +} + +config <- covidcommon::load_config(opts$c) +if (length(config) == 0) { + stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") +} + + +## Register the parallel backend +doParallel::registerDoParallel(opts$j) + + +##Convert times to date objects +if (is.null(opts$start_date)) { + opts$start_date <- as.Date(config$start_date) +} +opts$start_date <- as.Date(opts$start_date) + +if (is.null(opts$end_date)) { + opts$end_date <- config$end_date +} +opts$end_date <- as.Date(opts$end_date) + +##Per file filtering code +post_proc <- function(x, opts) { + + + x%>% + group_by(geoid) %>% + mutate(cum_infections=cumsum(incidI)) %>% + mutate(cum_death=cumsum(incidD)) %>% + ungroup()%>% + filter(time>=opts$start_date & time<=opts$end_date) %>% + group_by(time) %>% + summarize(hosp_curr=sum(hosp_curr), + cum_death=sum(cum_death), + hosp=sum(incidH), + death=sum(incidD), + infections=sum(incidI), + cum_infections=sum(cum_infections)) %>% + ungroup() +} + +##Run over scenarios and death rates as appropriate. Note that +##Final results will average accross whatever is included +res_all <-list() +setup_name <- config$spatial_setup$setup_name +for (i in 1:length(scenarios)) { + scenario_dir = paste0(setup_name,"_",scenarios[i]) + res_all[[i]] <- report.generation::load_hosp_sims_filtered(scenario_dir, + name_filter = opts$name_filter, + num_files = ifelse(opts$num_simulations > 0, opts$num_simulations, config$nsimulations), + post_process = post_proc, + opt=opts)%>% + mutate(scenario=scenarios[i]) + + +} + +##Put in one data frame +res_all<-dplyr::bind_rows(res_all) + +##deregister backend +doParallel::stopImplicitCluster() + + +## Extract quantiles +tmp_col <- function(x, col) { + x%>% + group_by(time) %>% + summarize(x=list(enframe(quantile(!!sym(col), probs=c(0.01, 0.025, + seq(0.05, 0.95, by = 0.05), 0.975, 0.99)), + "quantile",col))) %>% + unnest(x) + +} + + +to_save <- inner_join(tmp_col(res_all,"hosp_curr"), + tmp_col(res_all,"cum_death"))%>% + inner_join(tmp_col(res_all,"death"))%>% + inner_join(tmp_col(res_all,"infections"))%>% + inner_join(tmp_col(res_all,"cum_infections"))%>% + inner_join(tmp_col(res_all,"hosp")) + + +write_csv(to_save, path=opts$outfile) + + + + + diff --git a/scripts/QuantileSummarizeGeoidLevel.R b/scripts/QuantileSummarizeGeoidLevel.R new file mode 100644 index 000000000..3a308ffae --- /dev/null +++ b/scripts/QuantileSummarizeGeoidLevel.R @@ -0,0 +1,103 @@ + +# XXX: this branch was in a transitory state before packrat, so these packages need to be installed to run this script: +# install.packages("tdigest") +# +# TODO: update dependencies + +PROBS = c(0.01, 0.025, seq(0.05, 0.95, by = 0.05), 0.975, 0.99) + +suppressMessages({ + library(optparse, quietly=TRUE) + library(tidyverse, quietly=TRUE) + library(tdigest) + library(scales) + library(parallel) + library(doParallel) + library(data.table) +}) + +option_list <- list( + make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file"), + make_option(c("-j", "--jobs"), action="store", default=detectCores(), type='numeric', help="number of cores used"), + make_option(c("-n", "--num_simulations"), action="store", default=-1, type='numeric', help="number of simulations to run, overrides config file value"), + + make_option(c("-d", "--name_filter"), type="character", default="", help="filename filter, usually deaths"), + make_option(c("-o","--outfile"), type="character", default=NULL, help="file to save output"), + make_option("--start_date", type="character", default=NULL, help="earliest date to include"), + make_option("--end_date", type="character", default=NULL, help="latest date to include") +) + +opt_parser <- OptionParser(option_list = option_list, usage="%prog [options] [one or more scenarios]") + +## Paerse the +arguments <- parse_args(opt_parser, positional_arguments=TRUE) +opt <- arguments$options +scenarios <- arguments$args + +if (is.null(opt$outfile)) { + stop("outfile must be specified") +} + +cl = makeCluster(opt$jobs, outfile="") +doParallel::registerDoParallel(cl) + +config <- covidcommon::load_config(opt$c) +if (length(config) == 0) { + stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") +} + +##Load the geodata file +suppressMessages(geodata <- readr::read_csv(paste0(config$spatial_setup$base_path,"/",config$spatial_setup$geodata))) + + +##Convert times to date objects +if (is.null(opt$start_date)) { + opt$start_date <- as.Date(config$start_date) +} +opt$start_date <- as.Date(opt$start_date) + +if (is.null(opt$end_date)) { + opt$end_date <- config$end_date +} +opt$end_date <- as.Date(opt$end_date) + +post_proc <- function(x, geodata, opt) { + x %>% + group_by(geoid) %>% + mutate(cum_infections=cumsum(incidI)) %>% + mutate(cum_death=cumsum(incidD)) %>% + ungroup() %>% + filter(time >= opt$start_date & time <= opt$end_date) %>% + rename(infections=incidI, death=incidD, hosp=incidH) +} + +setup_name <- config$spatial_setup$setup_name +scenarios <- scenarios %>% lapply(function(x) { paste0(setup_name,"_",x)}) %>% unlist() +res_geoid <- data.table::rbindlist(purrr::pmap(data.frame(scenario=scenarios), function(scenario) { + report.generation::load_hosp_sims_filtered(scenario, + name_filter=opt$name_filter, + num_files=opt$num_simulations, + post_process=post_proc, + geodata=geodata, + opt=opt) +})) + +q <- function(col) { + # if col is empty, tquantile fails; in that case, return what quantile() would (all 0's) + tryCatch(tquantile(tdigest(col), PROBS), error = function(e) { quantile(col, PROBS) }) +} + +res_split <- split(res_geoid, res_geoid$time) +to_save_geo <- foreach(r_split=res_split, .combine=rbind, .packages="data.table", .inorder=FALSE, .multicombine=TRUE, .verbose=TRUE) %dopar% { + stopifnot(is.data.table(r_split)) + r_split[, .(quantile=scales::percent(PROBS), + hosp_curr=q(hosp_curr), + cum_death=q(cum_death), + death=q(death), + infections=q(infections), + cum_infections=q(cum_infections), + hosp=q(hosp)), by=list(time, geoid)] +} +data.table::fwrite(to_save_geo, file=opt$outfile) + +stopCluster(cl) diff --git a/scripts/QuantileSummarizeStateLevel.R b/scripts/QuantileSummarizeStateLevel.R new file mode 100644 index 000000000..25d1efb00 --- /dev/null +++ b/scripts/QuantileSummarizeStateLevel.R @@ -0,0 +1,126 @@ +## First parse the options to the scripts +suppressMessages({ + library(optparse, quietly=TRUE) + library(tidyverse, quietly=TRUE) + library(parallel, quietly=TRUE) +}) + +##List of specified options +option_list <- list( + make_option(c("-c", "--config"), action="store", default=Sys.getenv("CONFIG_PATH"), type='character', help="path to the config file"), + make_option(c("-j", "--jobs"), action="store", default=detectCores(), type='numeric', help="number of cores used"), + make_option(c("-n", "--num_simulations"), action="store", default=-1, type='numeric', help="number of simulations to run, overrides config file value"), + + make_option(c("-d", "--name_filter"), type="character", default="", help="filename filter, usually deaths"), + make_option(c("-o","--outfile"), type="character", default=NULL, help="file to save output"), + make_option("--start_date", type="character", default=NULL, help="earliest date to include"), + make_option("--end_date", type="character", default=NULL, help="latest date to include") +) + +opt_parser <- OptionParser(option_list = option_list, usage="%prog [options] [one or more scenarios]") + +## Paerse the +arguments <- parse_args(opt_parser, positional_arguments=c(1,Inf)) +opt <- arguments$options +scenarios <- arguments$args + +if(is.null(opt$outfile)) { + stop("outfile must be specified") +} + +config <- covidcommon::load_config(opt$c) +if (length(config) == 0) { + stop("no configuration found -- please set CONFIG_PATH environment variable or use the -c command flag") +} + +##Load the geodata file +suppressMessages(geodata <- readr::read_csv(paste0(config$spatial_setup$base_path,"/",config$spatial_setup$geodata))) +geodata <- geodata %>% mutate(geoid=as.character(geoid)) + +## Register the parallel backend +doParallel::registerDoParallel(opt$jobs) + + +##Convert times to date objects +if (is.null(opt$start_date)) { + opt$start_date <- as.Date(config$start_date) +} +opt$start_date <- as.Date(opt$start_date) + +if (is.null(opt$end_date)) { + opt$end_date <- config$end_date +} +opt$end_date <- as.Date(opt$end_date) + + +##Per file filtering code +post_proc <- function(x,geodata,opt) { + + + x%>% + group_by(geoid) %>% + mutate(cum_infections=cumsum(incidI)) %>% + mutate(cum_death=cumsum(incidD)) %>% + ungroup()%>% + filter(time>=opt$start_date& time<=opt$end_date) %>% + inner_join(geodata%>%select(geoid, USPS)) %>% + group_by(USPS, time) %>% + summarize(hosp_curr=sum(hosp_curr), + cum_death=sum(cum_death), + death=sum(incidD), + hosp=sum(incidH), + infections=sum(incidI), + cum_infections=sum(cum_infections)) %>% + ungroup() +} + +##Run over scenarios and death rates as appropriate. Note that +##Final results will average accross whatever is included +res_state <-list() +setup_name <- config$spatial_setup$setup_name +for (i in 1:length(scenarios)) { + scenario_dir = paste0(setup_name,"_",scenarios[i]) + res_state[[i]] <- report.generation::load_hosp_sims_filtered(scenario_dir, + name_filter = opt$name_filter, + ifelse(opt$num_simulations > 0, opt$num_simulations, config$nsimulations), + post_process = post_proc, + geodata=geodata, + opt=opt)%>% + mutate(scenario=scenarios[i]) + + +} + +##Put in one data frame +res_state<-dplyr::bind_rows(res_state) + +##deregister backend +doParallel::stopImplicitCluster() + + +## Extract quantiles +tmp_col <- function(x, col) { + x%>% + group_by(time,USPS) %>% + summarize(x=list(enframe(quantile(!!sym(col), probs=c(0.01, 0.025, + seq(0.05, 0.95, by = 0.05), 0.975, 0.99)), + "quantile",col))) %>% + unnest(x) + +} + + +to_save_st <- inner_join(tmp_col(res_state,"hosp_curr"), + tmp_col(res_state,"cum_death"))%>% + inner_join(tmp_col(res_state,"death"))%>% + inner_join(tmp_col(res_state,"infections"))%>% + inner_join(tmp_col(res_state,"cum_infections"))%>% + inner_join(tmp_col(res_state,"hosp")) + + +write_csv(to_save_st, path=opt$outfile) + + + + + diff --git a/scripts/quantile_summarize_geoid_level.py b/scripts/quantile_summarize_geoid_level.py new file mode 100644 index 000000000..4ff310e67 --- /dev/null +++ b/scripts/quantile_summarize_geoid_level.py @@ -0,0 +1,84 @@ +#!/opt/spark/bin/spark-submit +""" +A faster and distributed version of QuantileSummarizeGeoidLevel.R, which uses Apache Spark as its execution engine + +This script can be executed from the command line in the container by running Apache Spark locally: +% /opt/spark/bin/spark-submit --driver-memory 20g --executor-memory 20g \ + quantile_summarize_geoid_level.py USA_None -c config.yml -o usa_none.csv +""" + +import itertools +import pathlib +import re + +import click +import confuse +import numpy as np +from pyspark.sql import functions as F, SparkSession, SQLContext, Window + +PROBS = np.concatenate([[0.01, 0.025], np.arange(start=0.05, stop=0.95, step=0.05), [0.975, 0.99]]) +METRICS = ["hosp_curr", "cum_death", "death", "infections", "cum_infections", "hosp"] + +spark = (SparkSession.builder.appName("quantile report").getOrCreate()) +sc = spark.sparkContext +sc.setLogLevel("WARN") +sqlContext = SQLContext(sc) + + +@click.command() +@click.option("-c", "--config", "config_file", envvar="CONFIG_PATH", type=click.Path(exists=True), required=True, + help="configuration file for this simulation") +@click.option("-d", "--name_filter", type=str, default=".*", metavar="REGEX", + help="only process files matching this filter") +@click.option("-o", "--output", type=pathlib.Path, required=True, + help="write output to this directory") +@click.option("--start_date", type=click.DateTime(formats=["%Y-%m-%d"]), + default="2020-01-01", show_default=True, + help="earliest date to include") +@click.option("--end_date", type=click.DateTime(formats=["%Y-%m-%d"]), + default="2022-01-01", show_default=True, + help="latest date to include") +@click.argument("scenarios", type=str, nargs=-1, required=True) +def process(config_file, scenarios, output, start_date, end_date, name_filter): + config = confuse.Configuration("COVIDScenarioPipeline") + config.set_file(config_file) + + input_paths = (f"{config['spatial_setup']['setup_name'].get()}_{scenario}" for scenario in scenarios) + paths = itertools.chain(*(pathlib.Path("hospitalization/model_output").glob(p + "/**/*.parquet") + for p in input_paths)) + paths = (str(p) for p in paths if p.is_file()) + paths = filter(lambda p: re.search(name_filter, p), paths) + paths = list(paths) + if not paths: + raise click.BadParameter("no files found in input path") + + df = sqlContext.read.parquet(*paths) + df = df.withColumnRenamed("incidI", "infections") \ + .withColumnRenamed("incidD", "death") \ + .withColumnRenamed("incidH", "hosp") + df = df.filter((df.time > start_date.date()) & (df.time <= end_date.date())) + df = df.withColumn("cum_infections", F.sum(df.infections).over( + Window.partitionBy(df.geoid).orderBy(df.time, df.uid))) + df = df.withColumn("cum_death", F.sum(df.death).over( + Window.partitionBy(df.geoid).orderBy(df.time, df.uid))) + + # construct gnarly spark sql statement to compute quantiles via percentile_approx() + df.registerTempTable("df") + agg_sql = ", ".join(f"percentile_approx({metric}, {prob}, 100) AS {metric}__{str(round(prob, 3)).replace('.', '_')}" + for metric, prob in itertools.product(METRICS, PROBS)) + rollup_df = sqlContext.sql(f"""\ +SELECT geoid, time, {agg_sql} FROM df +GROUP BY geoid, time +""") + + # perform the final transform from column-wise to row-wise on the driver node + result_df = rollup_df.coalesce(1).toPandas() + result_df = result_df.melt(id_vars=["geoid", "time"]) + result_df["variable"], result_df["quantile"] = result_df["variable"].apply(lambda x: x.split("__")).str + result_df["quantile"] = result_df["quantile"].apply(lambda x: float(x.replace("_", "."))) + result_df = result_df.pivot_table(index=["geoid", "time", "quantile"], columns=["variable"], values="value") + + result_df.to_csv(output) + + +process() diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..757141ef5 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +import setuptools + +from SEIR.steps_source import cc as steps_cc + +with open("requirements.txt") as f: + requirements = f.read().splitlines() + +setuptools.setup( + name="SEIR", + version="0.1", + author="Joshua Kaminsky", + author_email="jkaminsky@jhu.edu", + description="SEIR simulation", + packages=setuptools.find_packages(exclude=["*.test*"]), + ext_modules=[steps_cc.distutils_extension()], + license="LICENSE", + install_requires=requirements, + python_requires='>=3.7', + zip_safe=True, + scripts=[ + "SEIR/simulate.py" + ], +) diff --git a/test/run_tests.py b/test/run_tests.py index 72de03cfc..f50ebaa47 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -21,7 +21,7 @@ def _success(test_dir): # Make Makefile cmd = ["Rscript", "../../R/scripts/make_makefile.R", - "-c", f"config.yml", + "-c", "config.yml", "-p", "../..", "-n", str(multiprocessing.cpu_count()), "-y", sys.executable] @@ -45,6 +45,112 @@ def teardown_function(self): os.chdir("..") + +# Test other scripts ------------------------------------------------------------ + +# Test build_US_setup +def _success_build_US_setup(test_dir): + os.chdir(test_dir) + + # Run Build Script + cmd = ["Rscript", "../../R/scripts/build_US_setup.R", + "-c", "config.yml", + "-p", "../..", + "-w", "FALSE"] + complete = subprocess.run(cmd) + assert complete.returncode == 0, f"build_US_setup.R failed with code {complete.returncode}" + + assert_file("data/mobility.csv") + assert_file("data/geodata.csv") + + +# Test build_nonUS_setup +def _success_build_nonUS_setup(test_dir): + os.chdir(test_dir) + + # Run Build script + cmd = ["Rscript", "../../R/scripts/build_nonUS_setup.R", + "-c", "config.yml", + "-w", "FALSE", + "-n", "population_data.csv", + "-m", "mobility_data.csv"] + complete = subprocess.run(cmd) + assert complete.returncode == 0, f"build_nonUS_setup.R failed with code {complete.returncode}" + + assert_file("data/mobility.csv") + assert_file("data/geodata.csv") + + + +# Test create_seeding_US +def _success_create_seeding_US(test_dir): + os.chdir(test_dir) + + # Run Seeding script + cmd = ["Rscript", "../../R/scripts/create_seeding.R", + "-c", "config.yml", + "-s", "CSSE"] + complete = subprocess.run(cmd) + assert complete.returncode == 0, f"create_seeding.R failed for US setup using JHU CSSE data with code {complete.returncode}" + + assert_file("data/seeding.csv") + + +# Test create_seeding_nonUS +def _success_create_seeding_nonUS(test_dir): + os.chdir(test_dir) + + # Make Makefile + cmd = ["Rscript", "../../R/scripts/create_seeding.R", + "-c", "config.yml", + "-d", "data/case_data/case_data.csv"] + complete = subprocess.run(cmd) + assert complete.returncode == 0, f"create_seeding.R failed for non-US setup with code {complete.returncode}" + + assert_file("data/seeding.csv") + +# Test runs 2x in a row +def _success_x2(test_dir): + os.chdir(test_dir) + subprocess.run(["make", "clean"]) + + # Make Makefile + cmd = ["Rscript", "../../R/scripts/make_makefile.R", + "-c", "config.yml", + "-p", "../..", + "-n", str(multiprocessing.cpu_count()), + "-y", sys.executable] + complete = subprocess.run(cmd) + assert complete.returncode == 0, f"make_makefile.R failed with code {complete.returncode}" + + assert_file("Makefile") + + # Run the Makefile + cmd = ["make"] + complete = subprocess.run(cmd) + assert complete.returncode == 0, f"make failed with code {complete.returncode}" + + assert_dir("model_parameters") + assert_dir("model_output") + assert_dir("hospitalization") + + # Make clean + subprocess.run(["make", "clean"]) + + # Run the Makefile a second time + cmd = ["make"] + complete = subprocess.run(cmd) + assert complete.returncode == 0, f"make failed with code {complete.returncode}" + + assert_dir("model_parameters") + assert_dir("model_output") + assert_dir("hospitalization") + + # Make clean again + subprocess.run(["make", "clean"]) + + + # Test definitions def test_simple(): @@ -53,14 +159,16 @@ def test_simple(): def test_importation(): _success("test_importation") - assert_file("data/filter.txt") + assert_file("data/geodata.csv") + assert_file("data/mobility.txt") assert_dir("data/shp") assert_dir("importation") def test_report(): _success("test_report") - assert_file("data/filter.txt") + assert_file("data/geodata.csv") + assert_file("data/mobility.csv") assert_dir("data/shp") assert_dir("importation") assert_dir("notebooks") @@ -69,3 +177,19 @@ def test_report(): def test_hosp_age_adjust(): _success("test_hosp_age_adjust") + +def test_build_US(): + _success_build_US_setup("test_build_US_setup") + +def test_build_nonUS(): + _success_build_nonUS_setup("test_build_nonUS_setup") + +def test_create_seeding_US(): + _success_create_seeding_US("test_create_seeding_US") + +def test_create_seeding_nonUS(): + _success_create_seeding_nonUS("test_create_seeding_nonUS") + +def test_simple_x2(): + _success_x2("test_simple_x2") + diff --git a/test/test_build_US_setup/config.yml b/test/test_build_US_setup/config.yml new file mode 100644 index 000000000..0b63e8129 --- /dev/null +++ b/test/test_build_US_setup/config.yml @@ -0,0 +1,75 @@ +name: test_build_US_setup +start_date: 2020-01-31 +end_date: 2020-05-31 +nsimulations: 1 +dt: 0.25 + +spatial_setup: + census_year: 2010 + base_path: data + setup_name: test1 + modeled_states: + - MD + geodata: geodata.csv + mobility: mobility.csv + popnodes: pop2010 + nodenames: geoid + include_in_report: targeted + +seeding: + method: PoissonDistributed + lambda_file: data/seeding.csv + +seir: + parameters: + sigma: 1 / 5.2 + gamma: + distribution: uniform + low: 1 / 6 + high: 1 / 2.6 + R0s: + distribution: uniform + low: 2 + high: 3 + +interventions: + scenarios: + - None + - Scenario1 + settings: + None: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: fixed + value: 0 + Place1: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: uniform + low: .14 + high: .33 + Scenario1: + template: Stacked + scenarios: + - Place1 + - None + +hospitalization: + paths: + output_path: hospitalization + parameters: + time_hosp: [1.23, 0.79] + time_disch: [log(11.5), log(1.22)] + time_death: [log(11.25), log(1.15)] + time_ICU: [log(8.25), log(2.2)] + time_ICUdur: [log(16), log(2.96)] + time_vent: [log(10.5), log((10.5-8)/1.35)] + p_death: [.0025, .005, .01] + p_death_names: ["low","med","high"] + p_death_rate: 0.1 + p_ICU: 0.32 + p_vent: 0.15 diff --git a/test/test_build_nonUS_setup/config.yml b/test/test_build_nonUS_setup/config.yml new file mode 100644 index 000000000..1ca4a7ffb --- /dev/null +++ b/test/test_build_nonUS_setup/config.yml @@ -0,0 +1,77 @@ +name: test_build_nonUS_setup +start_date: 2020-01-31 +end_date: 2020-05-31 +nsimulations: 1 +dt: 0.25 + +spatial_setup: + census_year: 2020 + base_path: data + setup_name: test1 + us_model: FALSE + modeled_states: + - ZMB + geoid_len: 5 + geodata: geodata.csv + mobility: mobility.csv + popnodes: pop + nodenames: geoid + include_in_report: targeted + +seeding: + method: PoissonDistributed + lambda_file: data/seeding.csv + +seir: + parameters: + sigma: 1 / 5.2 + gamma: + distribution: uniform + low: 1 / 6 + high: 1 / 2.6 + R0s: + distribution: uniform + low: 2 + high: 3 + +interventions: + scenarios: + - None + - Scenario1 + settings: + None: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: fixed + value: 0 + Place1: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: uniform + low: .14 + high: .33 + Scenario1: + template: Stacked + scenarios: + - Place1 + - None + +hospitalization: + paths: + output_path: hospitalization + parameters: + time_hosp: [1.23, 0.79] + time_disch: [log(11.5), log(1.22)] + time_death: [log(11.25), log(1.15)] + time_ICU: [log(8.25), log(2.2)] + time_ICUdur: [log(16), log(2.96)] + time_vent: [log(10.5), log((10.5-8)/1.35)] + p_death: [.0025, .005, .01] + p_death_names: ["low","med","high"] + p_death_rate: 0.1 + p_ICU: 0.32 + p_vent: 0.15 diff --git a/test/test_build_nonUS_setup/data/geodata/mobility_data.csv b/test/test_build_nonUS_setup/data/geodata/mobility_data.csv new file mode 100644 index 000000000..ffec6b5a2 --- /dev/null +++ b/test/test_build_nonUS_setup/data/geodata/mobility_data.csv @@ -0,0 +1,17 @@ +origin,destination,FLOW,pop_orig,OGEOID,pop_dest,DGEOID +Chibombo,Chibombo,474886,475009,00006,475009,00006 +Chibombo,Kitwe,3,475009,00006,754441,00044 +Chibombo,Kafue,2,475009,00006,146232,00029 +Chibombo,Lusaka,23,475009,00006,2577305,00059 +Kitwe,Chibombo,0,754441,00044,475009,00006 +Kitwe,Kitwe,754432,754441,00044,754441,00044 +Kitwe,Kafue,0,754441,00044,146232,00029 +Kitwe,Lusaka,0,754441,00044,2577305,00059 +Kafue,Chibombo,248,146232,00029,475009,00006 +Kafue,Kitwe,100,146232,00029,754441,00044 +Kafue,Kafue,136654,146232,00029,146232,00029 +Kafue,Lusaka,3350,146232,00029,2577305,00059 +Lusaka,Chibombo,0,2577305,00059,475009,00006 +Lusaka,Kitwe,0,2577305,00059,754441,00044 +Lusaka,Kafue,0,2577305,00059,146232,00029 +Lusaka,Lusaka,2577305,2577305,00059,2577305,00059 diff --git a/test/test_build_nonUS_setup/data/geodata/population_data.csv b/test/test_build_nonUS_setup/data/geodata/population_data.csv new file mode 100644 index 000000000..8ecd1fe36 --- /dev/null +++ b/test/test_build_nonUS_setup/data/geodata/population_data.csv @@ -0,0 +1,5 @@ +ADMIN0,ADMIN2,GEOID,POP +ZMB,Chibombo,00006,475009 +ZMB,Kafue,00029,146232 +ZMB,Kitwe,00044,754441 +ZMB,Lusaka,00059,2577305 diff --git a/test/test_build_nonUS_setup/data/mobility.csv b/test/test_build_nonUS_setup/data/mobility.csv new file mode 100644 index 000000000..77af06d3b --- /dev/null +++ b/test/test_build_nonUS_setup/data/mobility.csv @@ -0,0 +1,25 @@ +"ori","dest","amount" +"00006","00029",2 +"00006","00044",3 +"00006","00059",23 +"00029","00006",248 +"00029","00044",100 +"00029","00059",3350 +"00044","00006",0 +"00044","00029",0 +"00044","00059",0 +"00059","00006",0 +"00059","00029",0 +"00059","00044",0 +"00029","00006",2 +"00044","00006",3 +"00059","00006",23 +"00006","00029",248 +"00044","00029",100 +"00059","00029",3350 +"00006","00044",0 +"00029","00044",0 +"00059","00044",0 +"00006","00059",0 +"00029","00059",0 +"00044","00059",0 diff --git a/test/test_create_seeding_US/config.yml b/test/test_create_seeding_US/config.yml new file mode 100644 index 000000000..1dd408cae --- /dev/null +++ b/test/test_create_seeding_US/config.yml @@ -0,0 +1,75 @@ +name: test_create_seeding_US +start_date: 2020-01-31 +end_date: 2020-03-31 +nsimulations: 1 +dt: 0.25 + +spatial_setup: + census_year: 2010 + base_path: data + setup_name: test1 + modeled_states: + - MD + geodata: geodata.csv + mobility: mobility.csv + popnodes: pop2010 + nodenames: geoid + include_in_report: targeted + +seeding: + method: PoissonDistributed + lambda_file: data/seeding.csv + +seir: + parameters: + sigma: 1 / 5.2 + gamma: + distribution: uniform + low: 1 / 6 + high: 1 / 2.6 + R0s: + distribution: uniform + low: 2 + high: 3 + +interventions: + scenarios: + - None + - Scenario1 + settings: + None: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: fixed + value: 0 + Place1: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: uniform + low: .14 + high: .33 + Scenario1: + template: Stacked + scenarios: + - Place1 + - None + +hospitalization: + paths: + output_path: hospitalization + parameters: + time_hosp: [1.23, 0.79] + time_disch: [log(11.5), log(1.22)] + time_death: [log(11.25), log(1.15)] + time_ICU: [log(8.25), log(2.2)] + time_ICUdur: [log(16), log(2.96)] + time_vent: [log(10.5), log((10.5-8)/1.35)] + p_death: [.0025, .005, .01] + p_death_names: ["low","med","high"] + p_death_rate: 0.1 + p_ICU: 0.32 + p_vent: 0.15 diff --git a/test/test_create_seeding_US/data/geodata.csv b/test/test_create_seeding_US/data/geodata.csv new file mode 100644 index 000000000..c7d03fc61 --- /dev/null +++ b/test/test_create_seeding_US/data/geodata.csv @@ -0,0 +1,25 @@ +"geoid","USPS","pop2010" +"24029","MD",20197 +"24039","MD",26470 +"24023","MD",30097 +"24019","MD",32618 +"24011","MD",33066 +"24041","MD",37782 +"24035","MD",47798 +"24047","MD",51454 +"24001","MD",75087 +"24009","MD",88737 +"24045","MD",98733 +"24015","MD",101108 +"24037","MD",105151 +"24017","MD",146551 +"24043","MD",147430 +"24013","MD",167134 +"24021","MD",233385 +"24025","MD",244826 +"24027","MD",287085 +"24003","MD",537656 +"24510","MD",620961 +"24005","MD",805029 +"24033","MD",863420 +"24031","MD",971777 diff --git a/test/test_create_seeding_US/data/mobility.csv b/test/test_create_seeding_US/data/mobility.csv new file mode 100644 index 000000000..35766f09a --- /dev/null +++ b/test/test_create_seeding_US/data/mobility.csv @@ -0,0 +1,707 @@ +"ori","dest","amount" +"24001","24003",89 +"24001","24005",43 +"24001","24013",20 +"24001","24021",108 +"24001","24023",218 +"24001","24027",65 +"24001","24031",293 +"24001","24033",90 +"24001","24043",588 +"24001","24047",10 +"24001","24510",49 +"24003","24001",25 +"24003","24005",12230 +"24003","24009",940 +"24003","24011",40 +"24003","24013",579 +"24003","24015",49 +"24003","24017",510 +"24003","24019",10 +"24003","24021",451 +"24003","24025",647 +"24003","24027",17738 +"24003","24029",10 +"24003","24031",6995 +"24003","24033",25698 +"24003","24035",762 +"24003","24037",70 +"24003","24041",34 +"24003","24043",55 +"24003","24045",80 +"24003","24047",25 +"24003","24510",21539 +"24005","24001",45 +"24005","24003",23817 +"24005","24009",34 +"24005","24013",4698 +"24005","24015",210 +"24005","24017",64 +"24005","24019",10 +"24005","24021",812 +"24005","24025",8849 +"24005","24027",23307 +"24005","24031",3890 +"24005","24033",5153 +"24005","24035",45 +"24005","24037",30 +"24005","24039",20 +"24005","24041",35 +"24005","24043",24 +"24005","24045",10 +"24005","24047",108 +"24005","24510",116597 +"24009","24003",2421 +"24009","24005",154 +"24009","24013",35 +"24009","24017",1631 +"24009","24019",10 +"24009","24021",10 +"24009","24027",299 +"24009","24031",895 +"24009","24033",9357 +"24009","24035",20 +"24009","24037",1203 +"24009","24045",10 +"24009","24510",174 +"24011","24003",976 +"24011","24005",137 +"24011","24013",8 +"24011","24015",20 +"24011","24017",4 +"24011","24019",333 +"24011","24025",10 +"24011","24027",92 +"24011","24029",223 +"24011","24031",12 +"24011","24033",236 +"24011","24035",1685 +"24011","24037",4 +"24011","24039",19 +"24011","24041",1808 +"24011","24045",105 +"24011","24047",15 +"24011","24510",277 +"24013","24001",25 +"24013","24003",4133 +"24013","24005",15795 +"24013","24009",65 +"24013","24015",4 +"24013","24017",10 +"24013","24021",2898 +"24013","24025",448 +"24013","24027",8030 +"24013","24031",4027 +"24013","24033",2081 +"24013","24043",174 +"24013","24047",35 +"24013","24510",6189 +"24015","24003",253 +"24015","24005",1545 +"24015","24009",4 +"24015","24013",15 +"24015","24021",10 +"24015","24025",6100 +"24015","24027",210 +"24015","24029",144 +"24015","24031",39 +"24015","24033",70 +"24015","24035",36 +"24015","24039",10 +"24015","24045",85 +"24015","24510",1128 +"24017","24001",65 +"24017","24003",721 +"24017","24005",163 +"24017","24009",967 +"24017","24013",20 +"24017","24027",455 +"24017","24031",1847 +"24017","24033",14603 +"24017","24037",662 +"24017","24510",313 +"24019","24003",136 +"24019","24005",100 +"24019","24011",528 +"24019","24027",28 +"24019","24029",24 +"24019","24031",64 +"24019","24033",68 +"24019","24035",334 +"24019","24041",1182 +"24019","24045",780 +"24019","24047",60 +"24019","24510",134 +"24021","24001",10 +"24021","24003",872 +"24021","24005",1027 +"24021","24009",4 +"24021","24013",2615 +"24021","24015",15 +"24021","24017",30 +"24021","24025",49 +"24021","24027",2319 +"24021","24031",26095 +"24021","24033",1640 +"24021","24043",1989 +"24021","24510",1149 +"24023","24001",1716 +"24023","24003",35 +"24023","24005",54 +"24023","24013",10 +"24023","24021",48 +"24023","24031",54 +"24023","24033",49 +"24023","24043",75 +"24023","24510",20 +"24025","24003",3894 +"24025","24005",25802 +"24025","24013",203 +"24025","24015",1666 +"24025","24021",24 +"24025","24027",2851 +"24025","24029",25 +"24025","24031",575 +"24025","24033",930 +"24025","24043",25 +"24025","24047",45 +"24025","24510",17939 +"24027","24001",10 +"24027","24003",15409 +"24027","24005",11908 +"24027","24013",1059 +"24027","24015",15 +"24027","24017",64 +"24027","24021",935 +"24027","24025",277 +"24027","24031",13956 +"24027","24033",13662 +"24027","24035",80 +"24027","24041",4 +"24027","24043",54 +"24027","24047",20 +"24027","24510",15903 +"24029","24003",224 +"24029","24005",29 +"24029","24011",22 +"24029","24013",4 +"24029","24015",301 +"24029","24021",10 +"24029","24025",52 +"24029","24027",65 +"24029","24031",35 +"24029","24033",28 +"24029","24035",581 +"24029","24041",25 +"24029","24047",15 +"24029","24510",74 +"24031","24001",34 +"24031","24003",4364 +"24031","24005",2414 +"24031","24009",140 +"24031","24013",473 +"24031","24015",14 +"24031","24017",286 +"24031","24019",15 +"24031","24021",4897 +"24031","24025",130 +"24031","24027",6736 +"24031","24029",15 +"24031","24033",28761 +"24031","24035",55 +"24031","24037",35 +"24031","24041",24 +"24031","24043",300 +"24031","24045",35 +"24031","24047",25 +"24031","24510",3885 +"24033","24001",34 +"24033","24003",12202 +"24033","24005",2846 +"24033","24009",594 +"24033","24013",304 +"24033","24015",18 +"24033","24017",3901 +"24033","24021",715 +"24033","24025",109 +"24033","24027",8753 +"24033","24029",15 +"24033","24031",43792 +"24033","24035",99 +"24033","24037",110 +"24033","24043",133 +"24033","24045",10 +"24033","24047",25 +"24033","24510",6723 +"24035","24001",15 +"24035","24003",4745 +"24035","24005",489 +"24035","24011",128 +"24035","24013",54 +"24035","24015",100 +"24035","24017",25 +"24035","24019",48 +"24035","24021",20 +"24035","24025",54 +"24035","24027",460 +"24035","24029",923 +"24035","24031",384 +"24035","24033",1400 +"24035","24041",555 +"24035","24045",34 +"24035","24047",20 +"24035","24510",624 +"24037","24003",473 +"24037","24005",110 +"24037","24009",2049 +"24037","24017",3982 +"24037","24025",10 +"24037","24027",100 +"24037","24031",293 +"24037","24033",3324 +"24037","24043",15 +"24037","24047",65 +"24037","24510",75 +"24039","24003",20 +"24039","24005",50 +"24039","24015",25 +"24039","24019",15 +"24039","24027",10 +"24039","24031",4 +"24039","24033",25 +"24039","24043",4 +"24039","24045",2461 +"24039","24047",785 +"24039","24510",14 +"24041","24003",727 +"24041","24005",103 +"24041","24009",10 +"24041","24011",346 +"24041","24013",10 +"24041","24017",4 +"24041","24019",452 +"24041","24025",15 +"24041","24027",60 +"24041","24029",89 +"24041","24031",104 +"24041","24033",346 +"24041","24035",940 +"24041","24045",119 +"24041","24047",105 +"24041","24510",146 +"24043","24001",129 +"24043","24003",218 +"24043","24005",243 +"24043","24009",4 +"24043","24013",198 +"24043","24017",15 +"24043","24021",10892 +"24043","24027",387 +"24043","24031",3456 +"24043","24033",292 +"24043","24039",30 +"24043","24047",29 +"24043","24510",188 +"24045","24003",159 +"24045","24005",49 +"24045","24009",10 +"24045","24011",57 +"24045","24013",14 +"24045","24015",10 +"24045","24017",15 +"24045","24019",347 +"24045","24021",14 +"24045","24025",115 +"24045","24027",70 +"24045","24031",80 +"24045","24033",134 +"24045","24035",48 +"24045","24039",759 +"24045","24041",184 +"24045","24047",4440 +"24045","24510",84 +"24047","24003",85 +"24047","24005",175 +"24047","24009",10 +"24047","24013",10 +"24047","24021",30 +"24047","24025",25 +"24047","24027",20 +"24047","24029",15 +"24047","24031",130 +"24047","24033",40 +"24047","24035",15 +"24047","24039",179 +"24047","24043",15 +"24047","24045",3051 +"24047","24510",115 +"24510","24001",25 +"24510","24003",15475 +"24510","24005",58633 +"24510","24009",34 +"24510","24013",961 +"24510","24015",85 +"24510","24017",4 +"24510","24019",10 +"24510","24021",284 +"24510","24025",2272 +"24510","24027",10242 +"24510","24031",2622 +"24510","24033",3793 +"24510","24035",195 +"24510","24043",10 +"24510","24045",30 +"24510","24047",100 +"24003","24001",89 +"24005","24001",43 +"24013","24001",20 +"24021","24001",108 +"24023","24001",218 +"24027","24001",65 +"24031","24001",293 +"24033","24001",90 +"24043","24001",588 +"24047","24001",10 +"24510","24001",49 +"24001","24003",25 +"24005","24003",12230 +"24009","24003",940 +"24011","24003",40 +"24013","24003",579 +"24015","24003",49 +"24017","24003",510 +"24019","24003",10 +"24021","24003",451 +"24025","24003",647 +"24027","24003",17738 +"24029","24003",10 +"24031","24003",6995 +"24033","24003",25698 +"24035","24003",762 +"24037","24003",70 +"24041","24003",34 +"24043","24003",55 +"24045","24003",80 +"24047","24003",25 +"24510","24003",21539 +"24001","24005",45 +"24003","24005",23817 +"24009","24005",34 +"24013","24005",4698 +"24015","24005",210 +"24017","24005",64 +"24019","24005",10 +"24021","24005",812 +"24025","24005",8849 +"24027","24005",23307 +"24031","24005",3890 +"24033","24005",5153 +"24035","24005",45 +"24037","24005",30 +"24039","24005",20 +"24041","24005",35 +"24043","24005",24 +"24045","24005",10 +"24047","24005",108 +"24510","24005",116597 +"24003","24009",2421 +"24005","24009",154 +"24013","24009",35 +"24017","24009",1631 +"24019","24009",10 +"24021","24009",10 +"24027","24009",299 +"24031","24009",895 +"24033","24009",9357 +"24035","24009",20 +"24037","24009",1203 +"24045","24009",10 +"24510","24009",174 +"24003","24011",976 +"24005","24011",137 +"24013","24011",8 +"24015","24011",20 +"24017","24011",4 +"24019","24011",333 +"24025","24011",10 +"24027","24011",92 +"24029","24011",223 +"24031","24011",12 +"24033","24011",236 +"24035","24011",1685 +"24037","24011",4 +"24039","24011",19 +"24041","24011",1808 +"24045","24011",105 +"24047","24011",15 +"24510","24011",277 +"24001","24013",25 +"24003","24013",4133 +"24005","24013",15795 +"24009","24013",65 +"24015","24013",4 +"24017","24013",10 +"24021","24013",2898 +"24025","24013",448 +"24027","24013",8030 +"24031","24013",4027 +"24033","24013",2081 +"24043","24013",174 +"24047","24013",35 +"24510","24013",6189 +"24003","24015",253 +"24005","24015",1545 +"24009","24015",4 +"24013","24015",15 +"24021","24015",10 +"24025","24015",6100 +"24027","24015",210 +"24029","24015",144 +"24031","24015",39 +"24033","24015",70 +"24035","24015",36 +"24039","24015",10 +"24045","24015",85 +"24510","24015",1128 +"24001","24017",65 +"24003","24017",721 +"24005","24017",163 +"24009","24017",967 +"24013","24017",20 +"24027","24017",455 +"24031","24017",1847 +"24033","24017",14603 +"24037","24017",662 +"24510","24017",313 +"24003","24019",136 +"24005","24019",100 +"24011","24019",528 +"24027","24019",28 +"24029","24019",24 +"24031","24019",64 +"24033","24019",68 +"24035","24019",334 +"24041","24019",1182 +"24045","24019",780 +"24047","24019",60 +"24510","24019",134 +"24001","24021",10 +"24003","24021",872 +"24005","24021",1027 +"24009","24021",4 +"24013","24021",2615 +"24015","24021",15 +"24017","24021",30 +"24025","24021",49 +"24027","24021",2319 +"24031","24021",26095 +"24033","24021",1640 +"24043","24021",1989 +"24510","24021",1149 +"24001","24023",1716 +"24003","24023",35 +"24005","24023",54 +"24013","24023",10 +"24021","24023",48 +"24031","24023",54 +"24033","24023",49 +"24043","24023",75 +"24510","24023",20 +"24003","24025",3894 +"24005","24025",25802 +"24013","24025",203 +"24015","24025",1666 +"24021","24025",24 +"24027","24025",2851 +"24029","24025",25 +"24031","24025",575 +"24033","24025",930 +"24043","24025",25 +"24047","24025",45 +"24510","24025",17939 +"24001","24027",10 +"24003","24027",15409 +"24005","24027",11908 +"24013","24027",1059 +"24015","24027",15 +"24017","24027",64 +"24021","24027",935 +"24025","24027",277 +"24031","24027",13956 +"24033","24027",13662 +"24035","24027",80 +"24041","24027",4 +"24043","24027",54 +"24047","24027",20 +"24510","24027",15903 +"24003","24029",224 +"24005","24029",29 +"24011","24029",22 +"24013","24029",4 +"24015","24029",301 +"24021","24029",10 +"24025","24029",52 +"24027","24029",65 +"24031","24029",35 +"24033","24029",28 +"24035","24029",581 +"24041","24029",25 +"24047","24029",15 +"24510","24029",74 +"24001","24031",34 +"24003","24031",4364 +"24005","24031",2414 +"24009","24031",140 +"24013","24031",473 +"24015","24031",14 +"24017","24031",286 +"24019","24031",15 +"24021","24031",4897 +"24025","24031",130 +"24027","24031",6736 +"24029","24031",15 +"24033","24031",28761 +"24035","24031",55 +"24037","24031",35 +"24041","24031",24 +"24043","24031",300 +"24045","24031",35 +"24047","24031",25 +"24510","24031",3885 +"24001","24033",34 +"24003","24033",12202 +"24005","24033",2846 +"24009","24033",594 +"24013","24033",304 +"24015","24033",18 +"24017","24033",3901 +"24021","24033",715 +"24025","24033",109 +"24027","24033",8753 +"24029","24033",15 +"24031","24033",43792 +"24035","24033",99 +"24037","24033",110 +"24043","24033",133 +"24045","24033",10 +"24047","24033",25 +"24510","24033",6723 +"24001","24035",15 +"24003","24035",4745 +"24005","24035",489 +"24011","24035",128 +"24013","24035",54 +"24015","24035",100 +"24017","24035",25 +"24019","24035",48 +"24021","24035",20 +"24025","24035",54 +"24027","24035",460 +"24029","24035",923 +"24031","24035",384 +"24033","24035",1400 +"24041","24035",555 +"24045","24035",34 +"24047","24035",20 +"24510","24035",624 +"24003","24037",473 +"24005","24037",110 +"24009","24037",2049 +"24017","24037",3982 +"24025","24037",10 +"24027","24037",100 +"24031","24037",293 +"24033","24037",3324 +"24043","24037",15 +"24047","24037",65 +"24510","24037",75 +"24003","24039",20 +"24005","24039",50 +"24015","24039",25 +"24019","24039",15 +"24027","24039",10 +"24031","24039",4 +"24033","24039",25 +"24043","24039",4 +"24045","24039",2461 +"24047","24039",785 +"24510","24039",14 +"24003","24041",727 +"24005","24041",103 +"24009","24041",10 +"24011","24041",346 +"24013","24041",10 +"24017","24041",4 +"24019","24041",452 +"24025","24041",15 +"24027","24041",60 +"24029","24041",89 +"24031","24041",104 +"24033","24041",346 +"24035","24041",940 +"24045","24041",119 +"24047","24041",105 +"24510","24041",146 +"24001","24043",129 +"24003","24043",218 +"24005","24043",243 +"24009","24043",4 +"24013","24043",198 +"24017","24043",15 +"24021","24043",10892 +"24027","24043",387 +"24031","24043",3456 +"24033","24043",292 +"24039","24043",30 +"24047","24043",29 +"24510","24043",188 +"24003","24045",159 +"24005","24045",49 +"24009","24045",10 +"24011","24045",57 +"24013","24045",14 +"24015","24045",10 +"24017","24045",15 +"24019","24045",347 +"24021","24045",14 +"24025","24045",115 +"24027","24045",70 +"24031","24045",80 +"24033","24045",134 +"24035","24045",48 +"24039","24045",759 +"24041","24045",184 +"24047","24045",4440 +"24510","24045",84 +"24003","24047",85 +"24005","24047",175 +"24009","24047",10 +"24013","24047",10 +"24021","24047",30 +"24025","24047",25 +"24027","24047",20 +"24029","24047",15 +"24031","24047",130 +"24033","24047",40 +"24035","24047",15 +"24039","24047",179 +"24043","24047",15 +"24045","24047",3051 +"24510","24047",115 +"24001","24510",25 +"24003","24510",15475 +"24005","24510",58633 +"24009","24510",34 +"24013","24510",961 +"24015","24510",85 +"24017","24510",4 +"24019","24510",10 +"24021","24510",284 +"24025","24510",2272 +"24027","24510",10242 +"24031","24510",2622 +"24033","24510",3793 +"24035","24510",195 +"24043","24510",10 +"24045","24510",30 +"24047","24510",100 diff --git a/test/test_create_seeding_nonUS/config.yml b/test/test_create_seeding_nonUS/config.yml new file mode 100644 index 000000000..1ca4a7ffb --- /dev/null +++ b/test/test_create_seeding_nonUS/config.yml @@ -0,0 +1,77 @@ +name: test_build_nonUS_setup +start_date: 2020-01-31 +end_date: 2020-05-31 +nsimulations: 1 +dt: 0.25 + +spatial_setup: + census_year: 2020 + base_path: data + setup_name: test1 + us_model: FALSE + modeled_states: + - ZMB + geoid_len: 5 + geodata: geodata.csv + mobility: mobility.csv + popnodes: pop + nodenames: geoid + include_in_report: targeted + +seeding: + method: PoissonDistributed + lambda_file: data/seeding.csv + +seir: + parameters: + sigma: 1 / 5.2 + gamma: + distribution: uniform + low: 1 / 6 + high: 1 / 2.6 + R0s: + distribution: uniform + low: 2 + high: 3 + +interventions: + scenarios: + - None + - Scenario1 + settings: + None: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: fixed + value: 0 + Place1: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: uniform + low: .14 + high: .33 + Scenario1: + template: Stacked + scenarios: + - Place1 + - None + +hospitalization: + paths: + output_path: hospitalization + parameters: + time_hosp: [1.23, 0.79] + time_disch: [log(11.5), log(1.22)] + time_death: [log(11.25), log(1.15)] + time_ICU: [log(8.25), log(2.2)] + time_ICUdur: [log(16), log(2.96)] + time_vent: [log(10.5), log((10.5-8)/1.35)] + p_death: [.0025, .005, .01] + p_death_names: ["low","med","high"] + p_death_rate: 0.1 + p_ICU: 0.32 + p_vent: 0.15 diff --git a/test/test_create_seeding_nonUS/data/case_data/case_data.csv b/test/test_create_seeding_nonUS/data/case_data/case_data.csv new file mode 100644 index 000000000..ee54e9fba --- /dev/null +++ b/test/test_create_seeding_nonUS/data/case_data/case_data.csv @@ -0,0 +1,11 @@ +date,district,incidI,geoid +2020-03-25,kitwe,3,00044 +2020-03-29,lusaka,2,00059 +2020-03-30,lusaka,1,00059 +2020-03-31,lusaka,1,00059 +2020-04-07,lusaka,1,00059 +2020-04-09,lusaka,1,00059 +2020-04-10,lusaka,8,00059 +2020-04-11,kafue,1,00029 +2020-04-11,lusaka,1,00059 +2020-04-16,kafue,21,00029 diff --git a/test/test_create_seeding_nonUS/data/geodata.csv b/test/test_create_seeding_nonUS/data/geodata.csv new file mode 100644 index 000000000..be052650e --- /dev/null +++ b/test/test_create_seeding_nonUS/data/geodata.csv @@ -0,0 +1,5 @@ +"geoid","admin0","pop" +"00029","ZMB",146232 +"00006","ZMB",475009 +"00044","ZMB",754441 +"00059","ZMB",2577305 diff --git a/test/test_create_seeding_nonUS/data/mobility.csv b/test/test_create_seeding_nonUS/data/mobility.csv new file mode 100644 index 000000000..77af06d3b --- /dev/null +++ b/test/test_create_seeding_nonUS/data/mobility.csv @@ -0,0 +1,25 @@ +"ori","dest","amount" +"00006","00029",2 +"00006","00044",3 +"00006","00059",23 +"00029","00006",248 +"00029","00044",100 +"00029","00059",3350 +"00044","00006",0 +"00044","00029",0 +"00044","00059",0 +"00059","00006",0 +"00059","00029",0 +"00059","00044",0 +"00029","00006",2 +"00044","00006",3 +"00059","00006",23 +"00006","00029",248 +"00044","00029",100 +"00059","00029",3350 +"00006","00044",0 +"00029","00044",0 +"00059","00044",0 +"00006","00059",0 +"00029","00059",0 +"00044","00059",0 diff --git a/test/test_hosp_age_adjust/data/geodata.csv b/test/test_hosp_age_adjust/data/geodata.csv index b85f29c94..4af00682c 100644 --- a/test/test_hosp_age_adjust/data/geodata.csv +++ b/test/test_hosp_age_adjust/data/geodata.csv @@ -1,3 +1,3 @@ geoid,population 10001,1000 -20002,2000 +01033,2000 diff --git a/test/test_hosp_age_adjust/data/seeding.csv b/test/test_hosp_age_adjust/data/seeding.csv index 80943c4a7..221d74236 100644 --- a/test/test_hosp_age_adjust/data/seeding.csv +++ b/test/test_hosp_age_adjust/data/seeding.csv @@ -1,4 +1,3 @@ place,date,amount 10001,2020-01-31,.1 -20002,2020-01-31,0.01 - +01033,2020-01-31,0.01 diff --git a/test/test_importation/data/geodata.csv b/test/test_importation/data/geodata.csv deleted file mode 100644 index c3b639a6b..000000000 --- a/test/test_importation/data/geodata.csv +++ /dev/null @@ -1,6 +0,0 @@ -id,geoid,pop2010,stateUSPS -0,15001,185079.0,HI -1,15003,953207.0,HI -2,15005,90.0,HI -3,15007,67091.0,HI -4,15009,154834.0,HI diff --git a/test/test_importation/data/mobility.txt b/test/test_importation/data/mobility.txt deleted file mode 100644 index 454fb030a..000000000 --- a/test/test_importation/data/mobility.txt +++ /dev/null @@ -1,5 +0,0 @@ -0.000000000000000000e+00 6.870000000000000000e+02 0.000000000000000000e+00 4.000000000000000000e+00 2.060000000000000000e+02 -6.870000000000000000e+02 0.000000000000000000e+00 0.000000000000000000e+00 2.660000000000000000e+02 1.032000000000000000e+03 -0.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 4.000000000000000000e+00 -4.000000000000000000e+00 2.660000000000000000e+02 0.000000000000000000e+00 0.000000000000000000e+00 9.700000000000000000e+01 -2.060000000000000000e+02 1.032000000000000000e+03 4.000000000000000000e+00 9.700000000000000000e+01 0.000000000000000000e+00 diff --git a/test/test_report/config.yml b/test/test_report/config.yml index a9de7f83c..dd82092b5 100644 --- a/test/test_report/config.yml +++ b/test/test_report/config.yml @@ -10,7 +10,7 @@ spatial_setup: base_path: data setup_name: test_report geodata: geodata.csv - mobility: mobility.txt + mobility: mobility.csv popnodes: pop2010 nodenames: geoid census_year: 2018 @@ -109,8 +109,8 @@ report: scenario_labels: - Uncontrolled - Scenario1 - scenario_colors: ["#D95F02", "#7570B3"] - pdeath_labels: ["0.25% IFR", "0.5% IFR"] + scenario_colors: ["#D95F02", "#7570B3", "#111111"] + pdeath_labels: ["0.25% IFR", "0.5% IFR","1% IFR"] display_dates: ["2020-04-01", "2020-05-01"] display_dates2: ["2020-05-01"] continue_on_error: FALSE diff --git a/test/test_report/data/geodata.csv b/test/test_report/data/geodata.csv deleted file mode 100644 index 78dde9654..000000000 --- a/test/test_report/data/geodata.csv +++ /dev/null @@ -1,6 +0,0 @@ -id,geoid,pop2010,include_in_report,USPS -0,15001,185079.0,TRUE,HI -1,15003,953207.0,TRUE,HI -2,15005,90.0,FALSE,HI -3,15007,67091.0,TRUE,HI -4,15009,154834.0,FALSE,HI diff --git a/test/test_report/data/mobility.txt b/test/test_report/data/mobility.txt deleted file mode 100644 index 454fb030a..000000000 --- a/test/test_report/data/mobility.txt +++ /dev/null @@ -1,5 +0,0 @@ -0.000000000000000000e+00 6.870000000000000000e+02 0.000000000000000000e+00 4.000000000000000000e+00 2.060000000000000000e+02 -6.870000000000000000e+02 0.000000000000000000e+00 0.000000000000000000e+00 2.660000000000000000e+02 1.032000000000000000e+03 -0.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 4.000000000000000000e+00 -4.000000000000000000e+00 2.660000000000000000e+02 0.000000000000000000e+00 0.000000000000000000e+00 9.700000000000000000e+01 -2.060000000000000000e+02 1.032000000000000000e+03 4.000000000000000000e+00 9.700000000000000000e+01 0.000000000000000000e+00 diff --git a/test/test_simple/config.yml b/test/test_simple/config.yml index 19f28cc75..bd3c3bf11 100644 --- a/test/test_simple/config.yml +++ b/test/test_simple/config.yml @@ -34,7 +34,8 @@ interventions: - Scenario1 settings: None: - template: ReduceR0 + template: Reduce + parameter: r0 period_start_date: 2020-04-01 period_end_date: 2020-05-15 value: @@ -48,11 +49,20 @@ interventions: distribution: uniform low: .14 high: .33 + Place2: + template: Reduce + parameter: gamma + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: fixed + value: .3 Scenario1: template: Stacked scenarios: - Place1 - None + - Place2 hospitalization: paths: diff --git a/test/test_simple_x2/config.yml b/test/test_simple_x2/config.yml new file mode 100644 index 000000000..833626f00 --- /dev/null +++ b/test/test_simple_x2/config.yml @@ -0,0 +1,81 @@ +name: test_simple_x2 +start_date: 2020-01-31 +end_date: 2020-05-31 +nsimulations: 1 +dt: 0.25 + +spatial_setup: + base_path: data + setup_name: test1 + geodata: geodata.csv + mobility: mobility.txt + popnodes: population + nodenames: geoid + +seeding: + method: PoissonDistributed + lambda_file: data/seeding.csv + +seir: + parameters: + sigma: 1 / 5.2 + gamma: + distribution: uniform + low: 1 / 6 + high: 1 / 2.6 + R0s: + distribution: uniform + low: 2 + high: 3 + +interventions: + scenarios: + - None + - Scenario1 + settings: + None: + template: Reduce + parameter: r0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: fixed + value: 0 + Place1: + template: ReduceR0 + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: uniform + low: .14 + high: .33 + Place2: + template: Reduce + parameter: gamma + period_start_date: 2020-04-01 + period_end_date: 2020-05-15 + value: + distribution: fixed + value: .3 + Scenario1: + template: Stacked + scenarios: + - Place1 + - None + - Place2 + +hospitalization: + paths: + output_path: hospitalization + parameters: + time_hosp: [1.23, 0.79] + time_disch: [log(11.5), log(1.22)] + time_death: [log(11.25), log(1.15)] + time_ICU: [log(8.25), log(2.2)] + time_ICUdur: [log(16), log(2.96)] + time_vent: [log(10.5), log((10.5-8)/1.35)] + p_death: [.0025, .005, .01] + p_death_names: ["low","med","high"] + p_death_rate: 0.1 + p_ICU: 0.32 + p_vent: 0.15 diff --git a/test/test_simple_x2/data/filter.txt b/test/test_simple_x2/data/filter.txt new file mode 100644 index 000000000..17f9fbd69 --- /dev/null +++ b/test/test_simple_x2/data/filter.txt @@ -0,0 +1,32 @@ +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +0 0 +10 0 diff --git a/test/test_simple_x2/data/geodata.csv b/test/test_simple_x2/data/geodata.csv new file mode 100644 index 000000000..b85f29c94 --- /dev/null +++ b/test/test_simple_x2/data/geodata.csv @@ -0,0 +1,3 @@ +geoid,population +10001,1000 +20002,2000 diff --git a/test/test_simple_x2/data/mobility.txt b/test/test_simple_x2/data/mobility.txt new file mode 100644 index 000000000..454b62fec --- /dev/null +++ b/test/test_simple_x2/data/mobility.txt @@ -0,0 +1,2 @@ +0 .03 +.03 0 diff --git a/test/test_simple_x2/data/seeding.csv b/test/test_simple_x2/data/seeding.csv new file mode 100644 index 000000000..80943c4a7 --- /dev/null +++ b/test/test_simple_x2/data/seeding.csv @@ -0,0 +1,4 @@ +place,date,amount +10001,2020-01-31,.1 +20002,2020-01-31,0.01 + diff --git a/vignettes/how_to.Rmd b/vignettes/how_to.Rmd deleted file mode 100644 index 0fe766361..000000000 --- a/vignettes/how_to.Rmd +++ /dev/null @@ -1,497 +0,0 @@ ---- -title: "Creating COVID19 planning scenario reports" -author: "Joshua Kaminsky" -date: "`r format(Sys.time(), '%d %B, %Y')`" -output: html_document ---- - -# Introduction - -The purpose of htis document is to provide full instruction on how to create a report using the COVIDScenarioPipeline. - -## Scope - -The report you will create discusses planning scenarios for different interventions on COVID19. This is not a forecasting pipeline, and I will provide no explanation about how it may transfer to another disease. - -#### Specific Limitations - - %% POPULATE ME please help scientists - - - Interventions need to be implemented as an effect on `beta`. Some more mechanistic interventions cannot easily be captured this way. - -# Overview - -The pipeline is broken into several stages, each of which can be independently replaced. - -### Pipeline Phases - -#### Seeding - -We run a model to determine the likelihood of importing cases into the region of interest. We maintain an [R package](https://github.com/HopkinsIDD/covidImportation). - - - -#### Epidemic Simulation - -We run a location stratified [SEIR model](https://github.com/HopkinsIDD/COVIDScenarioPipeline/tree/dataseed/SEIR), using a python module in `COVIDScenarioPipeline`. - -#### Hospitalization Estimation - -We estimate secondary effects of infection using infection numbers using the [hospitalization](https://github.com/HopkinsIDD/COVIDScenarioPipeline/tree/dataseed/R/pkgs/hospitalization) R package in `COVIDScenarioPipeline`. - -#### Report Generation - -We provide functions to access results and help produce reports in the [report_generation](https://github.com/HopkinsIDD/COVIDScenarioPipeline/tree/dataseed/R/pkgs/report_generation) R package in `COVIDScenarioPipeline`. - -### Pipeline Configuration - -#### config.yml - -Most of the configuration done for this package is set in this configuration file. A default is provided, but you should feel free to make your own copy tailored to your needs. - -# Getting Set up - -This project uses R, python, pandoc, and make - -#### R - -The code requires R version 3.6 or newer. You can download R from [cran](https://cran.rstudio.com/). We also recommend [rstudio](https://rstudio.com/products/rstudio/download/), an R IDE. We keep a list of [R packages](https://github.com/HopkinsIDD/COVIDScenarioPipeline/blob/dataseed/packages.R). You can source the script to install the versions required (the most recent versions also likely work). - -#### python - -We use python3.6 or newer. There is a python package we use that needs to know about R, so ensure you install R before python. This differs based on operating system. We keep a list of [python modules](https://github.com/HopkinsIDD/COVIDScenarioPipeline/blob/dataseed/requirements.txt). - -##### Windows - -My preference here has been to use windows subsystem for linux (WSL), and use the linux instructions. - -You can find installation instructions [here](https://docs.microsoft.com/en-us/windows/wsl/install-win10) - -If you want to try something else, you can [directly download](https://www.python.org/downloads/release/python-382/) python. During installation, be sure to add it to your path, or make won't work. - -##### Linux (Debian) - -``` -# apt install python3 python3-pip -``` - -##### Mac - -%% POPULATE ME - can someone who has a mac make sure this works? - -[This webpage](https://docs.python-guide.org/starting/install3/osx/) has a guide to installing python3 and pip on mac - -### pandoc - -Pandoc is part of R markdown, but needs to be installed separately. You can download it [here](https://github.com/jgm/pandoc/releases/tag/2.9.2) - -### make - -Make should already come with your system - -# Seeding - -The code for this section is in an [R package](https://github.com/HopkinsIDD/covidImportation). - -Calculate the expected number of cases imported from outside of the region of interest. - -# Epidemic Simulation - -The code for this section is in the [SEIR](https://github.com/HopkinsIDD/COVIDScenarioPipeline/tree/dataseed/SEIR) python module in `COVIDScenarioPipeline`. - -We have code for a SEIR compartmental model with three infectious states. -Within each geographic location, we assume even mixing. -Between locations, we have a movement model based on empirical data you will need to provide. - -## SEIR parameters -The epidemic is controlled by sigma, gamma, and R0 - -## Geographic Data - -This file contains the geographic information over which the simulation should be run. -It should have one line per location, and at least two columns containing information about those locations: -- `geoid` A column containing a unique identifier for the location -- `popnodes` A column containing the population of that location - -## Mobility File - -A matrix (stored as a space delimited scientific notation e.g., 0.000000000000000000e+00). The matrix is used to calculate movement rates between geoids. The number of people who move from `source` to `dest` is binomially distributed with probability `1 - exp( - mobility[source,dest] / popnodes[source] * dt)` - -## Filter - -A matrix (number of days simulated x number of geographic nodes). Each value contains a minimum number of cases for that time and place. The SEIR simulation throws out simulations that are inconsistent with these reports. - -Currently, the filter is strict, meaning that any simulation that doesn't pass it exactly is rejected. We expect to provide a more relaxed version that provides a tolerance parameter. - -## Seeding or importation - -in the `config.yaml` file: - -``` -seeding: - method: FolderDraw - folder_path: model_output/importation/ -# OR ! -seeding: - method: PoissonDistributed - lambda_file: data/west-coast-AZ-NV/seeding.csv -``` - - -`FolderDraw`: each sim will pull importation from file `importation_{$UID}.csv` in folder `folder_path`. If there is more sims than files in this folder, it’ll loop. `$UID` starts 1 to match R 1-based indexing. -`PoissonDistributed`: will draw a poisson with lambda specified in à `lambda_file` - -In both methods, csv files needs to have at least three columns named `place,date,amount` . `place` are places that match exactly a `place` in the `geodata.csv`. `date` are cases dates in any sensible format, and `amount` either the number of importation (`FolderDraw`) or the lambda parameter of the poisson (`PoissonDistributed`). - -in the CA repo, in `data/west-coast-AZ-NV/seeding.csv` there is an example file. I created it taking cum cases until the model start date, multiplied by 5 and adding 0.1 (so there is a chance in every county). This is a good way to start if the importation module is not availble for you. - - - -## Interventions - -In order to allow flexibility in interventions, we currently use an R script to define an intervention. We provide several exampes in the NPI folder. In the future, we expect to move away from this model and toward specifying interventions directly in the config files. - -To write an intervention, you need to write an R script that creates a matrix of your intervention's effects on `beta` by providing `NPI`, a matrix of percentage reduction for each location and time. To reduce beta by 20% deterministically, one could use - -```{r, eval=FALSE} -## This block sets default values so the NPI can be tested outside of python -if (!from_python) { # or whatever values you use to test. - ti_str <- '2020-01-31' - tf_str <- '2020-08-31' - foldername <- 'west-coast/' -} - -## This pulls data to determine the size of the location x time matrix -county.status <- read.csv(paste0(foldername,'geodata.csv')) -dates <- seq.Date(as.Date(ti_str), as.Date(tf_str), 1) - -## This creates and sets the location x time matrix. -NPI <- as.data.frame(matrix(0.2, dim(county.status)[1],length(dates)), dimnames = list() -``` - -# Hospitalization and Outcome Generation - -The code for this section is in the [hospitalization](https://github.com/HopkinsIDD/COVIDScenarioPipeline/tree/dataseed/R/pkgs/hospitalization). -After you have run a simulation, and have infection rates, we use those results to calculate hospitalizations, icu admittances, ventilator use, deaths (and it would be relatively easy to add other outcomes if you have data). - -### Probability Parameters - -There are currently 5 variables that we measure track. Infection (I), Hospitalization (H), death (D), ICU admittance (ICU), and Ventilator use (Vent). They are calculated from eachother starting from infection, which we get from the Epidemic simulation. Each parameter has an associated probability (p_H, p_D, etc.) which represents that probability of that event conditional on another event. The dependence of the parameters is summarized by the following flowchart - - -The current flow looks like this: - -```{r,echo=FALSE} - -DiagrammeR::grViz("digraph flowchart { - # node definitions with substituted label text - node [fontname = Helvetica, shape = rectangle] - tab1 [label = '@@1'] - tab2 [label = '@@2'] - tab3 [label = '@@3'] - tab4 [label = '@@4'] - tab5 [label = '@@5'] - - # edge definitions with the node IDs - tab1 -> tab2 [label = 'p_hosp']; - tab2 -> tab3 [label = 'p_death']; - tab2 -> tab4 [label = 'p_ICU']; - tab4 -> tab5 [label = 'p_vent']; - } - - [1]: 'Infection' - [2]: 'Hospitalization' - [3]: 'Death' - [4]: 'ICU' - [5]: 'Ventilation' - ") -``` - -### Duration Parameters - -For each event that has a probability, there is an associated time parameter, which measures expected time before that event from infection. The parameter is given as two numbers, and the expectation is calculated as `round(exp(time_X_pars[1] + X_pars[2]^2 / 2))`. - -%% POPULATE ME - Need explanation for why the parameters are of the above form - -There are two other parameters that calculate different amounts of time. They are in the same form, but measure the duration of one of the above events. time_ICUdur_pars, and time_dischdur_pars measure the length of ICU stay and hospital stay respectively. - -# Report Generation - -We provide a [package](https://github.com/HopkinsIDD/COVIDScenarioPipeline/tree/dataseed/R/pkgs/report_generation) to help utilize the previous parts of the pipeline to create meaningful reports. This support comes in the form of functions to help load the output of previous steps (it is sometimes quite large), and R Markdown templates to allow the easy creation of customizable reports without requiring the user to start from scratch. - -## Functions - -We provide two functions to load the results from the [Epidemic Simulation] and [Hospitalization and Outcome Generation], `load_scenario_sims_filtered` and `load_hosp_sims_filtered` respectively. These functions perform the same function on the two different data sources. Because of the nature of the data, they do have different syntax though - -#### load_scenario_sims_filtered - -```{r, eval = FALSE} -load_scenario_sims_filtered <- function( - scenario_dir, - post_process=function(x) {x}, - pre_process=function(x){x} -) -``` - - - `scenario_dir` is the directory containing the output of the [Epidemic Simulation]. The function assumes it is in the `model_output` subdirectory of this directory. You can access this by %POPULATE ME - how to use - - `pre_process` is a function to be performed on each simulation file before transforming into a long data frame. - - `post_process` A function to be performed on each simulation file after transforming into a long data frame. - -#### load_hosp_sims_filtered - -```{r, eval = FALSE} -load_hosp_sims_filtered <- function( - scenario_dir, - name_filter=function(x) {x}, - post_process=function(x){x} -) -``` - - - `scenario_dir` is the directory containing the output of the [Hospitalization and Outcome Generation]. The function assumes it is in the `hospitalization/model_output` subdirectory of this directory. You can access this by %POPULATE ME - how to use - - `post_process` A function to be performed on each simulation file after each piece of data is loaded. - - `name_filter` A string that all filenames need to match. This is intended for distinguishing between different hospitalization parameterization scenarios, which are stored with the scenario as part of the filename. - -## Templates - -We have generated templates to help create reports of different types. Templates are complete reports that you can use as a base of your output. Currently, we have the beginning of one template intended for state level reports. - -#### Using templates - -To start a draft from a template, you can use, for example: - -```{r, eval = FALSE} -rmarkdown::draft("Maryland_Report.Rmd", template = "state_report", package = "report_generation") -``` - - -# Appendixes - -### Implemented interventions - -Each intervention is associated with a start and end date and a range of values to sample from. - -### None - -This is a non-intervention scenario. It does not reduce `R0`. -```{r None} -None: - template: ReduceR0 - period_start_date: YYYY-MM-DD - period_end_date: YYYY-MM-DD - value: - distribution: fixed - value: 0 -``` - -### SchoolClosure - -This intervention represents school closures. It reduces `R0` by 16-30%. - -```{r School Closure} -SchoolClosure: - template: ReduceR0 - period_start_date: YYYY-MM-DD - period_end_date: YYYY-MM-DD - value: - distribution: truncnorm - a: 0.16 - b: 0.30 - mean: 0.18 - sd: 0.05 -``` - - - -### Influenza1918 - -This intervention represents the influence of different social distancing scenarios observed in the 1918 Influenza. It reduces `R0` by 44-65%, based on values observed in Milwaukee, Wisconsin. These values can be altered to reflect different cities and scenarios reported by M.Bootsma & N.M.Ferguson in https://www.pnas.org/content/104/18/7588.long - -```{r Influenza1918} -Influenza1918: - template: ReduceR0 - period_start_date: YYYY-MM-DD - period_end_date: YYYY-MM-DD - value: - distribution: uniform - low: .44 - high: .65 -``` - -### Wuhan - -This intervention represents shelter in place similar to what was done in Wuhan at the beginning of the outbreak. It reduces `R0` by 81-89%. - -```{r Wuhan} -Wuhan: - template: ReduceR0 - period_start_date: YYYY-MM-DD - period_end_date: YYYY-MM-DD - value: - distribution: uniform - low: .81 - high: .89 -``` - -### TestIsolate - -This intervention represents rapid testing and isolation of cases, similar to what was done in Wuhan at the beginning of the outbreak. It reduces `R0` by 45-96%. - -```{r TestIsolate} -TestIsolate: - template: ReduceR0 - period_start_date: YYYY-MM-DD - period_end_date: YYYY-MM-DD - value: - distribution: uniform - low: .45 - high: .96 -``` - -### Mild - -This intervention has two sequential interventions: School closures followed by a Wuhan-style lockdown. - -```{r Mild} -Mild: - template: Stacked - scenarios: - - SchoolClosure - - Wuhan -``` -### Mid - -This intervention has three sequential interventions: School closures, followed by a Wuhan-style lockdown, followed by social distancing practices used during the 1918 Influenza pandemic. - -```{r Mid} -Mid: - template: Stacked - scenarios: - - SchoolClosure - - Wuhan - - Influenza1918 -``` - -### Severe - -This intervention has three sequential interventions: School closures, followed by a Wuhan-style lockdown, followed by rapid testing and isolation. - -```{r Severe} -Severe: - template: Stacked - scenarios: - - SchoolClosure - - Wuhan - - TestIsolate -``` - - -## Actual Steps I went through to create a minimal working repository (by commit) - - - - Install python packages - - ```{sh, eval=FALSE} - pip3 install -r https://raw.githubusercontent.com/HopkinsIDD/COVIDScenarioPipeline/dataseed/requirements.txt - ``` - - - Install cran R dependencies - - ```{r,eval=FALSE,echo=TRUE} - source_url("https://raw.github.com/lcolladotor/ballgownR-devel/master/ballgownR/R/infoGene.R") - ``` - - - Install all relevant R packages from github: - - ```{r,eval=FALSE,echo=TRUE} - devtools::install_github(repo='HopkinsIDD/COVIDScenarioPipeline', ref='dataseed', subdir='R/pkgs/covidcommon') - devtools::install_github(repo='HopkinsIDD/COVIDScenarioPipeline', ref='dataseed', subdir='R/pkgs/hospitalization') - devtools::install_github(repo='HopkinsIDD/COVIDScenarioPipeline', ref='dataseed', subdir='R/pkgs/report_generation') - ``` - - - Clone github repo - ```{sh, eval=FALSE} - git clone https://github.com/HopkinsIDD/COVIDScenarioPipeline.git - ``` - - - Copy the config.yml file from the COVIDScenarioPipeline repository to your current repository - ```{sh, eval=FALSE} - cp COVIDScenarioPipeline/config.yml config.yml - ``` - - - Remove all references to the COVIDScenarioPipeline repo from config.yml - - ```{eval=FALSE} - 1c1 - < name: mid-west-coast-AZ-NV - --- - > name: minimal - 5c5 - < dynfilter_path: data/west-coast-AZ-NV/filtergithub.txt - --- - > dynfilter_path: data/filtergithub.txt - 8c8 - < base_path: data/west-coast-AZ-NV - --- - > base_path: data - 10c10 - < setup_name: west-coast-AZ-NV - --- - > setup_name: minimal - 16c16 - < scripts_path: COVIDScenarioPipeline/NPI - --- - > scripts_path: NPI - ``` - - - Make an Intervention - - ```{sh, eval=FALSE} - mkdir NPI - cp COVIDScenarioPipeline/NPI/None.R NPI/ - ``` - - - Aquire geodata - - ```{sh, eval=FALSE} - mkdir data - echo "geoind,population -10001,1000 -20002,2000" > data/geodata.csv - ``` - Edit the config file so spatial_setup::base_path = data - Edit the config file so spatial_setup::geodata = geodata.csv - - - Aquire mobility data - - ```{sh, eval = FALSE} - echo "0 .03 -.03 0" > data/mobility.txt - ``` - Edit the config file so spatial_setup::mobility = mobility.csv - Note that geodata and mobility data live in the same directory (basepath) - - - Aquire filter - - ```{sh, eval=FALSE} - echo "0 0" > data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - echo "0 0" >> data/filter.txt - ``` - The number of columns should be the number of geoids - The number of time steps should be end_date - start_date in days - dynfilter_path should be a path to this file - - - Run simulate.py - - ```{sh, eval=FALSE} - python3 COVIDScenarioPipeline/simulate.py -c config.yml -s None -n 15 - ``` - - - diff --git a/vignettes/how_to.html b/vignettes/how_to.html deleted file mode 100644 index 3ce1ab7e6..000000000 --- a/vignettes/how_to.html +++ /dev/null @@ -1,512 +0,0 @@ - - - - - - - - - - - - - - -Creating COVID19 planning scenario reports - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - -
-

Introduction

-

The purpose of htis document is to provide full instruction on how to create a report using the COVIDScenarioPipeline.

-
-

Scope

-

The report you will create discusses planning scenarios for different interventions on COVID19. This is not a forecasting pipeline, and I will provide no explanation about how it may transfer to another disease.

-
-

Specific Limitations

-

%% POPULATE ME please help scientists

-
    -
  • Interventions need to be implemented as an effect on beta. Some more mechanistic interventions cannot easily be captured this way.
  • -
-
-
-
-
-

Overview

-

The pipeline is broken into several stages, each of which can be independently replaced.

-
-

Pipeline Phases

-
-

Seeding

-

We run a model to determine the likelihood of importing cases into the region of interest. We maintain an R package.

-
-
-

Epidemic Simulation

-

We run a location stratified SEIR model, using a python module in COVIDScenarioPipeline.

-
-
-

Hospitalization Estimation

-

We estimate secondary effects of infection using infection numbers using the hospitalization R package in COVIDScenarioPipeline.

-
-
-

Report Generation

-

We provide functions to access results and help produce reports in the report_generation R package in COVIDScenarioPipeline.

-
-
-
-

Pipeline Configuration

-
-

config.yml

-

Most of the configuration done for this package is set in this configuration file. A default is provided, but you should feel free to make your own copy tailored to your needs.

-
-
-
-
-

Getting Set up

-

This project uses R, python, pandoc, and make

-
-

R

-

The code requires R version 3.6 or newer. You can download R from cran. We also recommend rstudio, an R IDE. We keep a list of R packages. You can source the script to install the versions required (the most recent versions also likely work).

-
-
-

python

-

We use python3.6 or newer. There is a python package we use that needs to know about R, so ensure you install R before python. This differs based on operating system. We keep a list of python modules.

-
-
Windows
-

My preference here has been to use windows subsystem for linux (WSL), and use the linux instructions.

-

You can find installation instructions here

-

If you want to try something else, you can directly download python. During installation, be sure to add it to your path, or make won’t work.

-
-
-
Linux (Debian)
-
# apt install python3 python3-pip
-
-
-
Mac
-

%% POPULATE ME - can someone who has a mac make sure this works?

-

This webpage has a guide to installing python3 and pip on mac

-
-
-
-

pandoc

-

Pandoc is part of R markdown, but needs to be installed separately. You can download it here

-
-
-

make

-

Make should already come with your system

-
-
-
-

Seeding

-

The code for this section is in an R package.

-

Calculate the expected number of cases imported from outside of the region of interest.

-
-
-

Epidemic Simulation

-

The code for this section is in the SEIR python module in COVIDScenarioPipeline.

-

We have code for a SEIR compartmental model with three infectious states. Within each geographic location, we assume even mixing. Between locations, we have a movement model based on empirical data you will need to provide.

-
-

SEIR parameters

-

The epidemic is controlled by sigma, gamma, and R0

-
-
-

Geographic Data

-

This file contains the geographic information over which the simulation should be run. It should have one line per location, and at least two columns containing information about those locations: - geoid A column containing a unique identifier for the location - popnodes A column containing the population of that location

-
-
-

Mobility File

-

A matrix (stored as a space delimited scientific notation e.g., 0.000000000000000000e+00). The matrix is used to calculate movement rates between geoids. The number of people who move from source to dest is binomially distributed with probability 1 - exp( - mobility[source,dest] / popnodes[source] * dt)

-
-
-

Filter

-

A matrix (number of days simulated x number of geographic nodes). Each value contains a minimum number of cases for that time and place. The SEIR simulation throws out simulations that are inconsistent with these reports.

-

Currently, the filter is strict, meaning that any simulation that doesn’t pass it exactly is rejected. We expect to provide a more relaxed version that provides a tolerance parameter.

-
-
-

Interventions

-

In order to allow flexibility in interventions, we currently use an R script to define an intervention. We provide several exampes in the NPI folder. In the future, we expect to move away from this model and toward specifying interventions directly in the config files.

-

To write an intervention, you need to write an R script that creates a matrix of your intervention’s effects on beta by providing NPI, a matrix of percentage reduction for each location and time. To reduce beta by 20% deterministically, one could use

-
## This block sets default values so the NPI can be tested outside of python
-if (!from_python) {         # or whatever values you use to test.
-    ti_str <- '2020-01-31'
-    tf_str <- '2020-08-31'
-    foldername <- 'west-coast/'
-}
-
-## This pulls data to determine the size of the location x time matrix
-county.status <- read.csv(paste0(foldername,'geodata.csv'))
-dates <- seq.Date(as.Date(ti_str), as.Date(tf_str), 1)
-
-## This creates and sets the location x time matrix.
-NPI <- as.data.frame(matrix(0.2, dim(county.status)[1],length(dates)), dimnames = list()
-
-
-
-

Hospitalization and Outcome Generation

-

The code for this section is in the hospitalization. After you have run a simulation, and have infection rates, we use those results to calculate hospitalizations, icu admittances, ventilator use, deaths (and it would be relatively easy to add other outcomes if you have data).

-
-

Probability Parameters

-

There are currently 5 variables that we measure track. Infection (I), Hospitalization (H), death (D), ICU admittance (ICU), and Ventilator use (Vent). They are calculated from eachother starting from infection, which we get from the Epidemic simulation. Each parameter has an associated probability (p_H, p_D, etc.) which represents that probability of that event conditional on another event. The dependence of the parameters is summarized by the following flowchart

-

The current flow looks like this:

-
- -
-
-

Duration Parameters

-

For each event that has a probability, there is an associated time parameter, which measures expected time before that event from infection. The parameter is given as two numbers, and the expectation is calculated as round(exp(time_X_pars[1] + X_pars[2]^2 / 2)).

-

%% POPULATE ME - Need explanation for why the parameters are of the above form

-

There are two other parameters that calculate different amounts of time. They are in the same form, but measure the duration of one of the above events. time_ICUdur_pars, and time_dischdur_pars measure the length of ICU stay and hospital stay respectively.

-
-
-
-

Report Generation

-

We provide a package to help utilize the previous parts of the pipeline to create meaningful reports. This support comes in the form of functions to help load the output of previous steps (it is sometimes quite large), and R Markdown templates to allow the easy creation of customizable reports without requiring the user to start from scratch.

-
-

Functions

-

We provide two functions to load the results from the Epidemic Simulation and Hospitalization and Outcome Generation, load_scenario_sims_filtered and load_hosp_sims_filtered respectively. These functions perform the same function on the two different data sources. Because of the nature of the data, they do have different syntax though

-
-

load_scenario_sims_filtered

-
load_scenario_sims_filtered <- function(
-  scenario_dir,
-  post_process=function(x) {x},
-  pre_process=function(x){x}
-)
-
    -
  • scenario_dir is the directory containing the output of the Epidemic Simulation. The function assumes it is in the model_output subdirectory of this directory. You can access this by %POPULATE ME - how to use
  • -
  • pre_process is a function to be performed on each simulation file before transforming into a long data frame.
  • -
  • post_process A function to be performed on each simulation file after transforming into a long data frame.
  • -
-
-
-

load_hosp_sims_filtered

-
load_hosp_sims_filtered <- function(
-  scenario_dir,
-  name_filter=function(x) {x},
-  post_process=function(x){x}
-)
-
    -
  • scenario_dir is the directory containing the output of the Hospitalization and Outcome Generation. The function assumes it is in the hospitalization/model_output subdirectory of this directory. You can access this by %POPULATE ME - how to use
  • -
  • post_process A function to be performed on each simulation file after each piece of data is loaded.
  • -
  • name_filter A string that all filenames need to match. This is intended for distinguishing between different hospitalization parameterization scenarios, which are stored with the scenario as part of the filename.
  • -
-
-
-
-

Templates

-

We have generated templates to help create reports of different types. Templates are complete reports that you can use as a base of your output. Currently, we have the beginning of one template intended for state level reports.

-
-

Using templates

-

To start a draft from a template, you can use, for example:

-
rmarkdown::draft("Maryland_Report.Rmd", template = "state_report", package = "report_generation")
-
-
-
-
-

Appendixes

-
-

Implemented interventions

-

Each intervention is associated with a start and end date and a range of values to sample from.

-
-
-

None

-

This is a non-intervention scenario. It does not reduce R0.

-
-
-

SchoolClosure

-

This intervention represents school closures. It reduces R0 by 16-30%.

-
-
-

Influenza1918

-

This intervention represents the influence of different social distancing scenarios observed in the 1918 Influenza. It reduces R0 by 44-65%, based on values observed in Milwaukee, Wisconsin. These values can be altered to reflect different cities and scenarios reported by M.Bootsma & N.M.Ferguson in https://www.pnas.org/content/104/18/7588.long

-
-
-

Wuhan

-

This intervention represents shelter in place similar to what was done in Wuhan at the beginning of the outbreak. It reduces R0 by 81-89%.

-
-
-

TestIsolate

-

This intervention represents rapid testing and isolation of cases, similar to what was done in Wuhan at the beginning of the outbreak. It reduces R0 by 45-96%.

-
-
-

Mild

-

This intervention has two sequential interventions: School closures followed by a Wuhan-style lockdown.

-
-
-

Mid

-

This intervention has three sequential interventions: School closures, followed by a Wuhan-style lockdown, followed by social distancing practices used during the 1918 Influenza pandemic.

-
-
-

Severe

-

This intervention has three sequential interventions: School closures, followed by a Wuhan-style lockdown, followed by rapid testing and isolation.

-
-
-

Actual Steps I went through to create a minimal working repository (by commit)

-
    -
  • Install python packages
  • -
-

sh pip3 install -r https://raw.githubusercontent.com/HopkinsIDD/COVIDScenarioPipeline/dataseed/requirements.txt

-
    -
  • Install cran R dependencies
  • -
-

r source_url("https://raw.github.com/lcolladotor/ballgownR-devel/master/ballgownR/R/infoGene.R")

-
    -
  • Install all relevant R packages from github:
  • -
-

r devtools::install_github(repo='HopkinsIDD/COVIDScenarioPipeline', ref='dataseed', subdir='R/pkgs/covidcommon') devtools::install_github(repo='HopkinsIDD/COVIDScenarioPipeline', ref='dataseed', subdir='R/pkgs/hospitalization') devtools::install_github(repo='HopkinsIDD/COVIDScenarioPipeline', ref='dataseed', subdir='R/pkgs/report_generation')

-
    -
  • Clone github repo
  • -
-

sh git clone https://github.com/HopkinsIDD/COVIDScenarioPipeline.git

-
    -
  • Copy the config.yml file from the COVIDScenarioPipeline repository to your current repository
  • -
-

sh cp COVIDScenarioPipeline/config.yml config.yml

-
    -
  • Remove all references to the COVIDScenarioPipeline repo from config.yml
  • -
-

{eval=FALSE} 1c1 < name: mid-west-coast-AZ-NV --- > name: minimal 5c5 < dynfilter_path: data/west-coast-AZ-NV/filtergithub.txt --- > dynfilter_path: data/filtergithub.txt 8c8 < base_path: data/west-coast-AZ-NV --- > base_path: data 10c10 < setup_name: west-coast-AZ-NV --- > setup_name: minimal 16c16 < scripts_path: COVIDScenarioPipeline/NPI --- > scripts_path: NPI

-
    -
  • Make an Intervention
  • -
-

sh mkdir NPI cp COVIDScenarioPipeline/NPI/None.R NPI/

-
    -
  • Aquire geodata
  • -
-

sh mkdir data echo "geoind,population 10001,1000 20002,2000" > data/geodata.csv Edit the config file so spatial_setup::base_path = data Edit the config file so spatial_setup::geodata = geodata.csv

-
    -
  • Aquire mobility data
  • -
-

sh echo "0 .03 .03 0" > data/mobility.txt Edit the config file so spatial_setup::mobility = mobility.csv Note that geodata and mobility data live in the same directory (basepath)

-
    -
  • Aquire filter
  • -
-

sh echo "0 0" > data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt echo "0 0" >> data/filter.txt The number of columns should be the number of geoids The number of time steps should be end_date - start_date in days dynfilter_path should be a path to this file

-
    -
  • Run simulate.py
  • -
-

sh python3 COVIDScenarioPipeline/simulate.py -c config.yml -s None -n 15

-
    -
  • -
-
-
- - - - -
- - - - - - - - - - - - - - -